Zen Cart Logo
Forums / All Other Contributions/Addons / Fast and Easy Checkout

Fast and Easy Checkout

Views: 550,599

Results 961 to 980 of 2,177
16 Jul 2010, 04:45
#961
larf2k avatar

larf2k

New Zenner

Join Date:
Jun 2010
Posts:
16
Plugin Contributions:
0

Fast and Easy Checkout

I love FEC! What a great tool and so easy!

I have a problem, though: it seems that ever since I have loaded FEC, the automated checkout email that is send to the vendor has changed. Now it has omitted the item number. Does this sound like FEC had any hand in changing the way this is constructed?

If not, any ideas where to look to fix this problem?

Thanks in advance for any advice.

19 Jul 2010, 14:31
#962
larf2k avatar

larf2k

New Zenner

Join Date:
Jun 2010
Posts:
16
Plugin Contributions:
0

Re: Fast and Easy Checkout

If anyone has this same problem, I fixed it with this:

/includes/classes/order.php
added

function getProductId($intProductId) 
	{
		global $db;
		
		$sql = "select products_image from products where products_id = '" .$intProductId. "' limit 1";
		$res = mysql_query($sql);
		
		$row = mysql_fetch_assoc($res);
		//print_r($row);
		return str_replace('-','/',str_replace(array("img_small/", ".JPG"),'',$row['products_image']));
	}

and then around line 800, added it the sql array:

   $sql_data_array = array('orders_id' => $zf_insert_id,
                              'products_id' => zen_get_prid($this->products[$i]['id']),
                              'products_model' => $this->products[$i]['model'],
                              'products_name' => $this->products[$i]['name'],
                              'products_price' => $this->products[$i]['price'],
                              'final_price' => $this->products[$i]['final_price'],
                              'onetime_charges' => $this->products[$i]['onetime_charges'],
                              'products_tax' => $this->products[$i]['tax'],
                              'products_quantity' => $this->products[$i]['qty'],
                              'products_priced_by_attribute' => $this->products[$i]['products_priced_by_attribute'],
                              'product_is_free' => $this->products[$i]['product_is_free'],
                              'products_discount_type' => $this->products[$i]['products_discount_type'],
							  'product_code' => $this->getProductId($this->products[$i]['id']),
                              'products_discount_type_from' => $this->products[$i]['products_discount_type_from'],
                              'products_prid' => $this->products[$i]['id'])

Hope this helps someone. It seems that FEC does not add the product code to the order table.

19 Jul 2010, 15:45
#963
khopek avatar

khopek

Totally Zenned

Join Date:
Aug 2006
Location:
portlandish, oregon
Posts:
795
Plugin Contributions:
0

Re: Fast and Easy Checkout

I actually had to remove [disabling in admin didn't stop the problems] all the FEC code because it messed up my entire ordering/checkout process with v1.3.9d. :[

PayPal Pro stopped talking to ZenCart. I'd receive no info whatsoever in regards to payment.
Product attributes stopped showing in order screen, even though the customers selected the color, size, etc... when they ordered.
Only the first product in an order [minus attributes] would show in order screen.
When I disabled FEC in admin, it would just show a blank checkout_success page. The CSS for FEC was still being used, ergo the fully removing all code.

I don't know if anyone else was having similar issues, but thought I'd put it out there in case it helps. Does anyone know if FEC is going to be updated soonish? :]

19 Jul 2010, 23:12
#964
activeworkwear avatar

activeworkwear

New Zenner

Join Date:
Jul 2010
Posts:
3
Plugin Contributions:
0

Re: Fast and Easy Checkout

How I am so grateful to people who produce software and share it.

Not only has zencart saved me lots financially with its easy to use platform but implementing the simple numinix gateway was just as easy.

Many thanks

John
http://www.active-workwear.com

22 Jul 2010, 04:32
#965
paceman avatar

paceman

Banned

Join Date:
Jul 2010
Location:
singapore
Posts:
1
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hai everybody, i am a new member to forums, so i am intereseted
and want to gain knowledge on this topics..........................thank u

22 Jul 2010, 14:10
#966
larf2k avatar

larf2k

New Zenner

Join Date:
Jun 2010
Posts:
16
Plugin Contributions:
0

Re: Fast and Easy Checkout

Does anyone have any ideas for changing the order in which the order total is calculated? I want the shipping to be calculated LAST after discount coupons and group pricing. I currently have a 30% volume buyer discount to any purchases above $500, but the shipping is calculated BEFORE that discount, which is not what I need. I've been poking around the ot_group_pricing, tpl_checkout_stacked.php, and order_total.php, but I can't for the life of me figure out how to achieve this.

I tried changing the sort order of the order total modules in the admin panel to no avail. I believe that is merely the order in which they are displayed.

27 Jul 2010, 05:51
#967
anworks avatar

anworks

New Zenner

Join Date:
Dec 2007
Posts:
19
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hello all! This has been a problem for some time and I am tired of people calling asking what it wrong! I have been trying to figure it out for about 6 hours and gone through almost every page on this thread (took awhile) :lamo:

In the checkout process when it gets to shipping method there is nothing selected. If you try to select the shipping method it just loops the page and once again nothing is selected. Right now I just have free shipping installed but if I add other shipping modules it does the same thing and no shipping method ever gets selected. Becuase I only have one shipping method I have been able to get away with it but its driving me crazy. If i disable FEC the shipping methods will work. Any ideas are greatly appreciated.

27 Jul 2010, 18:54
#970
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: Fast and Easy Checkout

Anyone help me with turning of left sidebox during checkout, signup, login?

03 Aug 2010, 11:38
#971
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: Fast and Easy Checkout

What all has to be done to intergrate google checkout with fec?

06 Aug 2010, 15:24
#972
shihabukp avatar

shihabukp

New Zenner

Join Date:
Jun 2010
Posts:
2
Plugin Contributions:
0

Re: Fast and Easy Checkout

xzistance:

I think I figured out the issue. I only had 'Checkout Without Account Only' marked as 'true' and not 'Checkout Without Account' as well.

I suppose the configuration confused me, but it seems that it'll allow multiple entries with the same email address in to the customers tbl as long as both of those are marked 'true'.

If they aren't, you'll get that account validation error.

I have done both are true (Checkout Without Account Only and Checkout Without Account' but still i getting same error, plz help.

08 Aug 2010, 00:20
#973
zc_mode avatar

zc_mode

New Zenner

Join Date:
Aug 2010
Posts:
10
Plugin Contributions:
0

Re: Fast and Easy Checkout

I noticed that the function updateForm() in /includes/templates/Your_Template/jscript/jquery/jquery_checkout.php won't be loaded automatically, because the website won't be refreshed when I checked another USPS shipping option. So I changed file name jquery_checkout.php to jscript_checkout.php and put it into /includes/modules/pages/checkout/ then it works! Even though issue has been solved, I am still wondering why? any words would be appreciated!

08 Aug 2010, 17:58
#974
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: Fast and Easy Checkout

I have fast and easy checkout working the only problem is at the checkout page, click on the change shipping address or change billing address... when the grey box opens up the loading screen just keeps circulating and never does anything, any ideas?

08 Aug 2010, 22:39
#975
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: Fast and Easy Checkout

Fixed about problem, it was with my seo mapping. BIG problem. 3 customers cannot checkout when they use the safari browser, the click "confirm order" and it goes to a blank screen. And I am not recieving the order. Please advise.

08 Aug 2010, 22:58
#976
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hello I have just launched my new site, 5 orders were lost. I followed up with the customers (using recover cart) and they reported they are using apple computers. When they hit confirm order the screen goes blank. On my end I am not seeing any orders and their credit cards are not being charged. So there is an compatibility error with FEC and safari anyone know of a fix?

08 Aug 2010, 23:07
#977
kim avatar

kim

Obaa-san

Join Date:
Jun 2003
Posts:
26,590
Plugin Contributions:
0

Re: Fast and Easy Checkout

Moderator's note - separate threads merged here. Please don't post in multiple places.

08 Aug 2010, 23:21
#978
creinold avatar

creinold

Zen Follower

Join Date:
Sep 2008
Location:
North Highlands, California 95660
Posts:
287
Plugin Contributions:
0

Re: Fast and Easy Checkout

ryanb4614:

Anyone help me with turning of left sidebox during checkout, signup, login?

Add this to application_top

//add page names that you want to 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 = false;
  $flag_disable_left = true;
}
09 Aug 2010, 00:26
#979
creinold avatar

creinold

Zen Follower

Join Date:
Sep 2008
Location:
North Highlands, California 95660
Posts:
287
Plugin Contributions:
0

Re: Fast and Easy Checkout

Kim:

Moderator's note - separate threads merged here. Please don't post in multiple places.

The merge moved this out of the template section were the post originated from. Drove me nuts trying to find it. Thanks... ;)

09 Aug 2010, 00:27
#980
creinold avatar

creinold

Zen Follower

Join Date:
Sep 2008
Location:
North Highlands, California 95660
Posts:
287
Plugin Contributions:
0

Re: Fast and Easy Checkout

Okay for all who is having problems with the Shipping and Billing button not working, I figured out why mine wasn't working. It had a problem with an SEO addon I installed from CEON.

CEON_URI Mapping... Here's the fix:

Login to admin then go to Modules --> Ceon URI Mapping (SEO) Config

Scroll down to the bottom to "Excluded Files"

and put in: /fec/fec_change_new_address.php

That will solve the problem with the change shipping and billing address buttons not working! =)