I know, but if you state that you need to remove the "old" version first (de-install) and the overwrite the "old" files via FTP with the new files the only change in the BO would be PayPal Improve instead of just PayPal.JAY6390 wrote:@i2Paq - I know exactly what you meant as it's kind of what I suggested to start with, but on second thought it makes sense to remove the old version to force the upgrade to a stable and reliable paypal mod
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
I'm not sure if these have been addressed elsewhere, but here are some issues I've been having with orders:
This is a 1.4.8 clean install.
Problem 1:
All orders come in as 'missing order'
I get notification of payments, I can filter for the orders, edit them and change them to pending/complete/whatever with no issues. Once I do this, I can see them in the store software and all is well, it just irks me that they come in as missing.
I've read some things on here about paypal and ports, but my previous store (using V1.3.0) worked just fine, so I'm not sure thats it unless the mechanism for communication with paypal has changed from 1.3.0 to 1.4.8.
Problem 2:
Missing product options in the order.
When the order comes in (as missing) I can see all the product options. Once the order is saved with a new status (pending usually) the option are gone from the order page. Also 'print invoice' does not print the options. For what i do, the options are really important.
Any idea where the options went?
This is a 1.4.8 clean install.
Problem 1:
All orders come in as 'missing order'
I get notification of payments, I can filter for the orders, edit them and change them to pending/complete/whatever with no issues. Once I do this, I can see them in the store software and all is well, it just irks me that they come in as missing.
I've read some things on here about paypal and ports, but my previous store (using V1.3.0) worked just fine, so I'm not sure thats it unless the mechanism for communication with paypal has changed from 1.3.0 to 1.4.8.
Problem 2:
Missing product options in the order.
When the order comes in (as missing) I can see all the product options. Once the order is saved with a new status (pending usually) the option are gone from the order page. Also 'print invoice' does not print the options. For what i do, the options are really important.
Any idea where the options went?
Hopefully I didn't get my vote in too late! If you're changing the title text, you should change it to "PayPal - Website Payments Standard" since that's what it's actually called.Qphoria wrote:Ok then for the final version that actually comes with 1.4.9 I'll change the text to "Paypal Standard" as opposed to just "Paypal". But I won't change it on the RC versions that I release in the RC thread. Or maybe I'll add RC4 to the title for the RC version
I noticed this:
1- after a customer buys and pays in paypal, i notice that in paypal the Item Title: is the website name not the item name.
2- let say $ is the default currancy. after a customer pays €30.19 EUR in paypal, i see that in admin under Reports > Products Purchased in item total fiels $30.19
please ignore this post if its been mentioned before
1- after a customer buys and pays in paypal, i notice that in paypal the Item Title: is the website name not the item name.
2- let say $ is the default currancy. after a customer pays €30.19 EUR in paypal, i see that in admin under Reports > Products Purchased in item total fiels $30.19
please ignore this post if its been mentioned before
ALL Templates :: 1.5.1+ Templates :: 50%-75% PRICE DROP ONLY at OpencartStuff.com
Really? you been here this long and haven't seen one of the THOUSANDS of threads about this?Maansy wrote:I noticed this:
1- after a customer buys and pays in paypal, i notice that in paypal the Item Title: is the website name not the item name.
2- let say $ is the default currancy. after a customer pays €30.19 EUR in paypal, i see that in admin under Reports > Products Purchased in item total fiels $30.19
please ignore this post if its been mentioned before
Try this: New Paypal Standard Improved RC4 Sneak Peak
si i see the party already started
thanks Q and sorry if i did see the THOUSANDS of threads about this 
now i see one. keep up the great work.


now i see one. keep up the great work.
ALL Templates :: 1.5.1+ Templates :: 50%-75% PRICE DROP ONLY at OpencartStuff.com
Hi, I tried this solution but the problem is still. Does anyone know another solution?Qphoria wrote:For those getting "Error: Email to required!"
This is due to the additional alert email check adding a single "blank" email to the additional email list.
-EDIT- This also seems to be causing the "Please Wait" message on some payment modules. The error prevents the function from returning back.
Quick fix:
1. EDIT: catalog/model/checkout/order.php
2. FIND (~line 379):3. REPLACE WITH:Code: Select all
// Send to additional alert emails $emails = explode(',', $this->config->get('config_alert_emails')); foreach ($emails as $email) { $mail->setTo($email); $mail->send(); }
Code: Select all
// Send to additional alert emails $emails = explode(',', $this->config->get('config_alert_emails')); foreach ($emails as $email) { if ($email) { $mail->setTo($email); $mail->send(); } }
Many thanks
D
I have been using 1.48b for a couple of months now and I just had an issue where I created items using the copy function in the product section. Where the item was listed fine in the front end but if you went to purchase it the price value came up as 0.00 in the cart. I finally figured out where the problem was from which is the link section related products. You see you have 2 of the same named items(copied item Dark X-men Poster). I found if you selected the wrong related product (dark xmen poster) link you would have the problem where the product would have the 0.00 price in the cart.


