Home › Forums › Pro Themes › Clean Commerce Pro › How to eliminate the shopping cart?
- This topic has 5 replies, 2 voices, and was last updated 8 years ago by
wensolutions.
-
AuthorPosts
-
May 24, 2017 at 9:55 pm #43304
RKWOOD
ParticipantI know sounds weird but I realize that I do not need the Shopping Cart.
But I do like how “products” are display with WOo Commerce.I need to have the list of products but
for payments and shipping the owner of the web prefer to communicate with the client directly.
There is any way that I can do this?
the web is http://www.rkwoodshawaii.comMay 25, 2017 at 1:04 am #43318wensolutions
KeymasterHello @rkwood,
If you want to completely remove the cart system then you have to activate the child theme.
Child theme reference :
https://codex.wordpress.org/Child_ThemesYou can also create the child theme using the plugin. Below is the link to one of them.
https://wordpress.org/plugins/wp-child-theme-generator/After creating the child theme in you child theme functions.php file paste below give code .
https://gist.github.com/anonymous/9a0ade4b5f5d4f58afc52edbc28a41d7
Also if want to remove the Shopping cart link at the header please let us know.
Hope this helps.
Best Regards!!
May 29, 2017 at 8:52 pm #43612RKWOOD
ParticipantYes, please I need to remove the shopping cart link at the header!
Thanks so much
Claudia
May 29, 2017 at 11:59 pm #43617wensolutions
KeymasterHello @rkwood,
To remove the shopping cart link at the header go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.
#right-header #cart-section li.cart-price { display: none; }
Hope this helps.
Best Regards!!
May 30, 2017 at 2:29 am #43730RKWOOD
ParticipantThanks. a lot for your fast answer…you guys rock for sure!
Now, I ‘m still need some help, the “add to cart” keep coming when I browse in the catalogue, in each product.
Take a look
http://rkwoodshawaii.com/wp-admin/customize.php?return=%2Fwp-admin%2Fpost.php%3Fpost%3D15%26action%3DeditHow can I change that, I can change the text of the bottom if that is easy “Contact us to order” or something like that.
Thanks so much!!!
ClaudiaMay 30, 2017 at 3:16 am #43739wensolutions
KeymasterHello @rkwood,
To change the text in the buttom paste below given code in your child themes functions.php file
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_custom_cart_button_text' ); function woo_custom_cart_button_text() { return __( 'Contact us to order', 'woocommerce' ); }
Create the child theme using the steps mentioned in earlier reply .
Hope this helps.
Best Regards!!
-
AuthorPosts
- You must be logged in to reply to this topic.