Re: Fast and Easy Checkout for Zen Cart
Ok, had to figure it out myself. Web host company upgraded php so defualt was 5.5. Had to tell zc 1.5.0 to use php 5.3 Did this by adding the following to my htaccess file
Code:
AddHandler application/x-httpd-php53 .php
:shocking:
Errors gone, users can now log in and use the cart as I have it set up. Until I upgrade again. :lookaroun:frusty:
Re: Fast and Easy Checkout for Zen Cart
Hi
We have upgraded to zen cart 1.5.4. using fast and easy checkout v2.1.4. We have installed eWAY Rapid 3.0. The selection bullet for eway is showing but we are unable to get the eway credit card input fields to display on the confirm order page
index.php?main_page=checkout&fecaction=null
Using firebug I can see the bullet does belong to eway with id pmt-eway_rapid
Does anything else need to be done to get the fields to display on the FEC confirm order page?
thanks
Re: Fast and Easy Checkout for Zen Cart
Never mind. I've got it sorted.
Re: Fast and Easy Checkout for Zen Cart
Yes, but for the benefit of those with precisely your symptoms, what was your problem? And what was the fix?
Re: Fast and Easy Checkout for Zen Cart
Hi
Is there any way I could get the "Company Name" box inserted into create account and guest account ..
I have spent a fair bit of money sorting out issues ,am using 1.15.3
Re: Fast and Easy Checkout for Zen Cart
Also trying to change country and county order ,if anyone able to help out
thanks
Re: Fast and Easy Checkout for Zen Cart
In the past I could have a onestep page or onepage checkout
Now it is in 3 steps. How can i go back to onepage checkout?
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Andy-C27
Hi
Is there any way I could get the "Company Name" box inserted into create account and guest account ..
I have spent a fair bit of money sorting out issues ,am using 1.15.3
Just turn on the company field in ADMIN > CONFIGURATION > CUSTOMER DETAILS
Quote:
Originally Posted by
Andy-C27
Also trying to change country and county order ,if anyone able to help out
thanks
Edit the template containing the field and you can move the country to come after the county field. We deliberately put the country field before the state field since the state field selection depends on which country has been selected.
Quote:
Originally Posted by
raimond
In the past I could have a onestep page or onepage checkout
Now it is in 3 steps. How can i go back to onepage checkout?
Fast and Easy Checkout combines the login and create account into one page and combines the shipping and payment into one page.
Fast and Easy Ajax Checkout combines the login and create account into one page and combines the shipping, payment, and confirmation into one page. It also uses Ajax on the second page to avoid page reloads.
One Page Responsive Checkout combines everything into a single page with Ajax to avoid page reloads. Note: shipping and payment selections do not appear until the user has logged in. Once logged in, they appear using Ajax without reloading the page.
Re: Fast and Easy Checkout for Zen Cart
oops why didn't I see that before lol Company name as plain as day ..Thanks ..
Re change country/county .I've been though them all and can't find the right code or file ( I have basic basic knowledge )
Which file doe sit appear in I might stand a chance then as I sit and figure things out ..thanks
Re: Fast and Easy Checkout for Zen Cart
let me just say of all the plugins i have attempted to use for zen-cart, this author does a KILLER job. thank you.
this plugin, IMHO, makes the shopping experience on zen-cart far superior.
given all of that i have found a small BUG, that i think needs addressing. say, a customer places an order and uses a coupon that has a minimum value on it. the order meets the minimum value and the coupon gets accepted. prior to submitting the order, the customer edits his cart and removes some items so that the order now no longer meets the minimum order requirement for the coupon. the customer can still continue to check out with the existing coupon as it does not get re-validated.
i have tracked the problem down to includes/modules/pages/fec_confirmation/header_php.php
if the following two lines:
Code:
$order_total_modules->collect_posts();
$order_total_modules->pre_confirmation_check();
were moved to somewhere AFTER this line of code:
Code:
$discount_coupon = $db->Execute($discount_coupon_query);
i think this problem would be resolved.
those lines are currently on lines 139 and 140; they need to be called after line 243.
best.