• Resolved GregW

    (@gwmbox)


    When I look at my member profiles view-source, I note that the SEO is loaded after all of the style sheets instead of the top under title. It is not about indexing as much as it is to keep it clean at the top of the source code.

    <!-- START - Ultimate Member profile SEO meta tags -->

    Is it possible to move it to the top under the page title?

    I note the UM demo does the same thing

Viewing 2 replies - 1 through 2 (of 2 total)
  • missveronica

    (@missveronicatv)

    @gwmbox

    You can try changing the SEO priority in a code snippet
    until the SEO is displayed at the title:

    // Remove the existing SEO
    remove_action( 'wp_head', 'um_profile_dynamic_meta_desc', 20 );
    
    // Generate a new SEO with higher priority
    add_action( 'wp_head', 'um_profile_dynamic_meta_desc', 1 );

    You install the code snippet by adding it
    to your active theme’s functions.php file
    or use the “Code Snippets” Plugin

    https://ww.wp.xz.cn/plugins/code-snippets/

    Plugin Support andrewshu

    (@andrewshu)

    Hi @gwmbox

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. 🙂

    Regards

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

The topic ‘SEO Data Placement’ is closed to new replies.