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
  #221  
Old 04-27-2012, 09:54 PM
 
elmirage001 elmirage001 is offline
 

X-Wizard
  
Join Date: Apr 2007
Posts: 1,964
 

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

Quote:
Originally Posted by PhilJ
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
Hi Phil, Thank you so much for doing this!

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
__________________
X-Cart GoldPlus v4.7.12 | reBOOT (reDUX) Template v4.7.12.9 | Always The Best
Reply With Quote
  #222  
Old 04-27-2012, 10:11 PM
 
elmirage001 elmirage001 is offline
 

X-Wizard
  
Join Date: Apr 2007
Posts: 1,964
 

Default 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:
<form action="{$payment_script_url|default:$payment_data .payment_script_url}" method="post" name="checkout_form" id="checkout_form">

<input type="hidden" name="paymentid" id="paymentid" value="{$cart.paymentid}" />
<input type="hidden" name="action" value="place_order" />
<input type="hidden" name="{$XCARTSESSNAME}" value="{$XCARTSESSID}" />
<input type="hidden" name="payment_method" id="payment_method" value="{$payment_method|default:$payment_data.paym ent_method_orig|escape}" />

{capture name=dialog}

{if $active_modules.Discount_Coupons}
<div class="grid_{if $active_modules.XAffiliate eq "Y"}6{else}10{/if} alpha">
{include file="modules/One_Page_Checkout/summary/coupon.tpl"}
</div>
{/if}
To:
Quote:
{capture name=dialog}

{if $active_modules.Discount_Coupons}
<div class="grid_{if $active_modules.XAffiliate eq "Y"}6{else}10{/if} alpha">
{include file="modules/One_Page_Checkout/summary/coupon.tpl"}
</div>
{/if}

<form action="{$payment_script_url|default:$payment_data .payment_script_url}" method="post" name="checkout_form" id="checkout_form">

<input type="hidden" name="paymentid" id="paymentid" value="{$cart.paymentid}" />
<input type="hidden" name="action" value="place_order" />
<input type="hidden" name="{$XCARTSESSNAME}" value="{$XCARTSESSID}" />
<input type="hidden" name="payment_method" id="payment_method" value="{$payment_method|default:$payment_data.paym ent_method_orig|escape}" />
__________________
X-Cart GoldPlus v4.7.12 | reBOOT (reDUX) Template v4.7.12.9 | Always The Best
Reply With Quote

The following user thanks elmirage001 for this useful post:
PhilJ (04-28-2012)
  #223  
Old 04-27-2012, 10:40 PM
 
yages yages is offline
 

eXpert
  
Join Date: Sep 2004
Location: Australia
Posts: 332
 

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

How do you activate this mod
The x-cart onepage check still shows
__________________
yages
x-cart version 4.5.5
Reply With Quote
  #224  
Old 04-28-2012, 12:24 AM
 
candc candc is offline
 

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

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

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

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?
__________________
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
  #225  
Old 04-28-2012, 04:21 AM
 
PhilJ PhilJ is offline
 

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

Default 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 Paul, fixed, files updated. Can use the coupon - TEST - in the demo.
Quote:
How do you activate this mod
The x-cart onepage check still shows
  1. Download the files
  2. Upload to skin/ability/modules/One_Page_Checkout
  3. Clear template cache
Quote:
Am I looking at the right files, in root. Mine are encrypted or whatever the term is.

If you don't have the developers license, they'll be encoded, just get in touch for updated files.
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
candc (04-28-2012)
  #226  
Old 04-28-2012, 05:02 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 'quick view' addon on v4.5.0

Just replace skin/ability/custom/addons/quick_view/quick_view.tpl with attached.
Attached Files
File Type: tpl quick_view.tpl (1.9 KB, 8 views)
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
candc (04-28-2012)
  #227  
Old 04-28-2012, 02:30 PM
 
yages yages is offline
 

eXpert
  
Join Date: Sep 2004
Location: Australia
Posts: 332
 

Default 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
__________________
yages
x-cart version 4.5.5
Reply With Quote
  #228  
Old 04-28-2012, 03:56 PM
 
PhilJ PhilJ is offline
 

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

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

Quote:
How do you reduce the width of one page check out from 100% to a smaller pixel size
You can set the checkout container to fixed or fluid width in the Ability settings.
__________________
xcartmods.co.uk
Reply With Quote
  #229  
Old 04-28-2012, 07:51 PM
 
stevekem stevekem is offline
 

Senior Member
  
Join Date: Dec 2006
Posts: 111
 

Default 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!
__________________
X-Cart Gold v4.4.1
Reply With Quote
  #230  
Old 04-29-2012, 05:59 AM
 
PhilJ PhilJ is offline
 

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

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

Quote:
Do you have have details at all regarding your new template coming out in Mid-Late May?

The new CSS template is to be called 'Adapt' and the main features are...
  • Responsive layout that adapts to all screen resolutions (320px minimum) and devices including mobile/tablet/desktop, removing the need for a separate mobile store template
  • Multiple column layouts with source ordering, various SEO improvements
  • Tighter integration with the X-Cart JS/CSS speedup tools, increasing load time
  • New multi-level category menus, new advanced minicart, new dynamic search, feeds etc.
  • As with Ability, lots of settings to play around with
I'm hoping to release it sometime in July, around the time X-Cart v4.5.1 is released.

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.
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
JacksmithxD (04-29-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 02:17 AM.

   

 
X-Cart forums © 2001-2020