Windows XP, XAMPP with Apache/2.2.21 and PHP 5.3.8
I have a product page where I have item_data[x_mac_address] field that is required to add product to cart.
On the cart page I have regular items listing with one
<td><?=h($item->get_data_field('x_mac_address'))</td>It works perfeclty when customer is not logged in - I adda product to cart and I can see MAC addresses I provided on the list.
Once I login - products in the cart stay (overwrite setting), but MAC addresses are gone.
There are no MAC addresses on the list if I add products to the cart as already logged in customer.
Strangely multiple same products with different item_data[x_mac_address] are listed separately.
$id = $item->get_data_field('x_mac_address');
var_dump($id);
code above shows NULL.
I hope I made myself clear enough and that my issue is not a time waster for you.
Let me know if I can provide additional info.
Regs
K

Help


Report