move product gallery images to left column in admin
-
When editing a product in woocommerce, I want to move the product gallery images from the right column(side) to the left column(normal).
I feel like Im really close but this doesnt work. I can remove the product images, but I dont know how to readd it to the left column. My code is below that i place in functions.php.
add_action('do_meta_boxes', 'customposttype_image_box'); function customposttype_image_box() { remove_meta_box( 'woocommerce-product-images', 'product', 'side' ); // this works add_meta_box('woocommerce-product-images', __('Product Gallery'), 'WHAT_DO_I_DO_HERE?', 'product', 'normal', 'high'); // this doesnt }
- The topic ‘move product gallery images to left column in admin’ is closed to new replies.