Hi there
How to edit the Cirrus JS nodes to insert photos on nodes!! And/ or on rollover .please forward links/ Forum refs / code . For a project for ‘ArtExpo’ pls forward email to forward website link and details
Thank you Cirrus <3
anony
]]>С версией wordpress 4.4 не работает
]]>I love this plugin – works perfectly, looks good too. Resizing it from setting didnt work and I hardcoded my dimensiond directly into the plugin code, but I don’t care, that’s not the case. Why does it add an iframe #wp_cirrus_gwt at the very bottom of my page?
]]>Hi,
Excellent skin template. How can I edit the Facebook, Contact icons to associate them with URLs? I cannot find out how to add a URL to each icon.
Thanks,
]]>Hi
Is there is a way to stop animation on mouse over the cloud tags, so that user can click the text without chasing it.
]]>Hellow, I just get a empty box. No Tags shown no matter what I do…
Please help.
hello, my theme opens the post within a modal.
then the plugin is not working.
you would have a solution to this
]]>Hi,
Is there a way to get wp-cirrus to use the woocommerce tags?
]]>Hello,
is it possible to how only tags of the products on every product different tags?
Thank you!
]]>Hi everybody,
I’m using this very nice plugin, only I would like to have the “Widget display control” (from “Conditional Widgets”) available like it is for the other widgets I have.
The point is that I want the Cloud Tag to appear only in the Home Page footer, not in every page like it is now.
Can anybody help
Thanks
Marianna
]]>installing wp-cirrus on a page after a text always results in reverse display: wp-cirrus first, then text ((wp 3.6, theme twenty eleven).
Thanks for any advice!
Hi I would like to stop the animation when the mouse hovers over the text/tag, is it possible?
]]>Installed latest version of plugin on latest version of WP (3.6).
Animation doesn’t work and javascript console shows:
Uncaught ReferenceError: Invalid left-hand side in assignment
That error refers to about:blank, which is really weird. I would like to emphasize, however, that it IS being triggered by the plugin.
]]>Hello!
I really love this Tag Cloud! I have had it for years! But after I updated to the lastest version of WordPress, it stopped working on Safari. Is there any way to fix this?
Hello! Ever since that I updated to the latest version of wordpress and WP-Cirrus, my tag cloud stopped working. I really love this plugin. Is there any way to fix it?
-Mari
]]>I have installed the newest update of WP Cirrus and guess what?
BROKEN at Opera
BROKEN at Safari
It’s only working properly at IE and FF, but needs more load time than before.
My site is ruined, I have to get older version … somehow!
]]>Hi,
I would like to use wp-cirrus inside a banner, so I wrote the required PHP function in the header.php file, and it works.
However, the tag cloud is not wide enough.
I put 200px for the height and 1000px for the width, but the tag cloud keeps the same proportions and seems to be 200px wide.
Is there a way to fix it ?
Cheers,
Arkephyr
]]>Line 368 should do a check to make sure the index is not empty.
]]>Tag cloud not working with WP 3.5 – I’m not sure if it’s that or my theme, which is Atahulalpa 3.7.10.
]]>In the settings of the plugin or its widget, changing the number of tags to show does not work. Now, I could swear that this used to work, someone please correct me if I’m wrong. Maybe this has something to do with reinstalling the plugin or some sort of conflict, I don’t know. Anyway, as a sidenote I noticed that the plugin settings are copied by the plugin to its widget. This does not happen to the adjusted number of items to show. Coincidence? Is there a minimum limit on items to show in the cloud? I’m using WP-Cirrus 0.6.9 on WP 3.4.2.
]]>I have tried to let WP-Cirrus show categories instead of tags, but it won’t do it. I’ve tried updating settings from the configuration menu, from a widget, or called via [wp-cirrus]. I’ve uninstalled and reinstalled the plugin and tried again. It just won’t do it. I’m using WP-Cirrus 0.6.9 on WP 3.4.2.
]]>Great Plugin!
But dose anyone know how to remove the box when categories are hovered over? its just ugly, having different color will do
thanks
]]>Looking for a little help here.
I have set my width to 880px and the div is growing but the cirrus “ball” still stays the same width. I change the radius from auto to something else but then the tags start getting cut off/disappearing on the left side and going above the height bounds.
Anyone have any hints as to how to grow the cirrus ball width wise? I don’t mind it moving out of the div but I do need it to spread out to the right a bit more.
Hopeing someone can save me some hours of going through the code for this one.
]]>When I tried to use WP-Cirrus in a post I noticed that it would always display before any text in a post. This happens when the plugin echos content instead of returning it. A fix for this is:
~Line 34: add a return in wpcirrusShortCodeHandler:
function wpcirrusShortCodeHandler($atts=NULL){
return wpcirrusInit(true, $atts);
}
~Line 342 (function: wpcirrusInit): Add an ob_start(); around line 342 before Javascript output and then add a return ob_get_clean(); around line 373 function after the div:
ob_start();
?>
<script type="text/javascript">
var wpcirrusRadius<?php echo $tagBoxName?> = <?php echo $options['radius'];?>;
var wpcirrusRefreshrate<?php echo $tagBoxName?> = <?php echo $options['refreshrate'];?>;
<?php
if(!empty($options['fontcolor'])){
echo "var wpcirrusFontColor".$tagBoxName." = '" . $options['fontcolor'] . "';";
} else {
echo "var wpcirrusFontColor".$tagBoxName.";";
}
if(!empty($options['backgroundcolor'])){
echo "var wpcirrusBackgroundColor".$tagBoxName." = '" . $options['backgroundcolor'] . "';";
} else {
echo "var wpcirrusBackgroundColor".$tagBoxName.";";
}
?>
</script>
<div style="position: relative; height: <?php echo $options['height'];?>px; width: <?php echo $options['width'];?>px;" id="<?php echo $tagBoxName?>">
<?php
if($options['mode'] == 'both'){
echo wp_tag_cloud($options['args'] = $options['args'] . "&taxonomy=post_tag&number=" . $options['number'] . "&orderby=" . $options['orderBy'] . "&order=" . $options['sortOrder'] . "&smallest=" . $options['smallest'] . "&largest=" . $options['biggest']);
echo " " . wp_tag_cloud($options['args'] = $options['args'] . "&taxonomy=category&number=" . $options['number'] . "&orderby=" . $options['orderBy'] . "&order=" . $options['sortOrder'] . "&smallest=" . $options['smallest'] . "&largest=" . $options['biggest']);
} else if($options['mode'] == 'pages'){
echo wp_list_pages("echo=0&title_li=");
} else {
echo wp_tag_cloud($options['args'] = $options['args'] . "&taxonomy=". $options['mode'] ."&number=" . $options['number'] . "&orderby=" . $options['orderBy'] . "&order=" . $options['sortOrder'] . "&smallest=" . $options['smallest'] . "&largest=" . $options['biggest']);
}
?>
</div>
<?php
return ob_get_clean();
]]>
Nice plugin, though, I juust ran into critical error, which occurs if both WP-Cirrus 0.6.8 and
Vkontakte-API 2.7 are installed (and activated):
Fatal error: Cannot redeclare wpcirruswidgetinit() (previously declared in /home/users2/t/top10/domains/shnaiderman.ru/wp-content/plugins/wp-cirrus/wp-cirrus.php:38) in /home/users2/t/top10/domains/shnaiderman.ru/wp-content/plugins/wp-cirrus/wp-cirrus.php on line 38
Here’s a link to the same bug report on WP-Cirrus support forum.
]]>Hi, i’ve installed the widget and it’s works fine, but the words have a right allign.
How can i centered all?
Hello,
I am using TwentyEleven, and I would like to replace the Header with a WP-Cirrus widget.
Something like this :
https://endoma.net/?page_id=1375
…but straight at the top of the Theme Home Page.
Do you guys have any suggestion on how to accomplish this?
—
Tried browsing for WP header widget and although there are a few pages offering code for this Mod, in the end I could not get it done.
Thanks for feedback on this.
Best
]]>hello everybody
i first installed the plugin and tags where displayed, all was working correctly.
Since i created a few new tagged posts, i noticed later wp cirrus doesnt show new tags.
Is there settings i missed?
Thank you!
Sorry, it just doesn’t work….Tried following your directions step by step and also adding through the plug-in finder –no luck. My site is https://seantm.info if you’re interested in looking at it. Too bad -it looks like a cool little app when it works. ;-\
]]>