Hi.

I'm using for the first time this theme. I was very happy because it exceeded all my needs.

However, I am facing a difficulty in breadcrumb and still could not identify if I have a configuration problem or issue.

As we can see in the screenshot below, the breadcrumb is displaying the attributes rel="v:url" property="v:title" in the middle of the breadcrumb:

I also could not identify whether this is a matter for the module Crumbs or whether it is related to this theme.

Can you help?

Tks.

CommentFileSizeAuthor
#2 modules.png53.3 KBastutonet
breadcrumbs.png2.45 KBastutonet

Comments

Jeff Burnz’s picture

A single "crumb" should look like this in the source code:

<li class="crumb crumb-first"><span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" href="/?q=forum">Forums</a></span></li>

The typeof, rel and property attributes are to support Googles rich snippets for breadcrumbs (RDFa): http://support.google.com/webmasters/bin/answer.py?hl=en&answer=185417

What you are showing here looks like it might be broken markup, do you have a link to the site, or could you please paste in the markup for the breadcrumbs, and tell me all the modules you have for breadcrumbs.

A likely workaround is to disable the RDF module in Drupal core, this is not exactly ideal but a quick fix for now until this is sorted out.

astutonet’s picture

StatusFileSize
new53.3 KB

Hi Jeff. Thanks for your reply.

Well, the only module installed for the breadcrumbs is the Crumbs module, but I believe in the possibility of any interference from other modules. In any case, in the image attached we have a list of the names of all modules of this project.

I did a test disabling the module RDF in Drupal core. The crumbs really worked and the markups are no displayed.

This website is not yet online, but if necessary I put it.

Below is the code of Breadcrumb (with RDF enabled). Note that the markup is inserted into the middle of the name of the active page:


/* BREADCRUMB START CODE */

<section id="breadcrumb" class="clearfix">
<div id="breadcrumb" class="clearfix">
<nav class="breadcrumb-wrapper clearfix" role="navigation">
<h2>Você está aqui: </h2>
<ol id="crumbs" class="clearfix">
<li class="crumb crumb-first">
<span typeof="v:Breadcrumb">
<a rel="v:url" property="v:title" href="/mysite/home">Início</a>
</span>
</li>
<li class="crumb crumb-last">
<span> » </span>
<span typeof="v:Breadcrumb">Not rel="v:url" property="v:title" ebooks</span>
</li>
<::after>
</ol>
<::after>
</nav>
<::after>
</div>
<::after>
</section>

</section>

Tks.

Jeff Burnz’s picture

Project: AT Commerce » AdaptiveTheme
Category: support » bug

Please see #1918700: AT Core breadcrumb preprocess adds RDF markup to plaintext on search pages, a patch is proposed that looks like it will fix this issue.

astutonet’s picture

astutonet’s picture

Status: Active » Reviewed & tested by the community

Update of status

ezra-g’s picture

Status: Reviewed & tested by the community » Closed (duplicate)