Tema
Forum Replies Created
-
Forum: Reviews
In reply to: [Colorful Categories] Looks GREAT, but threw a Parse errorOkay,
I found the problem: not supported syntax in php 5.3-.
Fixed.Forum: Reviews
In reply to: [Colorful Categories] Looks GREAT, but threw a Parse errorHello AL Guevara,
Don’t see any problem on this line. I think it’s only to you. Try to delete and download the plugin again.
Forum: Plugins
In reply to: [Colorful Categories] Categories coming to verticallyHello Gopal,
You should check your theme which adds extra styles to the plugin design. But think this line (added to your theme styles.css) can solve the problem:
ul.colorful-categories li { width: auto; }
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Additional filter requestThanks! :)))
Forum: Plugins
In reply to: [Colorful Categories] Not able to change the category colorNo, 4.5.3 completely supported. You have to go inside the code and check. Probably one of the other installed plugins create problems/conflicts with the current one.
Forum: Plugins
In reply to: [Colorful Categories] Not able to change the category colorHi, as I wrote is not necessary to press the “Apply” button. When you selected the color and clicked outside the box or on pressed the button “Current color” – plugin sends the request to update the color. Try to select the color and press on the “Current color”… then refresh the page.
Forum: Plugins
In reply to: [Colorful Categories] Not able to change the category colorHi verdeii,
What button do you press exactly? Changes applies when you press on the “Current color” button or outside the box to select the colour.
Forum: Reviews
In reply to: [Colorful Categories] Great but where is the category ID?Check new version of the colorful categories plugin. I added compatibility with the WordPress term meta. All the values will be stored in your termmeta database table.
Forum: Plugins
In reply to: [Mail Bank - #1 Mail SMTP Plugin for WordPress] CSS BugAgain and the same…
.message { z-index: 9999; color: #ffffff !important; font-size: 12px; position: fixed; }
Do you really think that class “message” is enough unique and not used in the other themes/plugins? ??
Please add some prefix to the all class names… or at least try to rename most common names.
Thanks.
Forum: Plugins
In reply to: [WP Realtime Sitemap] Sitemap does not work any morePlugin have compatibility problems with the latest versions of PHP (5.6+). You have to re-check the code. For example this part:
function WPRealtimeSitemap() { //constructor
Warning: WPRealtimeSitemap has a deprecated constructor.
Forum: Plugins
In reply to: [Colorful Categories] Color randomly changing when create new categoryI found that browser may cache colors… Will be fixed in the upcoming version.
Thanks for reporting!
Forum: Plugins
In reply to: [Colorful Categories] How to choose colorsThis filter is only to change the default array of colours which will be applied to a new categories/tags.
If you want to change the colour – open the page to edit categories/tags and look for the column “Color”.
Forum: Plugins
In reply to: [Colorful Categories] Color randomly changing when create new categoryHello jleung1994,
I’ll check this.Forum: Plugins
In reply to: [Mail Bank - #1 Mail SMTP Plugin for WordPress] CSS Bugnot fixed.
WP Mail Bank 1.31Forum: Plugins
In reply to: [Revision Control] Infinite loop – errorRelated issue:
$default = $this->option($post->post_type, 'per-type')
returns -1. Since this is numeric value you do the following:
$keep = $new;
and the do a check:
while ( count($items) > $keep ) {
but -1 always will be less than count($items)!
Probably this problem comes from my new custom post type which was added after your plugin initialization.