- This topic has 5 replies, 2 voices, and was last updated 7 years, 6 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Forums › Pro Themes › Clean Commerce Pro › How to eliminate the shopping cart?
I 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.com
Hello @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_Themes
You 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!!
Yes, please I need to remove the shopping cart link at the header!
Thanks so much
Claudia
Hello @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!!
Thanks. 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%3Dedit
How 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!!!
Claudia
Hello @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!!
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |