Nice Update!
Found a Problem in the New Breadcrumbs with Quotation Marks inside the itemprop-Part. Where can I fix this? Happens in Tag-Archives!
Example:
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><meta itemprop="title" content = "News über "Justin Bieber"">News über "Justin Bieber"</span>
Hi,
i’ve checked that and the theme seems to encode the characters well. http://screencast.com/t/Me9qWb26Vd
please check in view source (not in the chrome debugger or firebug because they decode the strings). If the problem is indeed in source, please give me a url
We are using latest Version of the Theme (Example Link: http://www.loomee-tv.de/news/alexander-klaws/)
hi,
try this: http://screencast.com/t/dGIQPimrzvZ
also you can try removing all the ” and ‘ from titles and replace them with ` , as ” and ‘ are use in HTML syntax.
Thanks for you message.
Radu A.
The problem is back … since last Theme update …
http://www.loomee-tv.de/news/nicole-scherzinger/ >>>>Line 179<<<<
We solved the problem in td_page_generator.php:
Had to change
$breadcrumbs_array [] = array (
'title_attribute' => '',
'url' => '',
'display_name' => __td('Posts tagged with') . ' "' . $current_tag_name . '"'
);
to this:
$breadcrumbs_array [] = array (
'title_attribute' => '',
'url' => '',
'display_name' => __td('Posts tagged with') . ' ' . $current_tag_name . ''
);
Now it works also in tag archives!
-
This reply was modified 11 years by
samnaun2000.
@ Christopher Simmons
You are probabliy right in your Language …. but it’s a bit different in german. Here one example of one of our most famous and best Newspapers:
… our problem is not the encoding of our Titles, is the encoding from the breadcrumbs in tag archives, made by the template. Sorry for my horrible english 🙂
-
This reply was modified 11 years by
samnaun2000.
