• Resolved jorinde88

    (@jorinde88)


    Hi,

    I’ve been using the filter ‘the_seo_framework_metabox_priority’ to position the seo framework options below our own custom fields. This seems to work on posts but not on taxonomy term pages. On these pages our custom-fields (acf) are shown below the seo fields.
    It is possible to show the seo meta fields below our own fields on taxonomy terms?

    Kind regards,
    Jorinde

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Sybre Waaijer

    (@cybr)

    Hi Jorinde,

    The term-“meta box” uses a different filter: the_seo_framework_term_metabox_priority — unlike the other filter, this one accepts an integer only, not a word (you can blame WordPress for this discrepancy). The higher the number, the later the “meta box” will be outputted.

    add_filter( 'the_seo_framework_term_metabox_priority', function( $default = 0 ) {
    	return 99;
    } );
    

    I hope this helps!

    • This reply was modified 3 years, 3 months ago by Sybre Waaijer. Reason: typo in snippet
    Thread Starter jorinde88

    (@jorinde88)

    Thanks for the quick answer. This works!
    Is there a list of all available plugin filters? On this url: https://theseoframework.com/docs/api/filters/ not all are mentioned.

    Plugin Author Sybre Waaijer

    (@cybr)

    Great ??

    There are about 220 filters in The SEO Framework — and they’re all documented concisely in the code. Their context also helps greatly; there’s no better place to learn.

    Unfortunately, I do not have the time to mimic and expound on that externally, so I kept it brief and only listed filters frequently requested.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘SEO Metabox priority on Taxonomies Terms’ is closed to new replies.