Problem with Page Not Found on Browser's Tab

#8286
  • Resolved Edmon Belchev
    Rank Math free

    Greetings!
    I have an plugin installed called Dokan Auctions. There is a vendor page with registered vendors and when I click on one of the vendors it redirects me to their page. The problem is that the name of the vendor is not showing in browser’s tab but instead it shows Page Not Found. Here’s an image of my problem: https://imgur.com/hUOjb0Y

    • This topic was modified 4 years, 10 months ago by Edmon Belchev.
Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi there,

    Thanks for getting in touch and sorry for the inconvenience caused.

    We might need to take a closer look at the settings. Please edit the first post on this ticket and include your WP logins in the designated Sensitive Data section.
    Sensitive Data Section

    It is completely secure and only our support staff has access to that section. If you want, you can use the below plugin to generate a temporary login URL to your website and share that with us instead:

    https://wordpress.org/plugins/temporary-login-without-password/

    You can use the above plugin in conjunction with the WP Security Audit Log to monitor what changes our staff might make on your website (if any):

    https://wordpress.org/plugins/wp-security-audit-log/

    We really look forward to helping you.

    https://fashion-auction.eu/

    • This reply was modified 4 years, 10 months ago by Edmon Belchev.

    Hello,

    I have updated the sensitive data as requested. Can you please check further?

    Thank you.

    Hi there,

    Thanks for the access.

    Please share the login URL as well, it seems you have changed the default URL.

    I am looking forward to helping you.

    Okay my bad, sorry. Here on the left side of the page: https://fashion-auction.eu/moyat-profil/

    Hi Edmon,

    Thanks for the access.

    I have added the following code to modify the robots data and title on the vendor pages:

    /**
    * Adjusting store page’s title
    * @return string
    */
    function rank_math_store_title_adjustment( $title ) {
    if ( dokan_is_store_page() ){
        $store_user = dokan()->vendor->get( get_query_var( 'author' ) );
    	$sitename = get_bloginfo( 'name' );
    	$title = $store_user->get_shop_name()." - ".$sitename;
    }
    return $title;
    }
    add_filter('rank_math/frontend/title', 'rank_math_store_title_adjustment', 16 );
    
    /**
    * Adjusting store page’s robots
    * @return string
    */
    add_filter( 'rank_math/frontend/robots', function( $robots ) {
    if ( dokan_is_store_page()) {
    $robots = RankMath\Helper::get_settings( 'titles.homepage_robots' );
    if ( ! is_array( $robots ) || ! in_array( 'noindex', $robots ) ) {
    $robots['index'] = 'index';
    }
    if ( ! is_array( $robots ) || ! in_array('nofollow', $robots ) ) {
    $robots['follow'] = 'follow';
    }
    }
    return $robots;
    });

    I hope this info helps. Thank you.

    Thank you a lot! That was very helpful. Have a nice day and thank you again! 🙂

    Todd
    Rank Math free

    Hello,

    We are super happy that this resolved your issue. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/?rate=5#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    If you do have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

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

The ticket ‘Problem with Page Not Found on Browser's Tab’ is closed to new replies.