• Resolved andyt1980

    (@andyt1980)


    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 4 months, 1 week ago by andyt1980.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Sybre Waaijer

    (@cybr)

    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

    (@andyt1980)

    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.www.ads-software.com/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 4 months, 1 week ago by andyt1980.
    Plugin Author Sybre Waaijer

    (@cybr)

    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

    (@andyt1980)

    Thank you, increasing to 100 has worked.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.