Titles in Pages, where there is a Breadcrumb. Needed ?

General shopowner conversation that doesn’t quite fit into other sections.
Talk shop, share experiences, and connect with fellow Phoenix store owners.
14Steve14
Senior Contributor
Posts: 921
Joined: Fri Oct 25, 2019 7:01 pm
Phoenix Version: v1.0.9.1
Has thanked: 17 times
Been thanked: 103 times

Re: Titles in Pages, where there is a Breadcrumb. Needed ?

Post by 14Steve14 »

We were thinking of this not so long ago, not so much for the main product pages but more for the account pages.

Everything we could find online, and including on chatgpt and other AI systems say that a page title, hopefully an H1 tag, should be on every page both to help the user and the search engines understand what the page is about. I get that is the case on important pages, but is it really necessary on the pages like the checkout pages, or the account pages, that are usually hidden to the search engines and only show the user where they are.

The biggest disadvantage to not having a page title text is that users may wonder what page they are on, but if its in the breadcrumb, how many users actually look there.


Join The Code Co-op to get access to your library in the Code Co-op Forum
User avatar
burt
Core Team
Posts: 4550
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Titles in Pages, where there is a Breadcrumb. Needed ?

Post by burt »

Dan Cole wrote: Fri May 01, 2026 11:21 am I'm curious as to what it might look like without what I think is the Page Title?
bc-no-title.png
You do not have the required permissions to view the files attached to this post.
User avatar
burt
Core Team
Posts: 4550
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Titles in Pages, where there is a Breadcrumb. Needed ?

Post by burt »

14Steve14 wrote: Fri May 01, 2026 3:31 pm We were thinking of this not so long ago, not so much for the main product pages but more for the account pages.

Everything we could find online, and including on chatgpt and other AI systems say that a page title, hopefully an H1 tag, should be on every page both to help the user and the search engines understand what the page is about. I get that is the case on important pages, but is it really necessary on the pages like the checkout pages, or the account pages, that are usually hidden to the search engines and only show the user where they are.

The biggest disadvantage to not having a page title text is that users may wonder what page they are on, but if its in the breadcrumb, how many users actually look there.
For "inner" pages, SEO is of zero concern of course.

In the images above I placed the H1 directly into the breadcrumb;

Code: Select all

<nav aria-label="breadcrumb">
  <ol class="breadcrumb align-items-center">
    <li class="breadcrumb-item">
      <a href="/" class="text-decoration-none d-inline-flex align-items-center">
        <i class="fas fa-home"></i><span class="sr-only"> Home</span>
      </a>
    </li>
    <li class="breadcrumb-item">
      <a href="index.php" class="text-decoration-none d-inline-flex align-items-center">
        Catalog
      </a>
    </li>
    <li class="breadcrumb-item active text-body-secondary" aria-current="page">
      <h1 class="fw-semibold text-warning d-inline-flex align-items-center m-0 p-0 text-decoration-underline link-offset-3" style="font-size: 1.2rem;">
        Privacy & Cookie Policy
      </h1>
    </li>
  </ol>
</nav>       
I don't what the SEO impact of this would be.
14Steve14
Senior Contributor
Posts: 921
Joined: Fri Oct 25, 2019 7:01 pm
Phoenix Version: v1.0.9.1
Has thanked: 17 times
Been thanked: 103 times

Re: Titles in Pages, where there is a Breadcrumb. Needed ?

Post by 14Steve14 »

Only other concern may be those that use screen readers, not that we have that many, but I am aware of one or two that rely on these readers.
PiLLaO
Contributor
Posts: 107
Joined: Thu Nov 05, 2020 9:28 pm
Phoenix Version: v1.1.0.6
Has thanked: 53 times
Been thanked: 11 times

Re: Titles in Pages, where there is a Breadcrumb. Needed ?

Post by PiLLaO »

burt wrote: Tue May 05, 2026 12:15 pm I don't what the SEO impact of this would be.
I wanna try, If it penalizes me, I won't notice a difference.

Remove all actuals h1 need to change core, right?

Regards
User avatar
burt
Core Team
Posts: 4550
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Titles in Pages, where there is a Breadcrumb. Needed ?

Post by burt »

PiLLaO wrote: Wed Jun 03, 2026 7:02 am Remove all actuals h1 need to change core, right?
It isn't 2015 8-) 8-) 8-)

Just override the pages etc into whatever Template you are using and remove the <h1
PiLLaO
Contributor
Posts: 107
Joined: Thu Nov 05, 2020 9:28 pm
Phoenix Version: v1.1.0.6
Has thanked: 53 times
Been thanked: 11 times

Re: Titles in Pages, where there is a Breadcrumb. Needed ?

Post by PiLLaO »

I still forget that I have that option available...


Join The Code Co-op to get access to your library in the Code Co-op Forum
Post Reply