Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created February 18, 2025 17:07
Show Gist options
  • Save plugin-republic/60a474128129967ec7b3a73d2ca741d6 to your computer and use it in GitHub Desktop.
Save plugin-republic/60a474128129967ec7b3a73d2ca741d6 to your computer and use it in GitHub Desktop.
<?php
/**
* Filter product if user not logged in
*/
function pr_demo_is_purchasable( $purchasable, $product ) {
if( !is_user_logged_in() ) {
return false;
}
return $purchasable;
}
add_filter( 'woocommerce_is_purchasable', 'pr_demo_is_purchasable', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment