Title: Metafields Positioning
Last modified: July 16, 2024

---

# Metafields Positioning

 *  Resolved [andyt1980](https://wordpress.org/support/users/andyt1980/)
 * (@andyt1980)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/metafields/)
 * Hi,
 * Is there anyway to force the SEO Frameworks metafields to the bottom of the edit
   screen when editing a Custom Taxonomy for Woocommerce?. I have several ACF fields
   which I’ve added to a custom taxonomy called Venues. When I edit a venue, all
   the SEO Frameworks metafields such as Meta Title, Meta Desciption etc are displaying
   above the ACF fields.
    -  This topic was modified 1 year, 10 months ago by [andyt1980](https://wordpress.org/support/users/andyt1980/).

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [Sybre Waaijer](https://wordpress.org/support/users/cybr/)
 * (@cybr)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/metafields/#post-17893007)
 * Hello!
 * I think this filter will do, the default is 0:
 *     ```
       add_filter(
       	'the_seo_framework_term_metabox_priority',
       	fn() => 10,
       );
       ```
   
 * The higher the number returned, the lower it will go. That’s because the context
   is “action priority.”
    You could test the taxonomy specifically; you’ll have 
   to assert that via `tsf()->query()->get_current_taxonomy()`.
 * e.g.
 *     ```
       fn( $priority ) => 'my_custom_tax' === tsf()->query()->get_current_taxonomy() ? 10 : $priority,
       ```
   
 * But, instead of using the filter, can you not change the priority of the taxonomy
   fields at ACF “Presentation” or “Advanced” settings?
 *  Thread Starter [andyt1980](https://wordpress.org/support/users/andyt1980/)
 * (@andyt1980)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/metafields/#post-17893237)
 * Hi,
 * Have just tried the code but the fields still haven’t moved position. I see the
   default Name, Slug, Parent Category, Description fields, then the SEO Framework
   fields and then the ACF fields last.
 * Have also tried changing the Order No. in the ACF Presentation settings but it
   has no effect.
 * I’m using the Code Snuppets plugin ([https://en-gb.wordpress.org/plugins/code-snippets/](https://en-gb.wordpress.org/plugins/code-snippets/))
   to add the custom PHP code and have it set to ‘Run snippet everywhere’
 * Any further assistance appreciated.
    -  This reply was modified 1 year, 10 months ago by [andyt1980](https://wordpress.org/support/users/andyt1980/).
 *  Plugin Author [Sybre Waaijer](https://wordpress.org/support/users/cybr/)
 * (@cybr)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/metafields/#post-17893634)
 * Hello!
 * Please try increasing the number 10 to something higher, like 20 or even 100.
   You can safely go up to 2147483646.
 *  Thread Starter [andyt1980](https://wordpress.org/support/users/andyt1980/)
 * (@andyt1980)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/metafields/#post-17895431)
 * Thank you, increasing to 100 has worked.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Metafields Positioning’ is closed to new replies.

 * ![](https://ps.w.org/autodescription/assets/icon.svg?rev=3000376)
 * [The SEO Framework – Fast, Automated, Effortless.](https://wordpress.org/plugins/autodescription/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/autodescription/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/autodescription/)
 * [Active Topics](https://wordpress.org/support/plugin/autodescription/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/autodescription/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/autodescription/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [andyt1980](https://wordpress.org/support/users/andyt1980/)
 * Last activity: [1 year, 10 months ago](https://wordpress.org/support/topic/metafields/#post-17895431)
 * Status: resolved