Rickard Andersson
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] fatal error in 3.5.1I think you are still running a PHP version before 5.3, right?
Version 2.2 uses PHP namespaces which requires PHP 5.3, maybe it people are still running PHP <5.3.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Update crashedI think you are still running a PHP version before 5.3, right?
Version 2.2 uses PHP namespaces which requires PHP 5.3, maybe it people are still running PHP <5.3.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Show Tags in ListThis is currently being discussed in another thread, see http://wordpress.org/support/topic/ordered-box-option
Is that what you’re asking? Or do you just want the tags each on it’s own row like a list of recent posts?
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Setting mulitple PHP propertiesHi
All the options should go into the
array()function separated by commas like this:<?php if (is_home()): ?> <?php do_utcw(array( 'show_title_text' => false, 'max'=>'28' )) ?> <?php endif; ?>Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Ordered box option?If you want to align the tags “row by row” like this:
a b c
d e f
g h iYou could maybe do it with CSS. But if you would like to align them “column by column” like this:
a d g
b e h
c f iThat would take some changes to the plugin. I feel this is kind of a special request, but maybe I could add some hooks to the plugin so that anyone could change how the cloud is rendered. Then you (with some help from me or some other developer) could write your own rendering function to get the cloud to display in that way.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] How to Justify the tags in this Widget?Hi
I generally recommend adding your own css to change the general style of the cloud, but I’ve been getting a couple of requests like these lately and will try to add some configuration for it.
If you decide to add the css yourself, you could add it to your themes style.css file or use some plugin to add it. The rule would look something like:
.widget_tag_cloud { text-align: justify }
Regarding the padding, I see that my tag cloud doesn’t have the same HTML structure as the regular tag cloud which makes your theme not add padding to it. I will try to fix this in the next release of the plugin.
If you would like to fix it temporarily before I update the plugin, you can add the following CSS:
.widget_tag_cloud { padding: 10px 15px }
or combined with the above rule:
.widget_tag_cloud { text-align: justify; padding: 10px 15px }
Sorry, I can’t see the debug output. Are you sure you have enabled the configuration option “Include debug output” under the tab “Adv.” in the widget settings?
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Tag Cloud CenteredHi
I generally recommend people to add their own css via their theme or a plugin which can add css for you. There rule would be simple and look something like:
.widget_tag_cloud { text-align: center }
But I think more people have asked this question so maybe it’s time to add it to the configuration of the plugin.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Only display Tags from specific category?Ok, added a feature request for this since there seems to be an interest in it.
If you could come up with other sensible filters to add to the plugin I’d be happy to discuss them here or in the github issue
https://github.com/rickard2/utcw/issues/27
I’ll try to get it in to the next version of UTCW
Could you please enable debugging in the advanced tab and give me an URL so that I can see the debugging output?
@prim32 You shouldn’t have to select any special option to get qtranslate support. Are you using the latest beta version referred to in one of my comments above?
The feature was added recently and I haven’t made a stable release which includes qtranslate support yet.
If I understand you correctly this is achievable by setting the “size from” and “size to” options
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Multilingual tag cloudsHi
The 2.2-beta2 is now available which includes WPML support.
http://downloads.wordpress.org/plugin/ultimate-tag-cloud-widget.2.2-beta2.zip
I’d love to hear your feedback.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Link on Hastag is blankThe links in the tag goes to the archive page for that tag/term. What kind of issues are you having?
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Show only on blog home PHPDo you see any error messages in your apache or php error logs? Blanking out the page usually indicates that some kind of error occurred.