WPIntell

Source evidence

Location page?

Five Star Business Profile and Schema · support · 2024-10-12T16:37:00+00:00

mixedsentiment
mediumseverity
0.84relevance
5replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

3 / 32 rows with source links

9.4% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
evo252 resolved
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] 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? 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. 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.wordpress.org/reference/hooks/pre_get_document_title/ 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. 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.

Comments

5 shown
jaysupport 2024-10-15T19:45:00+00:00

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?

evo252 2024-10-16T10:07:00+00:00

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.

jaysupport 2024-10-16T20:34:00+00:00

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.wordpress.org/reference/hooks/pre_get_document_title/

evo252 2024-10-16T21:59:00+00:00

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.

jaysupport 2024-10-21T13:31:00+00:00

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.