Breadcrumbs Link Issues

Hi,
So my site breadcrumbs feature isn’t displaying properly.

On my posts, tags, and category pages where my breadcrumbs display are missing the directory page.

For example:

It displays like this: HOME> (missing link) > DECORATIVE CONCRETE PATIO DESIGN OPTIONS

When it should display like this: HOME > Blog Page > DECORATIVE CONCRETE PATIO DESIGN OPTIONS

Can you please look into this and advise on how to fix?

Also, is there a way to add link alt text the the portfolio page slider arrows?

Thanks

Hi @quituck,

Thank you for the credentials. I can see the issue, although I can’t access the settings due to limited rights of the credentials provided. Did you set blog page here:

The issue might be coming fron either a customization of a plugin. You could try testing for a plugin conflict first. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.

If it is not coming from a plugin, please try to switch from child theme to main X theme. Check the issue again. Since you have caching, please make sure to clear cache before checking again. Let us know how this goes.

I thought I made you an admin, sorry about the limited access. You should have fill access to the site now.

As far as this breadcrumb issue, it’s definitely theme related. I’m not using a plugin for it. The breadcrumbs issue is on all of my portfolio category pages. The image you shared about will not solve this problem but did resolve the blog page issue.

You also overlooked my second question >>>> Is there a way to add link alt text the the portfolio page slider arrows?

Please looking into this again and advise on how to fix.

Thanks.

Hello @quituck,

You are having this issue because you do not have a page that is using the Layout - Portfolio page template. You will need this because this will become the parent page of all the portfolio item. I went ahead and created Portfolio with the Layout - Portfolio page template.

Please check your site now.

Okay. That solved that problem. Thank you!

My second problems that I need to resolved was not addressed. Is there a way to add “link alt text” the the portfolio page slider arrows?

Hello @quituck,

To add a link alt texts to the next and previous arrows in the portfolio page slider arrows, please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb)

(function($) {
  $('.flex-next').attr('alt', 'Next');
  $('.flex-next').attr('title', 'Next');
  $('.flex-prev').attr('alt', 'Previous');
  $('.flex-prev').attr('title', 'Previous');
})(jQuery);

We would love to know if this has worked for you. Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.