php - Metabox Reordering back end woocommerce
Get the solution ↓↓↓
In mobile view I am trying to reorder excerpt on top followed by product categories.Have changed screen_layout_columns to 1 tried this neither change hierarchy nor displays category.Theme storefront
function remove_metaboxes_edit_product()
{
remove_meta_box( 'product_catdiv' , 'product' , 'normal' );//normal as column changed to 1
add_meta_box('product_catdiv', __('Category'), 'product_cat_meta_box', 'product', 'normal', 'default');
}
add_action( 'add_meta_boxes_product', 'remove_metaboxes_edit_product');
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: git was not found in your path, skipping source download
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.

