Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created October 18, 2025 14:11
Show Gist options
  • Save plugin-republic/c1000213441f812cd2fb00e2531f3a4e to your computer and use it in GitHub Desktop.
Save plugin-republic/c1000213441f812cd2fb00e2531f3a4e to your computer and use it in GitHub Desktop.
<?php
/**
* Display grid for logged-in users / standard layout for guests
*/
function demo_enable_variations_grid( $enable, $product_id ) {
if( is_user_logged_in() ) {
return true;
} else {
return false;
}
}
add_filter( 'wcbvp_enable_variations_grid', 'demo_enable_variations_grid', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment