![]() |
Re: X-Cart Ability Template v4.4.x
Quote:
skin/ability/customer/main/per_page.tpl |
Re: X-Cart Ability Template v4.4.x
Hi Phil,
I have just noticed that since upgrading to the latest version of xcart the maps on the contact us page aren't showing anymore. Not sure if this occurred after upgrading the ability theme with the latest patches or when upgrading xcart? I have checked the contactus.tpl file and it is calling the map.tpl file but it isnt showing anything up. Any ideas? |
Re: X-Cart Ability Template v4.4.x
Hi David,
The map script was updated recently to use Google Maps API v3, thereby not requiring an API key. So in contactus.tpl I replaced... Code:
{if $config.Ability_Template.abi_addon_display_map eq "Y" && $config.Ability_Template.abi_addon_display_map_key ne ""} With... Code:
{if $config.Ability_Template.abi_addon_display_map eq "Y"} Ensure you have a valid company address in general settings > company. |
Re: X-Cart Ability Template v4.4.x
Quote:
Thanks mate I see you have done that. Now the maps still don't show but there is now a little box that says "Enter Your Location" http://www.robertsonpackaging.com/images/support/screener-contact-us.png When I type a post code in to that location it takes me to google maps and shows directions to our location which is set in general settings -> company |
Re: X-Cart Ability Template v4.4.x
Sorted, this was missing from your common.css file...
Code:
.google_map { width: 100%; height: 240px; } |
Re: X-Cart Ability Template v4.4.x
If you're using the Ability Template I highly recommend upgrading the included Testimonials feature to Phil's paid version Customer Testimonials Displayer. Phil was nice enough to include the displayer free but it's well worth the investment to upgrade. Thanks again Phil and I'm looking forward to your upcoming Mobile Template!
|
Re: X-Cart Ability Template v4.4.x
Is there a way to get the hover-over large images to pop-out on the homepage Featured Products display like they do in regular category lists? Right now all you get when you hover-over is that the thumbnail greys out and the magnifying glass appears.
Thx, Jason |
Re: X-Cart Ability Template v4.4.x
Is it worthwhile updating to the latest version of X-Cart (4.5.0) Phil or will it break the theme?
|
Re: X-Cart Ability Template v4.4.x
I too am hoping Ability will drop right in to the 4.5.0 , crossing fingers! I just bought a developers license 40 days ago, waiting for a stable 4.4.x is costing to much. :)
Also, can anyone who has used the custom feature of ability, please tell me how to change the background overlay on the Header and Footer. I am using the #4 preset but want only a solid color, no overlay on the header or footer. I am sure there is an easy way to make this change. Anyone???? |
Re: X-Cart Ability Template v4.4.x
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 :D
Quote:
You can get rid of the overlay in the css. skin/ability/custom/css/themes. |
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 |
Re: X-Cart Ability Template v4.4.x
Quote:
Please check to see if coupons work for you. I'm having a problem and think it might be the coupon code is now inside the form instead of being outside. Thanks again! Paul |
Re: X-Cart Ability Template v4.4.x
Hi Phil,
In opc_summary.tpl I moved the coupon code outside the form and it's working now. Original: Quote:
Quote:
|
Re: X-Cart Ability Template v4.4.x
How do you activate this mod
The x-cart onepage check still shows |
Re: X-Cart Ability Template v4.4.x
Quote:
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? |
Re: X-Cart Ability Template v4.4.x
Quote:
Thanks Paul, fixed, files updated. Can use the coupon - TEST - in the demo. Quote:
Quote:
If you don't have the developers license, they'll be encoded, just get in touch for updated files. |
Re: X-Cart Ability Template v4.4.x
1 Attachment(s)
Fix for 'quick view' addon on v4.5.0
Just replace skin/ability/custom/addons/quick_view/quick_view.tpl with attached. |
Re: X-Cart Ability Template v4.4.x
How do you reduce the width of one page check out from 100% to a smaller pixel size
|
Re: X-Cart Ability Template v4.4.x
Quote:
|
Re: X-Cart Ability Template v4.4.x
Hi Phil,
Do you have have details at all regarding your new template coming out in Mid-Late May? I am possibly interested in Ability, but wanted to see how different this new template will be before I purchase. Any details would be appreciated. Thanks! |
Re: X-Cart Ability Template v4.4.x
Quote:
The new CSS template is to be called 'Adapt' and the main features are...
It won't have quite as many features as Ability, it'll be more geared towards device compatibility, speed and SEO. Any feature suggestions are welcome. |
Re: X-Cart Ability Template v4.4.x
Quote:
Did I see something about Abilty getting a mobile template, or is this the one I am thinking of? |
Re: X-Cart Ability Template v4.4.x
I to can't wait to see the new "Adapt" as i shall be building a new site once v4.5.0 has gone stable using the new Adapt.
Id prefer to get the speed on my site and this new one sounds just the ticket, please keep us updated Phil even with a demo. I also like the checkout on Ability think a OPC is a must even better when its eye pleasing.. Thanks |
Re: X-Cart Ability Template v4.4.x
Quote:
The new Adapt template will be, Ability won't. :-) |
Re: X-Cart Ability Template v4.4.x
Hi Phil,
Can Adapt and Ability work at the same time with Adapt for mobile/tablet and Ability for desktops? |
Re: X-Cart Ability Template v4.4.x
Hey Phil,
I'm trying to integrate Commentics with your theme, I followed all the instructions in the install file but I don't see any change on the site. Should their be a new tab with comments or am I missing something? Cheers D-A |
Re: X-Cart Ability Template v4.4.x
Hello,
You probably answered this already, but how could I move the Google Translate addon into the Header? Can you point me to an older post let me know? Thanks! |
Re: X-Cart Ability Template v4.4.x
Quote:
Depending on the tabs above or below edit skin/ability/custom/addons/tabs/tabs_below.tpl Find the following code: Code:
{* Product Description *} Code:
{* Commentics *} then at the very bottom just before Code:
</div> Code:
{* Commentics *} |
Re: X-Cart Ability Template v4.4.x
Has anyone been able to install the Cart Pop-up Alert Mod to the Ability Template? I recently tried and had a lot of issues and uninstalled. Thought I would ask before moving on.
|
Re: X-Cart Ability Template v4.4.x
Quote:
Should work fine as Ability is just a skin template no core files have been changed so x-cart will still function 100% I believe. Would be worth asking Steve to install it for you if that's his module your on about or if it's the free add to cart module you could ask Phil. Both are pro at what they do. :D |
Re: X-Cart Ability Template v4.4.x
I downloaded from Phil's free mod's
|
All times are GMT -8. The time now is 12:48 AM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.