![]() |
Re: X-Cart Ability Template v4.4.x
Is anybody with Handsonweb hosting who is using this new template, id like to just checkout how fast the site is please, obviously no test orders just wish to see how quick it loads...many thanks
|
Re: X-Cart Ability Template v4.4.x
Quote:
Let me know how you get on :) I'm just in the process of testing it on v4.5.0 here and will report back. Personally I think people should wait at least a month or so before upgrading to v4.5.x, there's bound to be issues early on. |
Re: X-Cart Ability Template v4.4.x
Quote:
Need any help or another set of eyes let me know. :D |
Re: X-Cart Ability Template v4.4.x
Quote:
Working fine now :D Just having a mess with all the settings. Have you tried the "quick view", Doesn't seem to be working for me |
Re: X-Cart Ability Template v4.4.x
Hi Phil,
I know your quite busy just now testing for 4.5.0. I have a little issue with the theme were if you add more than two images the detailed images it shows them on rows of three and overlaps the text tot he right. You can see what I mean here. I have been having lots of issues with the images on this theme since I got it but have managed to get by by using just two images and changing the settings but I have never managed to get the image pop-ups to look as good as the ones in your demos with the lightbox (??) popups. Any tips with this guys would be really appreciated as its starting to do my box in. ;) |
Re: X-Cart Ability Template v4.4.x
David, try Modules > Detailed Product Images
"Number of detailed image thumbnails that must fit into the width of the thumbnail area (1-6)" |
Re: X-Cart Ability Template v4.4.x
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) Insert... Code:
foreach($products as $key=> $product) More fixes to follow I expect... |
Re: X-Cart Ability Template v4.4.x
1 Attachment(s)
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 |
Re: X-Cart Ability Template v4.4.x
Fix for dynamic product search addon on v4.5.0
ability_dynamic_search.php Replace... Code:
$res = mysql_query("select productid,product from xcart_products where forsale='Y' AND avail > 0 AND product like '%".$letters."%'") or die(mysql_error()); With... Code:
$res = mysql_query("SELECT * FROM `xcart_products` INNER JOIN xcart_products_lng_en ON xcart_products.productid = xcart_products_lng_en.productid WHERE forsale='Y' AND product like '%".$letters."%'") or die(mysql_error()); |
Re: X-Cart Ability Template v4.4.x
1 Attachment(s)
Here's a simple improvement to the layout of the one page checkout in Ability v4.5.0 - DEMO
With this mod, it's less confusing for customers and actually looks more like a one page checkout :) Just upload the attached files to skin/ability/modules/One_Page_Checkout Thanks to elmirage001 for the idea :) Edit: opc_summary.tpl updated to fix coupons |
All times are GMT -8. The time now is 09:42 PM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.