Thanks so much, that solved the case!
Yes, this seems to be the problem. Can you do anything about it?
I couldn’t agree with you more, but one of my clients is using it…
In the generated script “var locations=…” there is a line “var marker=new L.marker([locations[i][1],locations[i][2]],{icon:thisIcon},).addTo(thisMap)…” and IE just says Syntax Error at the position behind “{icon:thisIcon},”
Thank you for your help!
This worked for me:
<?php
foreach((get_the_category()) as $category) {
if($category->name=='xxx'||$category->name=='yyy') continue;
$category_id = get_cat_ID( $category->cat_name );
$category_link = get_category_link( $category_id );
echo '<li><a href="'.$category_link.'">'.$category->cat_name.'</a></li>';
} ?>
Hope this helps
ddmarker