1. Appologies but I am totally null in php and just learning it so I do now know how to do it.
I am attaching you the complete piece of code for add_to_cart_listing.php
I guess that is the same accesible from www\your_site\components\com_hikashop\views\product\tmpl
And also i do not know what do you stand for :
You however need to configure the redirection URL in each product.
2.you can check your piece of code at the end, where the input buttons are. Shall I also include it on product / quantity.php?
so somewhere should I include the affiliates urls, deppending on different product IDS.
Sorry for my ignorance. please check code inside add_to_cart_listing.php
*****
<?php
/**
* @package HikaShop for Joomla!
* @version 2.3.5
* @author hikashop.com
* @copyright (C) 2010-2015 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php if ($this->config->get('show_quantity_field')<2) { ?>
<form action="<?php echo hikashop_completeLink('product&task=updatecart'); ?>" method="post" name="hikashop_product_form_<?php echo $this->row->product_id.'_'.$this->params->get('main_div_name'); ?>" enctype="multipart/form-data">
<?php }
if(empty($this->row->has_options) && ($this->row->product_quantity==-1 || $this->row->product_quantity>0)&& !$this->config->get('catalogue') && ($this->config->get('display_add_to_cart_for_free_products') || !empty($this->row->prices))){
$itemFields = $this->fieldsClass->getFields('frontcomp',$this->row,'item','checkout&task=state');
if(!empty($itemFields) && !$this->params->get('display_custom_item_fields',0)){
$this->row->has_options = true;
$itemFields = array();
}
$null=array();
$this->fieldsClass->addJS($null,$null,$null);
$this->fieldsClass->jsToggle($itemFields,$this->row,0);
$extraFields = array('item'=>&$itemFields);
$requiredFields = array();
$validMessages = array();
$values = array('item'=>$this->row);
$this->fieldsClass->checkFieldsForJS($extraFields,$requiredFields,$validMessages,$values);
$this->fieldsClass->addJS($requiredFields,$validMessages,array('item'));
if($this->params->get('display_custom_item_fields',0) && !empty($itemFields)){
?>
<!-- CUSTOM ITEM FIELDS -->
<div id="hikashop_product_custom_item_info_for_product_<?php echo $this->row->product_id; ?>" class="hikashop_product_custom_item_info hikashop_product_listing_custom_item">
<table class="hikashop_product_custom_item_info_table hikashop_product_listing_custom_item_table" width="100%">
<?php
foreach($itemFields as $fieldName => $oneExtraField) {
$itemData = JRequest::getString('item_data_'.$fieldName,$this->row->$fieldName); ?>
<tr id="hikashop_item_<?php echo $oneExtraField->field_namekey; ?>" class="hikashop_item_<?php echo $oneExtraField->field_namekey;?>_line">
<td class="key">
<span id="hikashop_product_custom_item_name_<?php echo $oneExtraField->field_id;?>_for_product_<?php echo $this->row->product_id; ?>" class="hikashop_product_custom_item_name">
<?php echo $this->fieldsClass->getFieldName($oneExtraField);?>
</span>
</td>
<td>
<span id="hikashop_product_custom_item_value_<?php echo $oneExtraField->field_id;?>_for_product_<?php echo $this->row->product_id; ?>" class="hikashop_product_custom_item_value"><?php
$onWhat='onchange';
if($oneExtraField->field_type=='radio')
$onWhat = 'onclick';
$oneExtraField->product_id = $this->row->product_id;
$this->fieldsClass->prefix = 'product_'.$this->row->product_id.'_';
echo $this->fieldsClass->display(
$oneExtraField,
$itemData,
'data[item]['.$oneExtraField->field_namekey.']',
false,
' '.$onWhat.'="if (\'function\' == typeof window.hikashopToggleFields) { hikashopToggleFields(this.value,\''.$fieldName.'\',\'item\',0); }"'
);
?></span>
</td>
</tr>
<?php }
$this->fieldsClass->prefix=''; ?>
</table>
</div>
<!-- EO CUSTOM ITEM FIELDS -->
<?php }
}
if ($this->config->get('show_quantity_field')<2) {
$module_id = $this->params->get('from_module',0);
$this->formName = ',\'hikashop_product_form_'.$this->row->product_id.'_'.$this->params->get('main_div_name').'\'';
$this->ajax='';
if(!$this->config->get('ajax_add_to_cart',0)||!empty($itemFields)){
$this->ajax = 'if(hikashopCheckChangeForm(\'item\',\'hikashop_product_form_'.$this->row->product_id.'_'.$this->params->get('main_div_name').'\')){ return hikashopModifyQuantity(\''.$this->row->product_id.'\',field,1,\'hikashop_product_form_'.$this->row->product_id.'_'.$this->params->get('main_div_name').'\',\'cart\','.$module_id.'); } return false;';
}
$this->setLayout('quantity');
echo $this->loadTemplate();
if(!empty($this->ajax) && $this->config->get('redirect_url_after_add_cart','stay_if_cart')=='ask_user'){ ?>
<input type="hidden" name="popup" value="1"/>
<?php } ?>
<input type="button" onclick="window.location='<?php echo $this->row->product_url; ?>'; return false;" value="buy now"/>
<input type="hidden" name="hikashop_cart_type_<?php echo $this->row->product_id.'_'.$module_id; ?>" id="hikashop_cart_type_<?php echo $this->row->product_id.'_'.$module_id; ?>" value="cart"/>
<input type="hidden" name="product_id" value="<?php echo $this->row->product_id; ?>" />
<input type="hidden" name="module_id" value="<?php echo $module_id; ?>" />
<input type="hidden" name="add" value="1"/>
<input type="hidden" name="ctrl" value="product"/>
<input type="hidden" name="task" value="updatecart"/>
<input type="hidden" name="return_url" value="<?php echo urlencode(base64_encode(urldecode($this->redirect_url)));?>"/>
</form>
<?php }elseif(empty($this->row->has_options)&& !$this->config->get('catalogue') && ($this->config->get('display_add_to_cart_for_free_products') || !empty($this->row->prices))){
if($this->row->product_quantity==-1 || $this->row->product_quantity>0){ ?>
<input id="hikashop_listing_quantity_<?php echo $this->row->product_id;?>" type="text" style="width:40px;" name="data[<?php echo $this->row->product_id;?>]" class="hikashop_listing_quantity_field" value="0" />
<?php }else{
echo JText::_('NO_STOCK');
}
} ?>