Single product | backend – Add metaboxes
/** * Custom metaboxes voor WooCommerce producten */ add_action(‘add_meta_boxes’, function () { add_meta_box( ‘custom_metabox_highlighted_product’, ‘Uitgelicht product’, ‘highlighted_product_custom_metabox’, ‘product’, ‘normal’, ‘high’ ); add_meta_box( ‘custom_metabox_remarks’, ‘Beoordeling’, ‘product_remarks_custom_metabox’, ‘product’, ‘normal’, ‘high’ ); add_meta_box( ‘custom_metabox_video’, ‘Product video’, ‘product_video_custom_metabox’, ‘product’, ‘normal’, ‘high’ ); }); function…Continue reading