chriskemm
Forum Replies Created
-
Forum: Plugins
In reply to: [Query Multiple Taxonomies] Label to appear as 1st item in dropdown listI’ve then hidden the label with jQuery for accessibility, rather then deleting it from the form.
Forum: Plugins
In reply to: [Query Multiple Taxonomies] Label to appear as 1st item in dropdown listHi
I have a similar problem, if you open dropdown.html in the templates folder within the plugin you can change the form to display the taxonomy name.
<li> <label for="qmt-{{name}}">{{title}}</label> <select id="qmt-{{name}}" name="{{name}}" class="default"> <option value=''>{{title}}</option> {{{term-list}}} </select> </li>I’ve changed the value within the label to {{title}} and that works, however I would like to grab the taxonomy Menu name rather then the taxonomy name.
Forum: Plugins
In reply to: [WP Find Your Nearest] [Plugin: WP Find Your Nearest] Working Samples pleaseWorks like a charm thanks!
Yes I think it would be a great extra.
Forum: Plugins
In reply to: [WP Find Your Nearest] [Plugin: WP Find Your Nearest] Working Samples pleaseHi
I would like to just return one result the most relavent one. I know this isn’t an option (yet) but I assume you would just need to edit this in wp-find-your-nearest.php
// Reset Post Data wp_reset_postdata(); ksort($results); foreach($results as $distance=>$content){ echo $contents; }Any help would be very much appreciated.
Forum: Plugins
In reply to: [WP Find Your Nearest] [Plugin: WP Find Your Nearest] Working Samples pleaseHi Adam,
Thanks for this!
Forum: Plugins
In reply to: [WP Find Your Nearest] [Plugin: WP Find Your Nearest] Working Samples pleaseHi
The plugin looks great so far!
One question though it doesn’t detail how you get a search box on your site, have I missed this?
Chris