simonhagger
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Request for enhancmementTechnically .utcw-tag is superfluous, you can target it as suggested. I just like that as a general “family” tag which is almost self documenting in CSS. The additional tag with the slug suffix is the key to this request, as that’s where the usefulness comes in.
I have made changes to the public.php file (around line 123) as follows to kill off the error:
$categoryString = ”;
if($categories) {
foreach($categories as $category) {
if ($category->cat_name != “Uncategorized”) {
$output .= $separator.$category->cat_name;
}
}
$categoryString = trim($output, $separator);
}// Merge post tags and categories
if ($keywords != ”){
$keywords .= ‘, ‘.$categoryString;
} else {
$keywords .= $categoryString;
}Please fold the above fixes into the plugin to consider this one resolved.
I also get the following error on the actual site pages:
Backtrace from warning ‘Array to string conversion’ at /home/sitefolder/public_html/wp-content/plugins/shareaholic/public.php 137:
/home/sitefolder/public_html/wp-content/plugins/shareaholic/public.php 94 calling draw_keywords_meta_tag()
/home/sitefolder/public_html/wp-content/plugins/shareaholic/public.php 35 calling shareaholic_tags()I fixed the former error by making the function at fault “admin_bar_extended()” called as a public static function in the utilities.php file.