
Originally Posted by
FloridaGoFishing
1. I noticed on my install and on several other Zen Stores that you only see FAQs in the Information sidebox. Once you click FAQs, you are directed to the page and now the FAQ Catagories sidebox appears. Is there a way to keep this sidebox open at all times?
This is controlled in includes/modules/sideboxes/faq_categories.php.
To always show the FAQ Categories sidebox, change the content of faq_categories to:
PHP Code:
//$show_faq_categories = true;
//if ($_GET['main_page']=='faqs_all' or $_GET['main_page']=='faq_info') {
// show it
//$show_faq_categories = true;
//} else {
// do not show it
//$show_faq_categories = false;
//}
//if ($show_faq_categories == true) {
$main_faq_category_tree = new faq_category_tree;
$row = 0;
$box_faq_categories_array = array();
// don't build a tree when no faq_categories
$check_faq_categories = $db->Execute("select faq_categories_id from " . TABLE_FAQ_CATEGORIES . " where faq_categories_status=1 limit 1");
if ($check_faq_categories->RecordCount() > 0) {
$box_faq_categories_array = $main_faq_category_tree->zen_faq_category_tree();
}
require($template->get_template_dir('tpl_faq_categories.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_faq_categories.php');
$title = BOX_HEADING_FAQ_CATEGORIES;
$title_link = FILENAME_FAQS;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
//}
which removes the if statement for showing the sidebox. By commenting the code out instead of removing it, you can simply remove the "//" from in front of it to turn the if statement back on.

Originally Posted by
FloridaGoFishing
2. The FAQ Catagories [more] sidebox title is a link to the page, how do you get rid of the [more] that appears?
All sidebox titles with a link have the [more] on it. Search for how to remove the [more] off of all sidebox title links - I did it on my store but can't remember off the top of my head how to do it.
Or if you want to remove the link from the FAQ Category sidebox title, in faq_categories.php, change
PHP Code:
$title_link = FILENAME_FAQS;
to
PHP Code:
$title_link = false;

Originally Posted by
FloridaGoFishing
3. If you look at my site after clcking the FAQs in the Information sidebox, the sidebox below FAQ Catagories for MailChimp now has in the title Newsletter [more] and when you click it, it goes to the FAQ page. The [more] part was not there before installing this mod and obviously the link is wrong. I have fumbled around trying to figure out how these two sideboxes are crossed to no avail.
That's an interesting conundrum and not one I've run across before. When I try to validate your site using the Firefox extension Web Developer (Firebug is another great tool to locate issues on your site) to see if I can locate the problem, there are multiple validation issues that could be causing it. I would be happy to look at it again to see if I can locate the issue after the validation issues have been resolved.