Hi,
I have a local test server set up with Magento and WP installed like this:
Magento: subdomain/html/
WP: subdomain/html/WP
Cookies weren’t carrying across the WME bridge.
I applied the solution in this thread to give Magento and WP the same cookie. It solved most cookies issues, but I can’t seem to get the call to cart showing what’s in the user’s cart. I am using
<?php the_block('cart_sidebar'); ?>
That refuses to show anything except
My Cart
You have no items in your shopping cart
However, using the call
<?php the_block('top.links'); ?>
provides links that correctly send the user to their account, their cart, their checkout, etc.
How can I get the call to ‘cart-sidebar’ reflecting what’s in the user’s cart?
Thank you for any assistance.