What happens if you turn off the SEO/rewrites?
What happens if you switch to the Classic Template?
What happens if you turn off the SEO/rewrites?
What happens if you switch to the Classic Template?
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
SEO - makes no difference
Classic template fixes the problem! so it is something to do with my template but not the tpl_advanced_search_default.php as i replaced the one in my template with the default and it made no difference!
I have another problem i have just found! the login page has quit working - when i enter my login info as a customer it just refreshes the page but doesn't log me in. If i add something to the cart and then checkout - the small login page shows up and logs u in fine!!!
I would turn off the SEO/rewrites and work on fixing these issues ...
I really cannot test anything as your site is down for maintenance ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Can you look at the file:
/includes/modules/pages/advanced_search/header_php.php
What do you see on the file for:
is that set to 0?Code:$sData['categories_id'] = (isset($_GET['categories_id']) ? zen_output_string((int)$_GET['categories_id']) : 0);
Can you edit the file:
/includes/templates/template_dir/common/tpl_main_page.php
and under the <body add the line:
I just want to see what it thinks that value is when on the Advanced searchCode:<?php echo 'I SEE: ' . $_GET['categories_id']; ?>
NOTE: if you have that file in your templates and overrides, then edit that one ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
NOTE: I have no issues logging in with any browser ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Edit your tpl_advanced_search_result.php
and add this piece of code to test:
Code:<fieldset class="floatingBox back"> <legend><?php echo ENTRY_CATEGORIES; ?></legend> <div class="floatLeft"><?php echo zen_draw_pull_down_menu('categories_id', zen_get_categories(array(array('id' => '', 'text' => TEXT_ALL_CATEGORIES)), '0' ,'', '1'), $sData['categories_id']); ?></div> <?php echo zen_draw_checkbox_field('inc_subcat', '1', $sData['inc_subcat'], 'id="inc-subcat"'); ?><label class="checkboxLabel" for="inc-subcat"><?php echo ENTRY_INCLUDE_SUBCATEGORIES; ?></label> <br class="clearBoth" /> </fieldset> <?php echo 'What sdata: ' . $sData['categories_id']; ?>
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!