X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Third Party Add-Ons for X-Cart 4 (https://forum.x-cart.com/forumdisplay.php?f=45)
-   -   X-Cart Ability Template v4.4.x (https://forum.x-cart.com/showthread.php?t=61776)

a1deano 04-26-2012 10:00 AM

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

PhilJ 04-26-2012 10:26 AM

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

I seem to have broken it on 4.5.0, will go through it again later as it is higlhy likely something I have done

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.

JacksmithxD 04-26-2012 12:19 PM

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

Originally Posted by PhilJ
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.


Need any help or another set of eyes let me know. :D

candc 04-26-2012 02:12 PM

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

Let me know how you get on :smile:

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

David-Allan 04-27-2012 12:43 AM

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. ;)

PhilJ 04-27-2012 04:48 AM

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)"

PhilJ 04-27-2012 05:25 AM

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)
        $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...

PhilJ 04-27-2012 07:03 AM

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

PhilJ 04-27-2012 09:54 AM

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());

PhilJ 04-27-2012 11:09 AM

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.