This is my first post on here and I'm not a usual forum user, so this thread is probs in the wrong place.
I'm having trouble with the cart button on all my pages of this website, http:djzone.co.uk. The button is not there and when I come to upload I get this message "The selector 'AddToCartButton' is recursively used".
Please help me with this and just to warn you, I'm a novice at Actinic. So no complicated jargon. Thanks,
I'm having trouble with the cart button on all my pages of this website, http:djzone.co.uk. The button is not there and when I come to upload I get this message "The selector 'AddToCartButton' is recursively used".
Code:
<span id="RemoveIfOutOfStock_<actinic:variable name="AddToCartButton" />" class="ActinicRTS" > <actinic:block if="%3cactinic%3avariable%20name%3d%22CartButtonVisibleToAllCustomers%22%20%2f%3e" > <!-- This code is used when the cart button is visible to all customers --> <input type="submit" value="<Actinic:Variable Name="CartButtonText"/>" name="_<Actinic:Variable Name="ProductID"/>" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22EnabledForCustomerGroupID%22%20%2f%3e%20%21%3d%20%22%22"> <actinic:block if="%3cactinic%3avariable%20name%3d%22ProductPriceIsEnabled%22%20%2f%3e"> <!-- This code is used when the cart button is visible to retail customers, but not all other customer groups --> <Actinic:ShowForPriceSchedule Schedules="<actinic:variable name="AddToCartButton" />"> <input type="submit" value="<Actinic:Variable Name="CartButtonText"/>" name="_<Actinic:Variable Name="ProductID"/>" /> </Actinic:ShowForPriceSchedule> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22ProductPriceIsEnabled%22%20%2f%3e%20%3d%3d%20FALSE" > <!-- This code is used when the cart button needs to hidden from retail customers --> <Actinic:ShowForPriceSchedule Schedules="<actinic:variable name="AddToCartButton" />" HTML="<input type='submit' value='<Actinic:Variable Name="CartButtonText"/>' name='_<Actinic:Variable Name="ProductID"/>' />"></Actinic:ShowForPriceSchedule> </actinic:block> </actinic:block> </span>
Comment