Hello
I've just found your awesome module and I'm evaluating what I can do.
I have few questions:
1. Can two filter modules with different set of search fields exist on same page?
I tried to duplicate module it and it works, but it always show the same fields.
It could probably be done with "Module Class Suffix" CSS but I'm looking if there is option to select which fields to display in module.
2. I'm trying to create Alpha (A-Z) index.
To have letters links on a top: # - A - B - C - ... - Y - Z - ALL
Clicking on B letter would filter articles with titles which starts with letter B. Clicking on # would filter titles which starts with numbers, and clicking on ALL would show all.
If this is possible, could you suggest what would be the best way to do it?
One of ideas is to to create custom field dropdown list with # A B C ... as values, and show it in filter as checkboxes, with labels hidden and styled with CSS.
But this adds to extra time to editing articles because for each article extra editing would be needed to select correct letter.
Much better way to do it would be to create for loop which would render letters as links and attach search function to it search onclick
Something like this:
echo '[url=index.php?letter=#]#[/url] | '; echo '[url=index.php?letter=ALL]ALL[/url] | '; for($i=65; $i<=90; $i++) { $letter = chr($i); echo '[url=index.php?letter='.$letter.']'.$letter.'[/url] | '; }
So this would search for first letter in article title.
Problem is that in not good with javascript and ajax, so I 'd appreciate any help.
Sorry if I posted duplicate questions, I tried to look for answers on this forum but couldn't find relevant topic.
Thanks
Best Regards