I forgot to mention I using this version: Version: 3.5.8
Printable View
I running 1.3.8a and I've got SSU 3.7.1.
I've got a problem with attributes.... the attribute info for a product is lost after I add it to the cart. When I click on an item in the shopping cart, I go back to the product info page, but none of the attributes are pre-selected.
If SSU is off when I try this, I go back to the product info page with the attributes set to match what I picked when I added the item to the cart initially.
I'm not sure where/how it gets lost, because the info is still there when I checkout.
Any suggestions? is this a bug or did I botch the install?
Thanks,
-Tommy
I have never paid too much attention to the attributes selected on the product info page so I'm not so sure. But can you post or pm me 2 links displayed on your browser address bar when you go back from the shopping cart to the product info
1. with ssu enabled
2. with ssu disabled
Please tell me if such a problem with SSU has been ever discussed:
When "Main page opens with category" is chosen you can't go to next page (nor any page in pagination)
In link we have:
"?sort=20a&page=2" that seems to miss category name.
When I click on category name - it works - category name is at the beginning.
"dla-niej?sort=20a&page=2"
You may have a look at tesor.pl.
Am I doing something wrong? Please help me how to fix it.
It would be tpl_modules_product_listing.php I guess...
Here is the code:
<?php
/**
* Module Template
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_modules_product_listing.php 3241 2006-03-22 04:27:27Z ajeh $
* UPDATED TO WORK WITH COLUMNAR PRODUCT LISTING 04/04/2006
*/
include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_PRODUCT_LISTING));
if((!isset($is_index_listing) || $is_index_listing) && $listing_split->number_of_rows > 0) {
if (isset($is_index_listing) && $is_index_listing){
echo $index_title;
$index_title = '';
}
?>
<div class="productListing">
<?php
// only show when there is something to submit and enabled
if ($show_top_submit_button == true) {
?>
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_ADD_PRODUCTS_TO_CART, BUTTON_ADD_PRODUCTS_TO_CART_ALT, 'class="submit1" name="submit1"'); ?></div>
<br class="clearBoth" />
<?php
} // show top submit
?>
<?php if ((!isset($is_index_listing) || !$is_index_listing) && ($listing_split->number_of_rows > 0) && ( (PREV_NEXT_BAR_LOCATION == '1') || (PREV_NEXT_BAR_LOCATION == '3') ) ) {
?>
<div class="productsListingTopNumber" class="navSplitPagesResult back"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></div>
<div class="productsListingListingTopLinks navSplitPagesLinks forward"><?php echo TEXT_RESULT_PAGE . ' ' . $listing_split->display_links(MAX_DISPLAY_PAGE_LINKS, zen_get_all_get_params(array('page', 'info', 'x', 'y', 'main_page'))); ?></div>
<br class="clearBoth" />
<?php
}
?>
<?php
/**
* load the list_box_content template to display the products
*/
if (PRODUCT_LISTING_LAYOUT_STYLE == 'columns') {
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');
} else {// (PRODUCT_LISTING_LAYOUT_STYLE == 'rows')
require($template->get_template_dir('tpl_tabular_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_tabular_display.php');
}
?>
<?php if ((!isset($is_index_listing) || !$is_index_listing) && ($listing_split->number_of_rows > 0) && ((PREV_NEXT_BAR_LOCATION == '2') || (PREV_NEXT_BAR_LOCATION == '3')) ) {
?>
<div class="productsListingBottomNumber navSplitPagesResult back"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></div>
<div class="productsListingListingBottomLinks navSplitPagesLinks forward"><?php echo TEXT_RESULT_PAGE . ' ' . $listing_split->display_links(MAX_DISPLAY_PAGE_LINKS, zen_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></div>
<br class="clearBoth" />
<?php
}
?>
Hiya,
So if you are having trouble at login in when SSU is turned on, resulting in 404 being returned, it appears to be due to password protection on the admin and/or payment module causing the page not to be found.
Is it possible for a fix for this bug? Great module still.
=> For a smooth install :
1) Backup all your files;
2) Apply the mod code changes on copies of your files;
3) Upload all files;
4) Go to Visit admin→extras→ssu manager (you should see notice saying that the database patches have been applied)
5) Check your .htaccess contents, just run ssu_check.php. And copy the contents there.
Yellow, how do I check my current version? I still have got to solve this cache problem.
Ian
Hey Yellow - thanks a TON for this plugin, it's been working great for me for a while now.
I have a need now that's coming down from on-high and I'm a little stumped.
I need to parse something extra out of the query string. Specifically, I'd like to be able to add /po/blahblah to my urls and have po => blahblah show up in my get/request variable. With traditional rewrites I could do this, but Simple SEO adds a few layers in between and I don't want to wreck anything.
Any ideas?