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:
Single Product page:
Download
Download Disable WooCommerce prices and add to cart for visitors plugin
Tested with:
WordPress 4.8.2
WooCommerce 3.2.1
8 comments
isabel
No funciona con wc 3.3.0
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/
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
Con Schneider
Assuming the plugin is active and the button does not show, it is probably one of these things:
* conflict with an active component (theme or plugin) – verify with conflict check: https://conschneider.de/how-to-check-and-resolve-conflict-in-wordpress-and-woocommerce/
* an unsupported product type: This looks like a course product. What is the product type you are using?
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