WordPress since 2003 ♡ WooCommerce since 2011

Mini plugin: Disable WooCommerce prices and add to cart for visitors

This is a mini plugin that lets you hide WooCommerce prices
and the add to cart button for non logged in visitors of your site.

Install and activate to hide the elements site-wide.

Contents

Screenshots

Shop overview:

 

Screen Shot

Single Product page:

Screen Shot

 

Download

Download Disable WooCommerce prices and add to cart for visitors plugin

 

Tested with:
WordPress 4.8.2
WooCommerce 3.2.1

keep reading?

8 comments

  • No funciona con wc 3.3.0

    • A
      Con Schneider

      Thank you for the input. I am pretty busy at the moment, but I ll try to take a look. Would you have any debugging message for me to start with?

  • Alexander

    Remove add to cart from product pages. You can use this code in woocommerce.php (located wp-content/plugins/woocommerce):

    `function WpBlog() {

    remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’);

    remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’);

    return WooCommerce::instance();

    }`

    And for the specific product pages you can hide add to cart button by adding the code in functions.php

    `add_filter(‘woocommerce_is_purchasable’, ‘wpblog_specific_product’);

    function wpblog_specific_product($purchaseable_product_wpblog, $product)
    {
    return ($product->id == specific_product_id (512) ? false : $purchaseable_product_wpblog);

    }`

    For reference you can see https://www.wpblog.com/add-to-cart-button-in-woocommerce-store/

    • A
      Con Schneider

      Thank you for the contribution. Have a good one.

  • QueenEve

    Thank you for your reply and good job

    I tried the plugin, I need to change the Order Now button on single page to be “Login now to order”, now it shows empty space with no button
    Please check below
    http://take.ms/YLPF8

  • A
    Con Schneider

    Hi there,

    Download it here. Then upload and activate it like a normal plugin. There are no settings. Once activated the plugin is in effect.

  • QueenEve

    how does this plugin work?
    I mean how can I enable it

Leave your comment

Con Schneider