Page 1 of 2

Hey Toby! Can you please add this to the site??

Posted: Thu Jun 13, 2013 2:32 pm
by shawn13
I was on seabreeze and I noticed they have a filter drop down menu right above the threads for brands. Its super handy. Are you able to add this to kiteforum?

http://www.seabreeze.com.au/forums/Stan ... le/Review/

Re: Hey Toby! Can you please add this to the site??

Posted: Thu Jun 13, 2013 5:09 pm
by Toby
I will check if it is possible for this forum software.

Re: Hey Toby! Can you please add this to the site??

Posted: Thu Jun 13, 2013 5:35 pm
by shawn13
Thanks! The consideration is very much appreciated :thumb:

Re: Hey Toby! Can you please add this to the site??

Posted: Sat Jun 15, 2013 12:00 am
by dyyylan
All it is is a search query (for example, JP Australia links to http://www.seabreeze.com.au/forums/Stand-Up-Paddle/Review/?search=JP%20Australia)

So all you would have to do is add a dropdown list of the brands that would go to
www.kiteforum.com/search.php?keywords=[brand here]

pretty simple if you just wanted to duplicate their functionality

Re: Hey Toby! Can you please add this to the site??

Posted: Sat Jun 15, 2013 12:25 am
by dyyylan
Since I have nothing better to do, here you go Toby:

Code: Select all

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
	$('#brand-search').change(function() {
		brand = $('#brand-search').val();
		if (brand.length == 0) {
			return false;
		}
		searchUrl = 'http://www.kiteforum.com/search.php?keywords=';
		window.location = searchUrl + brand;
	});
});	
</script>

<select id="brand-search">
	<option value=""></option>
	<option value="Liquid Force">Liquid Force</option>
	<option value="Best">Best</option>
	<option value="Cabrinha">Cabrinha</option>
	<option value="etc...">etc...</option>
</select>

Re: Hey Toby! Can you please add this to the site??

Posted: Sat Jun 15, 2013 12:55 am
by Toby
Thx guys, will pass it on

Re: Hey Toby! Can you please add this to the site??

Posted: Sat Jun 15, 2013 2:14 am
by shawn13
This is great.

I noticed on the second hand section of kiteforum you can sort by brand. Maybe that would help too?

Re: Hey Toby! Can you please add this to the site??

Posted: Sat Jun 15, 2013 12:37 pm
by Toby
Your wish is my command!

Done!

Ok like this?

Re: Hey Toby! Can you please add this to the site??

Posted: Sat Jun 15, 2013 8:49 pm
by shawn13
Thanks Toby thats pretty awesome.

+1 for great customer service! :jump:

Re: Hey Toby! Can you please add this to the site??

Posted: Sun Jun 16, 2013 7:51 am
by eldadgold
Toby (& dyyylan) - :thumb: