donnytree
Forum Replies Created
-
OK, so it is just css. Thanks! I thought I was missing something in the plugin settings or something. I will keep fiddling with it. Thanks again and thanks for the great plugin!
Forum: Plugins
In reply to: [Search & Filter] Exclude Category from listYou should be able to just do:
$args['exclude'] = 2,3,4,5;That worked perfectly, thanks so much!
Forum: Plugins
In reply to: [Search & Filter] Exclude Category from listFor those of you still interested and who know PHP, I was able to exclude categories from my dropdown menu by hacking the plugin a bit.
Go to the search-filter.php file in the plugin folder, and in the generate_wp_dropdown function (line 1396), in the line BEFORE
wp_dropdown_categories($args);is called (line 1421), I entered the following code:$args['exclude'] = YOUR_CAT_NUM;, e.g.,... } $args['exclude'] = 2; $returnvar .= wp_dropdown_categories($args); return $returnvar; }If you are not using a dropdown, you probably have to add this into one of the other functions, and on updates you will need to reinsert the code, but at least it’s a work around for now.
Forum: Plugins
In reply to: [Search & Filter] default "All Categories" in dropdown menuWoo hoo, I got it. Thanks! In the generate_wp_dropdown function I added:
$args['exclude'] = 2;Thanks!
Forum: Plugins
In reply to: [Search & Filter] default "All Categories" in dropdown menuOK I think I found the right spot, line 1422 in the generate_wp_dropdown function, but now it’s putting in two dropdown menus??
Forum: Plugins
In reply to: [Search & Filter] default "All Categories" in dropdown menuSorry to bug you again, that line of code didn’t do anything when I altered it, line 1664 in search-filter.php:
$output = wp_list_categories('exclude=2');I am using a dropdown menu of choices, is there somewhere else I can look?
Forum: Plugins
In reply to: [Search & Filter] default "All Categories" in dropdown menuI will for sure, thanks!
Forum: Plugins
In reply to: [Search & Filter] default "All Categories" in dropdown menuAhh, OK, that makes sense. And thanks for the heads up about the walk_taxonomy function, I had tried to figure it out but couldn’t find the relevant line of code in your plugin files.
Thanks so much for this awesome plugin and for the quick responses!
Forum: Plugins
In reply to: [Search & Filter] default "All Categories" in dropdown menuIt also happens that the category it’s defaulting on, “featured” is one I would like to omit from the dropdown…
Thanks again!
Forum: Plugins
In reply to: [Search terms cloud] include cloud in code?In case this helps anyone else, I was able to include it programmatically by using the following code:
<?php //include widget if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Your Sidebar Name') ) : // if sidebar doesn't exist, display nothing ?> <?php endif; //end widget ?>Forum: Plugins
In reply to: [Search & Filter] default "All Categories" in dropdown menuThanks! http://bizgovhub.org/
Forum: Plugins
In reply to: [Search & Filter] Exclude Category from listJust adding in my two cents, awesome plugin! I have the same problem as others though, I need to exclude certain categories from the selection list.
This is the only plugin that seems to work the best for this since the 3.8.1 upgrade.
Thanks!
Forum: Plugins
In reply to: [Broken Link Checker] Admin timing outI just want to add that I am having the same issue, the plugin is actually bringing the site/database down for a minute when I click Update on Edit URL. I am using WP 3.7.1 and version 1.9.2 of the plugin.
I also think this is a great plugin though and hope that it can be fixed. Thanks!
Forum: Plugins
In reply to: [Enable Media Replace] Invalid argument supplied for foreach()Oh, and I am on Media Replace version 2.9.2. Thanks, and thanks for the awesome plugin!