Add to cart on Name of Product brings in blank
For some strange reason this
$ATC_itemName = "testing";
will not add the name of the product into the cart. However, that same exact works from other pages. AND...the below will work.
$ATC_itemDescription = "". "testing ."";// column binding
So...for some reason the '$ATC_itemName' will not work specifically on that page. As soon as I name it $ATC_Description, it will work. It is definitely in this line below (in case you ask).
$eCart1->AddToCart($ATC_AddIfIn, $ATC_RedirectIfIn, $ATC_itemID, $ATC_itemName, $ATC_itemDescription, $ATC_itemThumbnail, $ATC_itemWeight, $ATC_itemQuantity, $ATC_itemPrice);
Can you give me any ideas? Thanks.