Re: Fast and Easy Checkout for Zen Cart
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.
Re: Fast and Easy Checkout for Zen Cart
If anyone has this same problem, I fixed it with this:
/includes/classes/order.php
added
Code:
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:
Code:
$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.
Re: Fast and Easy Checkout for Zen Cart
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? :]
Re: Fast and Easy Checkout for Zen Cart
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
Re: Fast and Easy Checkout for Zen Cart
Hai everybody, i am a new member to forums, so i am intereseted
and want to gain knowledge on this topics..........................thank u
Re: Fast and Easy Checkout for Zen Cart
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.
Re: Fast and Easy Checkout for Zen Cart
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.
Re: Fast and Easy Checkout for Zen Cart
I have been trying to download Fast and Easy Checkout for Zen Cart 1.8.3 but I have been getting an error from the website everytime I try to download it. Anyone else experiencing this? http://www.numinix.com/zen-cart-modu...t-for-zen-cart
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
ryanb4614
use firefox
Re: Fast and Easy Checkout for Zen Cart
Anyone help me with turning of left sidebox during checkout, signup, login?