Rickard Andersson
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] My cloud no longer has large/small fontsYour theme is applying lots of styles to the tag cloud it seems, if you open your style.css file and search for
.tagcloudyou will find the styles that it applies. If you want to remove all the styles just add a comment block around it. A comment block starts with/*and ends with*/– comments are not parsed by the browser and will thus be disabled.If there are some styles that you’d like to keep and others you’d like to remove, just add comments around the styles that you want to remove.
If you want to remove the spacing between tags, the CSS attributes
marginandpaddingare the ones you should start with.Some examples to get you going:
Regular block of styles:
.tagcloud a { margin: 1px; }Surrounded with comment block:
/* .tagcloud a { margin: 1px; } */Or just comment out one statement:
.tagcloud a { margin: 1px; /* color: red; */ }Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] How to enable Cloud-Appearance?You should use
'show_title_text' => false(https://github.com/rickard2/utcw/blob/master/CONFIG.md#show-title-text), settingtitleto an empty string will just make it revert to the default value.Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] My cloud no longer has large/small fontsYour theme is overriding the size of the tag cloud, due to a bug in UTCW this hasn’t been visible to you before.
This is defined in your style.css:
http://www.adrienneasherrealtor.com/wp-content/themes/theme1516/style.css
Search for
font-size:11px!importantand you will find it.Try removing
!importantand see if that brings back the sizes, otherwise remove the line all togheter.Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Basic appearance > TitleThere seems to be a bug in the UI, I will look into it and get back to you.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] How to enable Cloud-Appearance?Seems you sorted it out, just comment again if you need any assistance.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Feature: Showing Tag Cloud using PHPYes, how to do that is described here: http://wordpress.org/plugins/ultimate-tag-cloud-widget/other_notes/#Theme-integration-/-Shortcode
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Tags Not Clickable LinksIt seems you might have disabled links, go to the advanced appearance tab and check “Show links”
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] New updates breaks everything@karenratte Ok that line is trying to include another file with code, there might be something missing in your installation for some reason.
Do you have the file ultimate-tag-cloud-widget/src/Config/RenderConfig.php?
I would try reinstalling it from scratch, I’m using the plugin on my own site without problems and I can’t really figure out why one of the includes doesn’t work for you.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] New updates breaks everythingLine 70 in which file? What version of WP and PHP are you using?
Forum: Plugins
In reply to: [Humans Dot Txt] filter output of blog authors by role?Hi Vernon
Right now there isn’t any way to filter which type of authors gets added to humans.txt – and I realize that you maybe don’t want to show off your administrator account names either.
I’ll see if I can add a configuration option for it, I don’t think that a template tag is enough in this case..
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] New updates breaks everythingThe reason for changing it is that the classes did not match the regular WordPress tag cloud which made standard themes loose the tag cloud styling.
I’m sorry if this change has caused problems for you.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] widget class change! :(Well I did this so that the markup/class structure would match the regular tag cloud, so that if you had your theme style the regular tag cloud in a particular way, the same styles would apply for my plugin.
I tried to state this in the upgrade notice and changelog. Sorry if it has caused problems for you..
I don’t think your issue is with Ultimate Tag Cloud, it does not do anything for sidebars, it’s just used within them.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Tag title as hover textSorry, that isn’t possible right now. Will make a note of it and see if I can add it in the next version.
Forum: Plugins
In reply to: [Ultimate Tag Cloud Widget] Show Tags in ListJust released a beta version with this feature in it and I would love it if you could try it out.