• Resolved rich-stoke

    (@rich-stoke)


    Hi guys,

    A friend who I’m doing this website for. I have said it would be best if they purchased the plugin Product Enquiry for WooCommerce but they are not willing to pay the money.

    I have said they can have the free version but is there any way how I can get rid of the add to cart button as they dont want this. They advertise on facebook pages, gumtree and ebay. They dont want people looking at the website purchasing an item and it has already been sold.

    I know I’m been a massive massive pain but if anyone could help me that would be fantastic.

    Thanks,

    Richard

    https://www.ads-software.com/plugins/woocommerce/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try adding this to functions.php:

    /* Remove cart buttons on single product pages */
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    remove_action( 'woocommerce_simple_add_to_cart', 'woocommerce_simple_add_to_cart', 30 );
    remove_action( 'woocommerce_grouped_add_to_cart', 'woocommerce_grouped_add_to_cart', 30 );

    You could then manually add links (and style them like buttons if you see fit) to the eBay/Gumtree listing within the description.

    I also just came across this plugin which might be helpful: WooCommerce Catalog.

    Thread Starter rich-stoke

    (@rich-stoke)

    thank you so much I will play around with the woocommerce catalog I think this is what I’m looking for

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Is there anyway how I can get rid of add to cart button’ is closed to new replies.