View Single Post
  #218  
Old 04-27-2012, 07:03 AM
 
PhilJ PhilJ is offline
 

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

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

Fix for products RSS feed on v4.5.0

ability_rss_products.php

Replace..

Code:
$result = mysql_query("SELECT * FROM `xcart_products` WHERE forsale='Y' ORDER BY `add_date` DESC LIMIT $limit");

With...

Code:
$result = mysql_query("SELECT * FROM `xcart_products` INNER JOIN xcart_products_lng_en ON xcart_products.productid = xcart_products_lng_en.productid WHERE forsale='Y' ORDER BY `add_date` DESC LIMIT $limit");

Or just replace with the file attached, which also uses the correct image URLs, instead of image.php
Attached Files
File Type: php ability_rss_products.php (2.5 KB, 2 views)
__________________
xcartmods.co.uk
Reply With Quote