oxxyfx:
Hello Jade,
I am not sure you would be the right person to help us out with this, but I'll try...
I have installed the apple_zen template and it looks and works to my expectations. However later I added the so called FAQ manager module and we have a problem with the FAQ manager not showing up in the main window.
Please take a look at my site: http://www.nghobbies.com/cart/index.php?main_page=faqs_all - all teh FAQ's are on the bottom of the page and not on the main.
In the mean time Starcad has a more standard template and his is showing up in the right place: http://mydesertjade.com/index.php?main_page=faqs_all
It looks like this might be a template related issue - but also might be an FAQ manager related issue.
A few people and myself are kind of stuck here and we don't really know where else to go for help...
Please if you have a moment check this out - maybe it is something we are missing - and we should set by default in the template settings.
Thanks, Ox.
Arg, the designer of the mod didn't follow how zen cart template files work. Very frustrating when that happens.
ALL zen cart pages are SUPPOSED to have this before the middle content:
<div class="centerColumn">
and a </div> after the middle content.
If you look at the source of all the other pages on your site, they have that.
All of the faq pages are missing that code.
Any page that goes in includes/templates/YOUR_TEMPLATE/templates should always have that code around it. So you can open up ALL the files for that mod that are in the includes/templates/YOUR_TEMPLATE/templates folder, add <div class="centerColumn"> right after all the beginning file info:
<?php
//
// +----------------------------------------------------------------------+
// |zen-cart Open Source E-commerce |
// +----------------------------------------------------------------------+
// | Copyright (c) 2003 The zen-cart developers |
// | |
// | [url]http://www.zen-cart.com/index.php[/url] |
// | |
// | Portions Copyright (c) 2003 osCommerce |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the GPL license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available through the world-wide-web at the following url: |
// | [url]http://www.zen-cart.com/license/2_0.txt[/url]. |
// | If you did not receive a copy of the zen-cart license and are unable |
// | to obtain it through the world-wide-web, please send a note to |
// | [email protected] so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// $Id: faq_manager.php 001 2005-03-27 [email protected]
//
?>
and then add a closing div </div> right at the very end of the file.
Please let the creators of the mod know as well.