Skip to content

Instantly share code, notes, and snippets.

@grantalltodavid
Created September 30, 2021 18:29
Show Gist options
  • Select an option

  • Save grantalltodavid/1a4f3553e80ae10d73ff2483e462dd5b to your computer and use it in GitHub Desktop.

Select an option

Save grantalltodavid/1a4f3553e80ae10d73ff2483e462dd5b to your computer and use it in GitHub Desktop.
WP Wham Product Open Pricing: change per-product metabox's "enabled" setting default to "yes"
add_filter( 'wpwham_product_open_pricing_metabox_options', 'wpwham_20210930_change_metabox_defaults' );
function wpwham_20210930_change_metabox_defaults( $options ) {
foreach ( $options as &$option ) {
if ( $option['name'] === 'alg_wc_product_open_pricing_enabled' ) {
$option['default'] = 'yes';
break;
}
}
return $options;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment