Closed (fixed)
Project:
Faceted Search
Version:
6.x-1.x-dev
Component:
General
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
14 Jan 2010 at 03:29 UTC
Updated:
23 Jul 2013 at 19:41 UTC
I need to theme the "more..." links.
In issue #292097: hide 'more options' link in keyword search block it was mentioned that a new class attribute had been added for this.
I don't see any "more..."-specific codes in the output from 6.x-1.0-beta2
Was it removed or do I need to do something to enable it?
Thanks
Steve
Comments
Comment #1
reufhaadfe commentedThis works for me.
.faceted-search-more {
Insert css code
}
Comment #2
soajetunmobi commentedOverridding theme_faceted_ui_more function in template.php to return "l(t('more...'), $path, array('attributes' =>array('class' => 'faceted-search-more')));" instead of "l(t('more...'), $path, array('class' => 'faceted-search-more')); works for me.
Comment #3
steve.m commented+1
The l() function requires the options array to be nested as in the array('attributes' =>array('class' => 'faceted-search-more')) mentioned in #2. I also had to override this theme function to make the 'more' links available to CSS.
Comment #4
grasmash commentedI'd submit a patch, but I've made other unrelated changes to this module.
regardless, line 1405 of faceted_search_ui.module (6.x-1.x-dev)
needs to be changed to:
Currently, no class is being added.
Comment #5
david lesieur commentedCommitted, thanks!