sitemap submission

#66393
  • Resolved CARDS DENTAL
    Rank Math free

    I changed the hosting, so I will need to submit the sitemap again in search console

    my title issue is still not solved

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hello,

    Thank you for contacting Rank Math today.

    Please resubmit your sitemap and let us know if you face any issue so we can help.
    The ticket on your title is still open awaiting your details update, please check :https://support.rankmath.com/ticket/please-solve-my-link-and-title-issues/?view=all

    Looking forward to helping you. Thank you.

    ​​​​​​

    is it necessary to submit the sitemap again?

    about the title?
    (replied by the developer)

    Hi,

    Thank you for contacting us

    As mentioned before there are a couple of things with titles of author/providers pages.

    The plugins you have used doesn’t allow shortcodes etc. For this there would be couple of customization’s to do that

    If you have any support related query please let us know.

    Thanks

    Hello,

    Re-submitting the sitemap forces Google to crawl your sitemap again in which case if your sitemap had issues that are no longer, it might be able to fetch the sitemaps without showing errors.

    Rank math does allow shortcodes, however these will not be analysed in the backend SEO analysis. Would you let us know where you wish to use shortcodes so we can assist you.

    Looking forward to helping you. Thank you.

    ​​​​​​

    I forward your message to the developer, I will update you in a few days

    Hello,

    Please do and let us know so we can assist you further.

    Looking forward to helping you. Thank you.

    ​​​​​​

    replied

    Hi,

    Thank you for contacting us

    Please ask them if we can use shortcode for the meta titles.

    Like WordPress print <title> tag in the author(WordPress users) pages, is there any options to override current title for each author? So we want to set custom titles for each user

    If you have any support related query please let us know.

    Thanks

    please also check the video link

    Hello,

    You can ask them to use the following filter which can be added to functions.php to modify the title settings:

    
    /**
     * Filter to change the page title.
     * 
     * @param string $title
     */
    add_filter( 'rank_math/frontend/title', function( $title ) {
    	return $title;
    });
    

    And here is a filter your development team can use to modify the author base:

    
    /**
     * Allow developers to change the author base.
     *
     * @param string $base The author base.
     */
    add_filter( 'rank_math/author_base', function( $base ) {
     return $base;
    });
    

    Looking forward to helping you. Thank you.

    ​​​​​​

    9developer)

    Hi,

    We have tested below hook

    add_filter( ‘rank_math/frontend/title’, function( $title ) {
    return $title;
    });

    It return pages titles, but we need to change title at author pages and this doesn’t work
    If you have any support related query please let us know.

    Thanks

    Alberto
    Rank Math business

    Hello,

    I will forward this thread to the devs so they can answer your issue.

    Looking forward to help you.

    Hello,

    To prevent Rank Math from changing the author base, please add following code to your theme’s functions.php file:

    add_filter( 'rank_math/author_base', '__return_false' );

    For the Title issue, I see in the screencast you shared the title contains %provider_category%. What exactly is this provider_category variable? Have you or your theme developer registered a variable using Rank Math register replacement filter?:
    https://rankmath.com/kb/filters-hooks-api-developer/#add-custom-variable

    If your theme is adding the title and if you don’t want to use Rank Math generated title then please use following filter code:

    
    add_filter( 'rank_math/frontend/title', function( $title ) {
        if ( is_author() ) {
           return false;
        }
    
        return $title;
    });
    

    I hope that helps.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

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

The ticket ‘sitemap submission’ is closed to new replies.