Rickard Andersson
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Attachments not included in cloud resultsThanks, will add this to the next version of the plugin and see how it works.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] [utcw] shortcode styling & bugThis is usually defined by the sidebar where the widget is included. However you could specify the markup manually when using the shortcode using
before_titleandafter_title. Example here: https://0x539.se/wordpress/tag-cloud-playground/#cloud9Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] font size units – we'd like to use 'em' or '%'Yes, pixels, percentages and em units should be supported out of the box. I’ve tried both using the Widget UI and using shortcode and it seems to be working:
https://0x539.se/wordpress/tag-cloud-playground/#cloud8The code for defining measurements is in the
MeasurementTypeclass: https://github.com/rickard2/utcw/blob/master/src/Config/Type/MeasurementType.phpYou can use
'show_title' => false, more information here: https://github.com/rickard2/utcw/blob/master/CONFIG.md#show-titleForum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Limiting the tag cloud to a specific categoryCheck the setting “Add filter to links” at the bottom of the first tab in the widget settings.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] WP 3.7- Plugin Breaks PageNo, the plugin is designed to work with
dynamic_sidebar()– that’s where the widget should be used.register_sidebar()is where the sidebar is defined, so there should be a call to that function for the sidebar called'blog'somewhere in your code.But if it works with the regular tag cloud but not mine, it seems like there might be some issue.
I’d be very interested in more feedback in being able to isolate the problem.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Limiting the tag list to a specific categoryJust double checked and it works in my WordPress installation:
https://0x539.se/wordpress/tag-cloud-playground/#cloud7 (Inclusion with display type list)
Could you provide a link to your site and enable debug mode?
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Limiting the tag list to a specific categoryIt should work with both the list and tag cloud display types, I will double check and get back to you.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Tags all the same sizeHi Kel
In your style.css file (http://www.keljackson.com/wp-content/themes/simplemag/style.css) on line 2242 you can see:
.widget_tag_cloud a {This is where your theme defines styles for your tag cloud.
On line 2250 it says:
font-size:100% !important;This is what enforces equal sizes of all your tags regardless of what my plugin tries to do. If you comment out or remove that line you should get different sizes again.
To comment it out, just wrap the line in a CSS comment block like this:
/* font-size:100% !important; */You can play around with removing/commenting other lines as well if you want to remove more theme styles from the tag cloud.
Remember that these changes might be removed whenever you change or update your theme.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] WP 3.7- Plugin Breaks PageHi Ryan
I haven’t heard any other issues with the markup in the plugin. Could it be something with your theme or theme location?
Which theme are you using? If you’re a developer, please provide the options for
register_sidebar()for your theme. I think the markup problem might be there.The reason why my plugin breaks and the other doesn’t might be that the other plugin doesn’t use the markup from the sidebar definition.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Two words tagNot right now but it would be trivial to add. Will try to add it in the next version.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Suggestion – CommaThere already is a setting for this, under Advanced appearance at the bottom there’s settings for tag separators.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Tags just shows as list not as cloudI assume you’re getting a list like this:
* tag 1
* tag 2
* tag 3There’s a setting under advanced appearance called “Display type” that will change from a list to a regular tag cloud.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] need translation filesHi!
I’ve been lazy with translation lately, didn’t know if there were any interest in it. Will try to get proper English translation files for the next release.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] XHTML validation failingI’m not really in favor of the jQuery solution since that would break the appearance for non javascript clients.
However when I first researched this i tried to find a solution that would work for all the cases where the tag cloud could be used (widget, short code, php code). I suppose it would be possible to only output inline styles whenever absolutely necessary.
I don’t really feel this is a prioritized issue right now but I will add it to the github list of issues.