Dears,
I have one problem when displaying a custom variable in the shopping cart. It is properly assigned as an "upload" variable.
In ActinicOrder.pm is done the following change:
In the cart layout there is a properly formatted variable.
So I would assume that it displays well; however, it is attaching all the previous entries (the content of this variable for each product) with each and every added product.
Even emptying the variables after usage isn't helpful.
You can try it by going to http://dev.cells4life.co.uk/acatalog...um-single.html and adding products to the cart.
Did anyone experience anything similar?
I will appreciate any input on this matter.
Thank you.
I have one problem when displaying a custom variable in the shopping cart. It is properly assigned as an "upload" variable.
In ActinicOrder.pm is done the following change:
Code:
$sProductLineHTML .= $$pProduct{'CUSTOMVARS'}{'C4LProductDescription'};
$ProdTable = ProductLineHTML($$pProduct{'REFERENCE'}, $sProdLink, $sQuantityText, $sProductLineHTML, $sDuplicateLinkLineHTML, $$pProduct{'DUPLICATES'}, $$pProduct{'THUMBNAIL'}, $bIncludeButtons);
So I would assume that it displays well; however, it is attaching all the previous entries (the content of this variable for each product) with each and every added product.
Even emptying the variables after usage isn't helpful.
You can try it by going to http://dev.cells4life.co.uk/acatalog...um-single.html and adding products to the cart.
Did anyone experience anything similar?
I will appreciate any input on this matter.
Thank you.
Comment