Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passive Node is not crawl-able link Pagespeed flag! #369

Open
wihodges opened this issue Sep 29, 2023 · 3 comments
Open

Passive Node is not crawl-able link Pagespeed flag! #369

wihodges opened this issue Sep 29, 2023 · 3 comments

Comments

@wihodges
Copy link

What are you trying to do?

When using a passive node for structural distinction, google page speed flags that anchor element as "not crawlable link" and hurts the SEO score awarded to page because there is no href on an anchor tag.

What's your proposed solution?

The passive node should default with href="#" automatically, and possibly aria-hidden=true attribute. The href="#" solves the Pagespeed issue.

Additional context

While the passive node is a good designation for labels and headers on navigations, especially footers, it should probably be a tag instead, but understandably, there are probably a lot of legacy anchor tag styles involved.

#183

@engram-design
Copy link
Member

I’m hesitant to add href=# because I’m not sure how “safe” this is for everyone and the multitude of sites out there. But it might have to be a stop-gap for now.

The proper fix for this is probably to change to HTML tag used to <span>, but that’s going to be a breaking change for people staying navigation nodes and assuming everything is a <a>. I’ll have to introduce a getTag() function for node types.

I’m not sure if you want to add aria-hidden=true as that will hide the node from screen readers?

This also only affects the use of craft.navigation.render() as with custom rendering you have full control over the output.

@iainhenderson
Copy link

I recently ran into the same thing. Instead of adding href="#" adding role="none" may be a safer solution and should keep pagespeed quiet.

@engram-design
Copy link
Member

I'll admit that I've not had time to properly research alternatives, so thanks for chiming in with role="none". I'll look into it further, but that sounds much better!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants