Move the Yoast WordPress SEO Meta Box below the Product Data Box

Yoast is big and bossy, with it’s default meta box placement directly below the main content, it can break the flow of entering Product Data and confuse clients. Here’s a snippet to make it appear at the bottom, below the Product Data meta box, ensuring a nice flow and grouping of WooCommerce Data

Add this to your functions.php

add_filter( 'wpseo_metabox_prio', function() {
  return 'low';
}, 99 );

 


Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.