I have been wondering, assuming a shopowner has a Breadcrumb.....are Page Titles needed ?
EG, with the Title
EG without Title
What's your opinion ?
Titles in Pages, where there is a Breadcrumb. Needed ?
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Titles in Pages, where there is a Breadcrumb. Needed ?
You do not have the required permissions to view the files attached to this post.
I am not here to build for you.
I am here to build with you. Let's help each other.
I am here to build with you. Let's help each other.
- bonbec
- Contributor
- Posts: 190
- Joined: Mon Oct 26, 2020 12:23 pm
- Phoenix Version: V1.1.0.7
- Has thanked: 54 times
- Been thanked: 40 times
Re: Titles in Pages, where there is a Breadcrumb. Needed ?
A large headline is unnecessary for me.
However, I quite like this display:
However, I quite like this display:
You do not have the required permissions to view the files attached to this post.
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Titles in Pages, where there is a Breadcrumb. Needed ?
That looks like the checkout "step" thing, but extended out into the cart as a first step.
Looks good, I like the concept very much.
Looks good, I like the concept very much.
-
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 ?
For some pages will be a good option, for others... it's the <h1> I'm not sure how it affect to Google, but if no, need refact all h1, h2, h3...
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Titles in Pages, where there is a Breadcrumb. Needed ?
BTW, no plan to remove the headings - it's just a discussion post.
I like not having the big titles - to my eye it is much nicer cosmetic to not have them
I like not having the big titles - to my eye it is much nicer cosmetic to not have them
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Titles in Pages, where there is a Breadcrumb. Needed ?
This is a very good point.
I wonder if the "end" bit of the breadcrumb (in the image `Cart Contents`) could be made into a `h1` but with a small font-size to suit the rest of the bread ?
I am not here to build for you.
I am here to build with you. Let's help each other.
I am here to build with you. Let's help each other.
-
Dan Cole
- Senior Contributor
- Posts: 498
- Joined: Fri Oct 25, 2019 2:14 pm
- Phoenix Version: 1.0.8.21
- Has thanked: 67 times
- Been thanked: 61 times
Re: Titles in Pages, where there is a Breadcrumb. Needed ?
@burt
Dan
Thinking outside the box and operating without coffee (a dangerous state for me), could the last bit of the breadcrumb be styled or dressed up in a way (ie more visible) that it would, in effect, serve as a replacement for the title?I wonder if the "end" bit of the breadcrumb (in the image `Cart Contents`) could be made into a `h1` but with a small font-size to suit the rest of the bread ?
Dan
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Titles in Pages, where there is a Breadcrumb. Needed ?
I'm almost, maybe, sort of, pretty certain that this could be done. It would `just` be a case of giving that `end crumb` a different style. Eg; perhaps Bold, or an underline, a slightly bigger font , a colour to suit the main cosmetics of the shopowners theme...etc ?
I am not here to build for you.
I am here to build with you. Let's help each other.
I am here to build with you. Let's help each other.
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Titles in Pages, where there is a Breadcrumb. Needed ?
Obviously doesn't suit the theme as it was just for a test, but...
Achieved by...
1. overriding the breadcrumb hook
-> into chosen template
2. changing L30 in that NEW file
-> https://github.com/CE-PhoenixCart/Phoen ... mb.php#L30
to something like
Code: Select all
$crumbs .= '<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;">' . $v['title'] . '</h1>';
Now you have a somewhat styled h1 in the breadcrumb.
Whether this is a good idea or not, and whether this might cause unintended consequences...unknown.
You do not have the required permissions to view the files attached to this post.