Hi
Apologies, this is a bit long winded, and not a fault with your add-on but I was hoping you might be able to point me in the right direction.
I have installed the SNAF add on on a development site using Zen Cart 1.5.0 and all went well, thanks a lot.
I have a live site using 1.3.8a and the previous column grid add-on.
I had previously had a third party write a small amendment for me which allowed me to set up some products so that the price was not displayed on the listing pages, instead there is a link which says "Click for Price" which then takes the user to the product page, where the price can be displayed as normal. The live site is
http://www.thegolfcabin.co.uk/golf-balls and look at any of the Taylormade brand products.
I have set up an additional product field called product_is_nolist and the code that was amended in product_listing.php was in the if statement in the code below
Code:
case 'PRODUCT_LIST_PRICE':
if($listing->fields['product_is_nolist']=='1'){
$lc_price = '<a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . (($_GET['manufacturers_id'] > 0 and $_GET['filter_id']) > 0 ? zen_get_generated_category_path_rev($_GET['filter_id']) : ($_GET['cPath'] > 0 ? zen_get_generated_category_path_rev($_GET['cPath']) : zen_get_generated_category_path_rev($listing->fields['master_categories_id']))) . '&products_id=' . $listing->fields['products_id']) . '">click for price</a>' . '<br />';
}
else{
$lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
}
$lc_align = 'right';
$lc_text = $lc_price;
When I try to add the above to the new product-listing.php from the new add-on, it seems to break things, i.e. no products are displayed and the right hand column and footer dont appear.
I hope this is clear and that you dont mind me asking. Possibly something about the above is not compatible with 1.5.0. Any pointers would be appreciated.
Thanks.