• Paul, a minor ‘bug’ that Google Search Console is picking up is that the SiteReviews plugin is reporting duplicate pages for follow-on pages of the site review listings.

    HTML Improvements
    Duplicate title tags
    Your title provides users and search engines with useful information about your site. Text contained in title tags can appear in search results pages, and relevant, descriptive text is more likely to be clicked on. We recommend reviewing the list and updating the title tags wherever possible.

    Patient reviews of the Plymouth practice | SpaDental Group
    /plymouth/reviews/
    /plymouth/reviews/?reviews-page=11

    Is it possible to automatically add “Page 11” for instance into the Title of the additional listing pages?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    Site Reviews uses its own pagination that is outside of the WordPress loop.

    In order to fix the title, you will need to add something like this in the template of your theme that prints the title meta in the <head> of your HTML:

    // Here we assume that $title contains the value of the title meta tag of the page.
    if( $pageNumber = filter_input( INPUT_GET, 'reviews-page' ) && is_numeric( $pageNumber )) {
        $title.= ' | Page '.$pageNumber;
    }
    • This reply was modified 6 years, 10 months ago by Gemini Labs.
    • This reply was modified 6 years, 10 months ago by Gemini Labs.
    Plugin Author Gemini Labs

    (@geminilabs)

    Since there has been no reply in a week, I am marking this as resolved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Google search console reporting duplicate title tags’ is closed to new replies.