View Single Post
  #224  
Old 04-28-2012, 12:24 AM
 
candc candc is offline
 

eXpert
  
Join Date: Jul 2009
Location: UK
Posts: 292
 

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

Quote:
Originally Posted by PhilJ
Fix for v4.5.0 homepage new and random products...

ability_get_new_products.php
ability_get_random_products.php

Before...

Code:
foreach($products as $key=> $product) $products[$key]["taxed_price"] = func_query_first_cell("SELECT price FROM $sql_tbl[pricing] WHERE variantid > 0 AND productid=".$product["productid"]);

Insert...

Code:
foreach($products as $key=> $product) $products[$key]["product"] = func_query_first_cell("SELECT product FROM $sql_tbl[products_lng_en] WHERE productid=".$product["productid"]); foreach($products as $key=> $product) $products[$key]["descr"] = func_query_first_cell("SELECT descr FROM $sql_tbl[products_lng_en] WHERE productid=".$product["productid"]);


More fixes to follow I expect...

Am I looking at the right files, in root. Mine are encrypted or whatever the term is.

I see you have enabled quick view on the demo now, did it work for you, or was a fix needed?
__________________
Ver 4.4.4 Gold
Ability
BCSE Pre Order
BCSE Global Product Options
BCSE Stock Notify
CDSEO Pro
MM OPC - Gave up with it
Altered Cart OPC
XMobile
Powered by EWD

Ver 4.4.4 Gold
Ability
BCSE Pre Order
BCSE Global Product Options
BCSE Stock Notify
CDSEO Pro
Altered Cart OPC
XMobile
Powered by EWD
Reply With Quote