View Single Post
  #335  
Old 07-18-2012, 06:16 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Ability Template v4.4.x

Quote:
1. The Next and Previous function no longer works. Recommend turning off till Phil can update.


In ability_next_prev.php

Replace...

Code:
$mem_list = func_query("SELECT pr.productid, pr.product, mem.membershipid FROM $sql_tbl[products_categories] AS cat, $sql_tbl[products] AS pr LEFT JOIN $sql_tbl[product_memberships] AS mem ON mem.productid = pr.productid WHERE cat.categoryid = '$product_info[categoryid]' AND pr.productid = cat.productid AND pr.forsale='Y' ORDER BY pr.product");

With...

Code:
$mem_list = func_query("SELECT pr.productid, pr.product, mem.membershipid FROM $sql_tbl[products_categories] AS cat, $sql_tbl[products_lng_en] AS pr LEFT JOIN $sql_tbl[product_memberships] AS mem ON mem.productid = pr.productid WHERE cat.categoryid = '$product_info[categoryid]' AND pr.productid = cat.productid ORDER BY pr.product");


Or just replace the entire file with the attached.

Quote:
2. Detailed Image on roll over. When a product has two or more images. Only works in "Featured Product" on home page, no other locations work. On Phil's radar to correct.

Fix for detailed image rollover...

skin/ability/custom/addons/addons_common.tpl

Replace...

Code:
{if $config.Ability_Template.abi_addon_image_preview eq "Y" && (($main eq "catalog" && $cat eq "0") || $main eq "search")}

With...

Code:
{if $config.Ability_Template.abi_addon_image_preview eq "Y" && (($main eq "catalog" && $cat eq "0") || $main eq "search" || $main eq "catalog")}
Attached Files
File Type: php ability_next_prev.php (1.3 KB, 7 views)
__________________
xcartmods.co.uk
Reply With Quote