Tema
Forum Replies Created
-
Forum: Plugins
In reply to: [Colorful Categories] Subcategory count and exclusionHello,
It’s possible to implement using the filter “colorful_categories_get_terms”:
add_filter('colorful_categories_get_terms', function($args){
$args['parent'] = 'parent_category_id';
return $args;
});Forum: Reviews
In reply to: [Colorful Categories] does not work on 2023 and 2024 themesHello,
It works as described – as the WordPress widget.
Unfortunately, 2023 and 2024 themes don’t support widgets.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Infinite loop with special conditionsOkay, thanks!
Forum: Plugins
In reply to: [Colorful Categories] different theme for tagsHello,
you can change the style in the widget settings (the option “Theme”).
Forum: Plugins
In reply to: [Colorful Categories] This will appearHi,
you have to update to the latest version 2.0.17.Forum: Plugins
In reply to: [Colorful Categories] Limit the plugin only to CategoriesHi,
you can define this with the filter “colorful_categories_taxonomies”.Forum: Plugins
In reply to: [Colorful Categories] This will appearHi,
you can use the filter “colorful_categories_term_text” to change the output.Forum: Plugins
In reply to: [Relevanssi - A Better Search] Empty term performanceThanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Empty term performanceOkay, but can this be somehow disabled? I.e. just don’t start the query and return nothing if the search string is empty.
Forum: Plugins
In reply to: [Colorful Categories] Plugin + Active Filters widgetHello,
I think yes, this is possible. But requires code changes to the theme (functions.php).
Forum: Plugins
In reply to: [Colorful Categories] Changing hover colorsHi kilmandjaro,
have you tried this?.colorful-categories a:hover { background-color:#00a3ac !important; color:#000000; }
- This reply was modified 4 years, 5 months ago by Tema.
Forum: Plugins
In reply to: [Colorful Categories] Changing hover colorsHello,
if you want to change all list items to the same background, then yes, it’s possible with the custom CSS.Up.
Hi, finally I would say this is the error because even this code leads to the fatal error:
add_action( 'init', function () { wp_insert_post(..); });
Quite normal case – creating posts inside the ‘init’ hook with the default priority. However even it throws the error message.
Thanks.
Forum: Plugins
In reply to: [Zippy] Error 504 Gateway Time-out when the server processes a packetHello,
you have to check your server error logs because it can be a thousand different reasons why it returns the error message.
Usually this happens because the archive is too large along with the very limited resources of the webserver.
Forum: Plugins
In reply to: [Zippy] hierarchy and admin barHi alx359,
thanks for the report!
>> Noticed that when unzipping back, page hierarchy is not restored. Can this be fixed?
Page hierarchy will be fixed in the next release.
>> The ‘zippy – zip’ entry in the admin bar is always there, but I’d prefer an uncluttered bar. Is it feasible to make it contextual, or move it with a hook to the Tools menu, for example?
This also will be added wit the next release.