Contextual Shopping Cart in Menu

I apologize if the title of this post is at all misleading, but I am no expert at Wordpress and have learned everything I know through various forums and video tutorials. My question is simple (I hope): Regarding the built in shopping cart that can be toggled to appear in the menu, is there a way to edit it so that it appears contextually?

To explain further, what I am seeking to do is have the cart display when a user accesses the e-commerce page of my site and not when they are viewing the blog or homepage. Ideally, the cart would continue displaying if an item is placed in the shopping cart (following the user to the blog, etc) but would cease appearing in the menu if the user navigates away from the store page without placing an item in their cart.

Is there a way I can do this?

Hi,

Regretfully, It could only be possible with custom development, but this would be outside the scope of support we can offer.

The closes we can do is display it only in shop pages.

You can try adding this in Theme Options > CSS

.x-menu-item-woocommerce {
   display:none;
}
body.woocommerce  .x-menu-item-woocommerce {
   display:block;
}

Hope that helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.