add_filter('woocommerce_is_purchasable', 'wpsc_remove_or_hide_add_to_cart_button_sitewide', 10, 2);
function wpsc_remove_or_hide_add_to_cart_button_sitewide($purchasable, $product) {
if (!is_user_logged_in()) {
$purchasable = false;
}
return $purchasable;
}
Copyright © 2025 by WP CODE SNIPPETS
Join our mailing list to receive the latest news and updates from our team.