Good afternoon, tell me, I added another arbitrary form in the product card, if you do not use your theme and standard themes, then the field is displayed, but if I include the theme, there is nothing. tell me how to get it out? thank you.
add_action( ‘add_meta_boxes’, ‘genius_new_meta_box_single_prod’ );
function genius_new_meta_box_single_prod() {
add_meta_box(
‘custom_product_meta_box’,
‘Product third description’,
‘genius_add_custom_content_meta_box’,
‘product’,
‘normal’,
‘default’
);
}