The fix does work, but the "Special Offer" price is not considered when sorting by price. Should this be raised as a new bug?OSWorX wrote:In ../catalog/model/catalog/product.php:i2Paq wrote:I agreed, does not work on my store either.akarikuu wrote:Hello,
Sort by price seems not to work (in my shop 1.4.8b and also in demo.opencart.com)
It seems not even order by price considering it a string instead of a number?!
I found this topic: http://forum.opencart.com/viewtopic.php?f=31&t=13002 but i did not help me.
Is this a Bug?
FIND ALL SECTIONS LIKE THIS:Code: Select all
$sort_data = array( 'pd.name', 'p.sort_order', 'special', 'rating' );
Change them to be:Now sorting after price works.Code: Select all
$sort_data = array( 'pd.name', 'p.sort_order', 'special', 'rating', 'p.price' );
Should be about 5-6 places
Some things I noticed in 1.4.8b, which might be bugs, searched around the forums and didn't see anyone else post anything up about them, so I figured I'd ask here....
1) When you get an order from Canada, and they forget to add their Postal Code, you CANNOT update it in their order, you also CANNOT update it but modifying the customer; Can't update postal code for Canada address.
2) When editing an order, if you click [Save] all order options for all products ordered get deleted! (this may have already been previously covered somewhere in here by now)
1) When you get an order from Canada, and they forget to add their Postal Code, you CANNOT update it in their order, you also CANNOT update it but modifying the customer; Can't update postal code for Canada address.
2) When editing an order, if you click [Save] all order options for all products ordered get deleted! (this may have already been previously covered somewhere in here by now)
these are known limitations both are being addressed in 1.4.912oclocker wrote:Some things I noticed in 1.4.8b, which might be bugs, searched around the forums and didn't see anyone else post anything up about them, so I figured I'd ask here....
1) When you get an order from Canada, and they forget to add their Postal Code, you CANNOT update it in their order, you also CANNOT update it but modifying the customer; Can't update postal code for Canada address.
2) When editing an order, if you click [Save] all order options for all products ordered get deleted! (this may have already been previously covered somewhere in here by now)
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Hello,
I use v 1.4.8b (clean install).
I use greek language for catalog and english for admin.
I noticed that the order update emails that are sent to costumers, when I manually update their order status from sales->order->order history (check "Notify Costumer") have wrong date and time. I checked admin/model/sale/order.php line 87, i echoed variable $language->get('date_format_short') and it returned "date_format_short" instead of "d/m/Y"! For some reason the var doesnt pass.
So i changed the line to
$message .= $language->get('text_date_added') . ' ' . date('d/m/Y H:i:s', strtotime($order_query->row['date_added'])) . "\n\n"; and everything is ok.
I use v 1.4.8b (clean install).
I use greek language for catalog and english for admin.
I noticed that the order update emails that are sent to costumers, when I manually update their order status from sales->order->order history (check "Notify Costumer") have wrong date and time. I checked admin/model/sale/order.php line 87, i echoed variable $language->get('date_format_short') and it returned "date_format_short" instead of "d/m/Y"! For some reason the var doesnt pass.
So i changed the line to
$message .= $language->get('text_date_added') . ' ' . date('d/m/Y H:i:s', strtotime($order_query->row['date_added'])) . "\n\n"; and everything is ok.
I have made the change above, but I still have customers calling me and telling me that the payment process screen says please wait forever....:
My cart is hosted on godaddy, could that be the issue?
www.foodsalive.com/storefront is the site.
My cart is hosted on godaddy, could that be the issue?
www.foodsalive.com/storefront is the site.
Last edited by foodsalive on Sat Oct 30, 2010 2:18 am, edited 1 time in total.
Who is online
Users browsing this forum: No registered users and 12 guests