Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

X-Cart Ability Template v4.4.x

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #211  
Old 04-26-2012, 10:00 AM
  a1deano's Avatar 
a1deano a1deano is offline
 

X-Adept
  
Join Date: Oct 2004
Posts: 745
 

Default 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
__________________
--------------
V4.6.1
xcartmods - Reboot Template

X-cart - X-PDF

Altered Cart - Checkout one
Reply With Quote
  #212  
Old 04-26-2012, 10:26 AM
 
PhilJ PhilJ is offline
 

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

Default 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.
__________________
xcartmods.co.uk
Reply With Quote
  #213  
Old 04-26-2012, 12:19 PM
 
JacksmithxD JacksmithxD is offline
 

X-Adept
  
Join Date: Oct 2010
Posts: 400
 

Talking 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.
__________________
Xcart 4.5.2
Reply With Quote
  #214  
Old 04-26-2012, 02:12 PM
 
candc candc is offline
 

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

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

Quote:
Let me know how you get on

Working fine now

Just having a mess with all the settings.

Have you tried the "quick view", Doesn't seem to be working for me
__________________
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
  #215  
Old 04-27-2012, 12:43 AM
  David-Allan's Avatar 
David-Allan David-Allan is offline
 

eXpert
  
Join Date: Oct 2011
Location: Scotland, UK
Posts: 313
 

Default 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.
__________________
Live Version : 4.5.2
Licensed Products:
X-Cart Gold
Ability Theme
CDSEO
xCMS
Abandoned Cart
Food Packaging Scotland
Reply With Quote
  #216  
Old 04-27-2012, 04:48 AM
 
PhilJ PhilJ is offline
 

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

Default 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)"
__________________
xcartmods.co.uk
Reply With Quote
  #217  
Old 04-27-2012, 05:25 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 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...
__________________
xcartmods.co.uk
Reply With Quote
  #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
  #219  
Old 04-27-2012, 09:54 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 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());
__________________
xcartmods.co.uk
Reply With Quote
  #220  
Old 04-27-2012, 11:09 AM
 
PhilJ PhilJ is offline
 

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

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

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
Attached Files
File Type: zip Ability_Improved_OPC.zip (5.9 KB, 10 views)
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
elmirage001 (04-27-2012)
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 05:35 AM.

   

 
X-Cart forums © 2001-2020