• Hi,

    For an unkown reason, my location page which is showing all my locations is showing an asian title on the french version website. I investigated to custom the title of this page, but I don’t find any place where I can custom this page (SEO, title page, etc…)?

    And on my “location” page of the YOAST SEO settings, it’s showing this SEO structure:
    title page -page – website title

    So I don’t know how to remove this asian word that is showing on my Locations page?

    Thanks for your help!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support jaysupport

    (@jaysupport)

    We have no control over Yoast or the title of your page. I’m not sure where this is coming from, but it isn’t our plugin. Is this the archive page for the location post type? It looks like maybe an issue with whatever you are using to translate the pages/archives?

    Thread Starter evo252

    (@evo252)

    Ok, I am investigating but still don’t find. Do you know if there is a way to edit the title of the location page? Regardless of this problem, and without using YOAST Seo, it would be convenient to edit the title of location page for SEO purposes. Maybe, if we are able to edit the title of location page, we can fix this issue and also optimize SEO of the location page.

    Plugin Support jaysupport

    (@jaysupport)

    One way to override our plugin’s custom post type’s archive page title would be to use the pre_get_document_title filter within your child theme’s functions.php file.


    function custom_cpt_archive_title( $title ) {

    if ( is_post_type_archive( 'location' ) ) {
    $title = 'Custom Title for Location Archive Page';
    }

    return $title;
    }

    add_filter( 'pre_get_document_title', 'custom_cpt_archive_title' );

    More information can be found here: https://developer.www.ads-software.com/reference/hooks/pre_get_document_title/

    Thread Starter evo252

    (@evo252)

    I tried this snippet but didn’t change anything on the title of the page.

    What’s weird is that in Elementor, the name of the page is OK, but it’s not rendering like that on the front end.

    Plugin Support jaysupport

    (@jaysupport)

    This is not an issue with our plugin, but with your theme. It is now falling more into theme customization, which is well outside the support of our plugin and, unfortunately, not something we can assist with.

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