Hi Steve.
A customer of mine that still uses XF 2.2.5 asked me to display all the action buttons in list view instead of grouping those exceeding a given treshold (7, i guess) in a 'More' button with a drop-down list.
I could get this result modifying the Dataface_List_View.html file in /modules/g2/templates and changing maxcount=7 to maxcount=<some number greater than 7>, but I'm wondering if there is a better way to get the same result.
I know that in conf.ini can be added a section containing parameters for the G2 module, like this:
[modules_g2]
record_actions.size=20
top_left_menu_bar.size=20
record_subtabs.size=20
and it works
So I tried to add the following lines to the same section:
[modules_g2]
...
list_view_actions.size=20
result_list_actions.size=20
result_list_actions.maxcount=20
maxcount=20
size=20
but without success.
Can you remember if this parameter can be set in conf.ini, and how?
Thanks
Patrick