Home Forums Pro Themes Clean Commerce Pro How to eliminate the shopping cart?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #43304
    RKWOOD
    Participant

    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

    #43318
    wensolutions
    Keymaster

    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!!

    #43612
    RKWOOD
    Participant

    Yes, please I need to remove the shopping cart link at the header!

    Thanks so much

    Claudia

    #43617
    wensolutions
    Keymaster

    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!!

    #43730
    RKWOOD
    Participant

    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

    #43739
    wensolutions
    Keymaster

    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!!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.