Breadcrumbs

Posted in: Newspaper
Post count: 18

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>

Post count: 18

Same on Posts with Quotation Marks in Title!

Post count: 6600

Hi,

There were some issues, we have fixed them, please update the theme to the latest versions.

Thank you

Post count: 780

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

Post count: 18

We are using latest Version of the Theme (Example Link: http://www.loomee-tv.de/news/alexander-klaws/)

Post count: 18

Any help?

Post count: 854

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.

Post count: 18

The problem is back … since last Theme update …

http://www.loomee-tv.de/news/nicole-scherzinger/ >>>>Line 179<<<<

Post count: 18

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!

Post count: 9544

Also for anybody who follows proper journalism standards, you never use full quotes in story titles, only single quotes, such as

New book rocks the world, ‘My Little Pony’

Not relevant to the HTML encoding issue, but worth noting in case anybody cares 🙂

Post count: 18

@ 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:

http://www.spiegel.de/panorama/justiz/crystal-meth-bayern-ruestet-im-kampf-gegen-die-droge-auf-a-999104.html

… 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 🙂

Post count: 9544

Ah yes… Sorry 🙂

Viewing 12 posts - 1 through 12 (of 12 total)
You must be logged in to reply to this topic.