Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created January 15, 2026 14:00
Show Gist options
  • Select an option

  • Save xlplugins/6c30886ac1a7ee859956e4f38b9d9a2c to your computer and use it in GitHub Desktop.

Select an option

Save xlplugins/6c30886ac1a7ee859956e4f38b9d9a2c to your computer and use it in GitHub Desktop.
Disable theme's WooCommerce standard page filter
add_filter( 'theme_mod_penci_woocommerce_standard_page', function( $value ) {
// Check if we're on checkout page
if ( is_checkout() ) {
$value=false;
}
return $value;
}, 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment