Re: Fast and Easy Checkout for Zen Cart
Hello I have enabled the one page checkout. I want Shipping on the left and payment on the right side by side, which it is by default. Under Shipping I want the discount div (which I have edit the checkout.css to:
PHP Code:
div.discountForm{float:left;width:49%;}
I cannot get this to work. Then I also want the checkout total box/checkoutorderform under the payment which is aligned to the right
PHP Code:
div#checkoutOrderForm{float:right;width:49%;}
So the problems I am having is getting the discount form under the shipping and the checkout order form under the payment div. I also want the discount form and checkout order form side by side like the shipping and payment divs are.
Re: Fast and Easy Checkout for Zen Cart
Hi,
I'm going round in circles now. :frusty:
I just upgraded my test site from 1.3.9d to 1.3.9h. Everything seemed to be working except that when I try to log in as a customer I enter the name and password and then the login screen just redraws but goes nowhere -- and there's no error message.
I assumed something about the upgrade had upset FEC, which was installed and working fine on 1.3.9d, so I tried renaming the includes/extra_configures/checkout.php file, as mentioned in the docs, to disable FEC. Didn't help.
I then tried running FEC's uninstall.sql file and then the install.sql file. Well, it uninstalled FEC just fine (it's no longer appearing in the admin under Configuration) but the install file won't complete. It says...
Quote:
1062 Duplicate entry 'Permanent Account Holders Only' for key 'query_name'
in:
[INSERT INTO ACSquery_builder ( query_id , query_category , query_name , query_description , query_string ) VALUES ( '', 'email,newsletters', 'Permanent Account Holders Only', 'Send email only to permanent account holders ', 'select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS where COWOA_account != 1 order by customers_lastname, customers_firstname, customers_email_address');]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
I'm sure that is meaningful to somebody, but to me it just means it didn't work.
Any clues as to where to go from here?
Rob
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Ms_X
Hello everyone,
I have installed this addon and I tried to change it for my shop... I have the latest version of ZC. I faced 2 problems at the moment:
on the checkout confirmation page under Delivery/Shipping Information-->Shipping Method is Ship within Australia (standard) is chosen but below under Shopping Cart Contents I see only price of the item, tax and total. The shipping cost is calculated in total price but not shown there like shipping costs 10 $...and one more thing I just found is when i want to change shipping method,I have shosen another one,but shopping cart contents after that are same and under shipping method there old choice is still listedhow should i fix that?I followed the instructions in file order_total_class_edit but there is no effect from it. Can anyone help me please?
do I need to install previous sl updates?
I can't find file checkout confirmation file for this addon.where can I find the file anyone has any idea?thanks:-)
Hi MS_X I saw you had also posted this question on the NUMINIX forums and I found the answer posted here, but under a different section. It's not directly related to the FEC add on, but kind of is...lol. AJEH provided the answer, basically you need to go into your Admin/Modules/Shipping and make sure that ot_shipping is turned to "true". For some reason it got turned to false when FEC got installed and I was having the same problem as you! Hope it helps. Original answer here: http://www.zen-cart.com/forum/showthread.php?t=178220
Cheers,
Zack
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
rstevenson
Hi,
I'm going round in circles now. :frusty:
Not to worry. I've stopped going 'round in circles. I used phpMyAdmin to clear that table, then re-ran the install sql file. It worked. But along the way I got so many things mixed up that I just made a new DB and imported up-to-date info from my live site (which I had to do anyway.) So I reinstalled the various mods, including FEC, and everything's fine now.
Rob
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
rstevenson
Not to worry. I've stopped going 'round in circles. I used phpMyAdmin to clear that table, then re-ran the install sql file. It worked. But along the way I got so many things mixed up that I just made a new DB and imported up-to-date info from my live site (which I had to do anyway.) So I reinstalled the various mods, including FEC, and everything's fine now.
Rob
Don't cha hate when that happens.. **sigh**
Glad you got it all worked out..:smile:
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
DivaVocals
Don't cha hate when that happens.. **sigh**
The frustrating thing is that if I did this six times in a week, I'd be an expert. But I only have two sites and I work on them as seldom as possible, so it's like starting all over again every time.
I'd better redo my wholesale site too while I still know what I'm doing. :laugh:
Rob
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
rstevenson
I'd better redo my wholesale site too while I still know what I'm doing. :laugh:
Rob
:laugh::laugh: Indeed.. Hurry!! :laugh::laugh:
Re: Fast and Easy Checkout for Zen Cart
So anything on this? I Numinix still developing? Also Why dont I get the registration confirmation email on their support site?
Re: Fast and Easy Checkout for Zen Cart
I downloaded it and got the registration confirmation less than two weeks ago. Did you check your spam folders, as they suggest?
Rob
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
new2u
I was also thinking, my site is a 3 column design. Would this be able to override the left and right sidebars?
Instructions for killing the columns is at the bottom of the module documentation at /fec/documentation.html
Code:
If you want to disable the left and right columns on the checkout, add the following code:
Code:
//add page names that you wantto disable left and right columns
$center_column_only = array('checkout'); // add any other page names here separated by commas, no spaces
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,$center_column_only) ) {
$flag_disable_right = true;
$flag_disable_left = true;