Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1462390

    Hey there,

    perhaps someone can help me.
    Rank Math shows me a notification:
    “Du solltest die Einstellungen der Titel & Meta-Seite und der Sitemap überprüfen.”
    “You should check the settings for the Title & Meta page and the Sitemap”

    What does this mean exactly, wat should I do or change?

    Cheers
    Monika

    #1462391

    Sorry I forgot the most important part :D

    The Message is:

    “Rank Math hat einen neuen Beitragstyp erkannt: alb_elements. Du solltest die Einstellungen der Titel & Meta-Seite und der Sitemap überprüfen.”
    “Rank Math has detected a new post type: alb_elements. You should review the settings for the Title & Meta page and the Sitemap.”

    #1462460

    Hi,

    Thank you for the inquiry.

    The plugin allows you to configure the title and meta for each post type in the Rank Math SEO > Titles & Meta panel. In version 6.0, Enfold added two custom post types called alb_elements and alb_custom_layout. If you want to remove these tabs, you can add the following code to your functions.php file:

    add_filter( 'rank_math/settings/title', function( $tabs) {
        unset($tabs['post-type-alb_elements']);
        unset($tabs['post-type-alb_custom_layout']);
        return $tabs;
    });
    

    Best regards,
    Ismael

    #1464029

    Hey Ismael,

    thanks for the answer!

    I don’t want to just remove the Message, I would like to understand what this two post types exaclty mean.
    Are they only important when i use a blog?

    How can I check if I already use them and need to change something in my Seo Settings?

    Cheers
    Monika

    #1464099

    Hi,

    Thank you for the update.

    The new post types are for the Custom Layouts and the default elements in the builder. Did you try the filter above? Please check the links below for more information.

    // https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/
    // https://kriesi.at/documentation/enfold/custom-element-templates/

    Best regards,
    Ismael

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