I couldn't set the value to 3 in page " FAQ Manager - All FAQs Page" for the sort order as it wasn't available (only 1,2,5,6,7) so I modified the configureation table with the follow sql... as the 3, 4 sort options seemed to be specified in faq_listing_desplay_order.php ok. Don't know why they had been removed in the admin config area ? Do they not work so well or something ?
UPDATE zencart.configuration SET configuration_description = 'What Sort Order Default should be used for All FAQs Display?<br />Default= 1 for FAQ Name<br /><br />1= FAQs Name<br />2= FAQs Name Desc<br />3= Category<br />4= Admin<br />6= Date Added desc<br />7= Date Added',
set_function = 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''6'', ''7''), ' WHERE configuration.configuration_id =588 LIMIT 1 ;
Neil
Can you be more specific, do I add the following code below in red into I sql section???
UPDATE zencart.configuration SET configuration_description = 'What Sort Order Default should be used for All FAQs Display?<br />Default= 1 for FAQ Name<br /><br />1= FAQs Name<br />2= FAQs Name Desc<br />3= Category<br />4= Admin<br />6= Date Added desc<br />7= Date Added',
set_function = 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''6'', ''7''), ' WHERE configuration.configuration_id =588 LIMIT 1 ;
Also:
The sort on the now working faq (the changes I just attached in previous post) lost the fcPath from url and the sort would return blank results... added a hiden field to the search filter form.
Search the file faq_listing_display_order.php for the follow line
echo zen_draw_hidden_field('main_page', $_GET['main_page']);
And add underneath it
echo zen_draw_hidden_field('fcPath', $fcPath);
Neil
What file do I change and add the following information I searched but couldn't find this information in the 3 file specified
Search the file faq_listing_display_order.php for the follow line
echo zen_draw_hidden_field('main_page', $_GET['main_page']);
And add underneath it
echo zen_draw_hidden_field('fcPath', $fcPath);