niska
Forum Replies Created
-
Forum: Plugins
In reply to: [EWWW Image Optimizer] Bypass EWWW programatically?It would be great to have a filter that I could use to return false if optimization is not needed at some point in the code. Could you maby add that in the future?
Forum: Plugins
In reply to: [W3 Total Cache] Purge Policy: "Additional pages" not workingI updated to the latest version, but Additional Pages is till not working. Am I the only one with this problem?
I’m having the same problem. Any solutions?
Forum: Plugins
In reply to: [W3 Total Cache] Problem with 0.9.2.7 and nginxIt’s still not working for me. Where can I find the nginx sample conf? I’m now using 0.9.2.8.
Forum: Fixing WordPress
In reply to: Walker_CategoryDropdown with optgroupSolved:
class Walker_CategoryDropdownCustom extends Walker_CategoryDropdown { function start_el(&$output, $category, $depth, $args) { global $wp_query; $cat_name = apply_filters('list_cats', $category->name, $category); if ($depth == 0) { $output .= "\t<optgroup class=\"level-$depth\" value=\"".$category->term_id."\""; $output .= ' label="'.$cat_name.'">'; } else { $output .= "\t<option class=\"level-$depth\" value=\"".$category->term_id."\""; $output .= '>'; $output .= $cat_name; $output .= "</option>\n"; } } function end_lvl(&$output, $depth, $args) { $output .= "</optgroup>\n"; } }What I need is to show all the categories that a post belongs to, not only one.
Any idea of how to accomplish this?
Forum: Plugins
In reply to: [Ultimate CMS] Custom Taxonomy FieldsCould you please tell me where I find Custom Taxonomy _Fields_ in Ultimate CMS? I’m unable to find it…
Forum: Plugins
In reply to: [Ultimate CMS] Custom Taxonomy FieldsWordPress version: 3.5.1
Ultimate Taxonomy Manager Version 2.0
Ultimate CMS Version 1.0.5Thank you
Forum: Plugins
In reply to: [W3 Total Cache] Problem with 0.9.2.7 and nginxSolved it tempory by downgrading to 0.9.2.4
Forum: Plugins
In reply to: [W3 Total Cache] W3 Cache 404 errorsUser is correct. It doesn’t seem to be a permission problem. Instead, it is probably a problem with the nginx conf-file.
I’m not able to submit a bug report because I have deactivated the plugin.
Forum: Plugins
In reply to: [W3 Total Cache] W3 Cache 404 errorsI also have the same 404 error using nginx. Using 9.2.7.
Forum: Plugins
In reply to: [W3 Total Cache] post-sitemap.xml and other sitemap files doesn't get cachedI’ve already enabled “Cache feeds: site, categories, tags, comments”. Do I need to do something more?
I’ve checked the cache/page_enhanced folder and I’m unable to find any post-sitemap-files. The “feed” folder is there, so it is cached as expected.
Forum: Plugins
In reply to: [W3 Total Cache] How to clear cache of a custom taxonomy?It seems as _cache_dir is no longer available, so I had to hard code the path.
w3_rmdir(‘/www/domain.com/public_html/wp-content/cache/page_enhanced/www.domain.com/gratis’);
If anyone has a better idea of how to delete a custom file/directory, please let me know.
Forum: Plugins
In reply to: [W3 Total Cache] How to clear cache of a custom taxonomy?I just updated to 3.5.1 and my solution (above) now gives an error. What could be wrong?
Forum: Plugins
In reply to: [W3 Total Cache] Using Database cache to cache specific sql queriesAnyone?