- This topic has 4 replies, 3 voices, and was last updated 8 years, 8 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Tweaks › Modify what information shopping cart displays
I need a shortcode that will display the carts content EXACTLY like: [wp_eStore_cart] does, but WITHOUT the checkout button? Is this possible? Thanks.
Pray tell, of what use is a shopping cart that can’t be checked out from?
You can just hide the checkout button using CSS. Will that work?
We do have the following shortcode which shows a summary of the cart content (but it won’t look like that other shortcode thoguh):
[wp_eStore_order_summary]
Hiding the checkout button using CSS would work fine. Just as long as I can selectively hide the checkout button for a specific individual instance of the [wp_eStore_cart]. I don’t want the hiding of the checkout button to be applied globally throughout the site.
Regarding why I want this is because I don’t like the limited information that the shortcode [wp_eStore_order_summary] displays. For my purposes the complete details along with the ability to still modify the cart content would work better. Thanks.
Here is one idea of how you can hide the checkout button of an specific instance of the cart.
Wrap your specific cart shortcode using CSS like the following:
<div class="my_custom_cart">
[wp_eStore_cart]
</div>
You should be able to then target the CSS by doing the following:
.my_custom_cart .eStore_cart_checkout_button{
display: none
}