CMB2 For Grouped Products
-
Hey there
Quick question. Is it possible to show the meta boxes only on the grouped product pages and not on the simple product pages?
Keep up the good work!
$cmb = new_cmb2_box( array(
‘id’ => ‘general_product_metabox’,
‘title’ => __( ‘General Metabox’, ‘cmb2’ ),
‘object_types’ => array( ‘product’ ), // Post type
// ‘show_on_cb’ => ‘yourprefix_show_if_front_page’, // function should return a bool value
// ‘context’ => ‘normal’,
// ‘priority’ => ‘high’,
// ‘show_names’ => true, // Show field names on the left
// ‘cmb_styles’ => false, // false to disable the CMB stylesheet
// ‘closed’ => true, // true to keep the metabox closed by default
) );
- The topic ‘CMB2 For Grouped Products’ is closed to new replies.