Community Forums

[vQmod] Paypal Standard improvements [1.5.1.1]

Put any free vQmod scripts here.
vQmod details

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby JNeuhoff » Tue Oct 11, 2011 2:38 pm

CanadaPleco wrote:The fixes are not working for me. Always brings up paypal screen with $0.00 from different computers and what not as well. I have re-uploaded all the core paypal files and still nothing.


Your site works fine.
J.Neuhoff - MHC Web Design

OpenCart Override Engine (Version 5.3)
allowing addons to override and modify core methods, language files and templates (see also FAQ)
User avatar
JNeuhoff
 
Posts: 2113
Joined: Tue Dec 04, 2007 7:38 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby markman-b » Tue Oct 11, 2011 3:00 pm

JNeuhoff wrote:
markman-b wrote:Thanx for the vQmod.

Any idea if you can fix this problem: http://forum.opencart.com/viewtopic.php?f=113&t=40181

by moderating your vQmod?


There are a number of rounding issues with OpenCart, I reported a similar bug here, but it was never picked by Daniel or Q, as far I know the rounding bug is still there,



This makes it even more strange, this issue has never been picked up. There is another vQmod ""PayPal Total Only" which avoids the rounding problems, but this vQmod has a negative side effect. It does not show the products and prices separately in the PayPal cart. In the end this could scare customers off and could result in cancelled orders.

The cause of these rounding differences between OC and PP is clear to me. OC calclates the ordertotals by using 4 decimals, where PayPal does the job by only using 2.

As long as there will be differences in the totals being calculated by OC and PayPal, I can't use the invoices generated by OC. Sending invoices which differ from the actual PayPal payments is not-done!

Any idea what to do to convince Daniel or Qphoria to pick it up???
OC version 1.5.4.1
markman-b
 
Posts: 233
Joined: Wed Aug 24, 2011 11:13 am

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby Maansy » Wed Oct 19, 2011 2:15 pm

I am using opencart 1.5.1.3 and vqmod manager
I check the error log in the vqmod manager and I noticed this:


---------- Date: 2011-10-18 21:46:42 ~ IP : 213.155.29.160 ----------
REQUEST URI : /index.php?route=checkout/confirm
MOD DETAILS:
modFile : /home/xxxx/public_html/opencartstuff.com/vqmod/xml/bugfixes-pp-standard.xml
id : Opencart 1.5.1.1 core file modifications for Paypal Standard bugfixes
version : 1.5.1.1
vqmver : 1.2.3
author : mhccorp.com
SEARCH NOT FOUND (ABORTING MOD): $this->data['discount_amount_cart'] -= $this->currency->format($total, $currency, FALSE, FALSE);

----------------------------------------------------------------------


---------- Date: 2011-10-18 21:50:15 ~ IP : 66.211.170.66 ----------
REQUEST URI : /index.php?route=payment/pp_standard/callback
MOD DETAILS:
modFile : /home/xxxx/public_html/opencartstuff.com/vqmod/xml/bugfixes-pp-standard.xml
id : Opencart 1.5.1.1 core file modifications for Paypal Standard bugfixes
version : 1.5.1.1
vqmver : 1.2.3
author : mhccorp.com
SEARCH NOT FOUND (ABORTING MOD): $this->data['discount_amount_cart'] -= $this->currency->format($total, $currency, FALSE, FALSE);

----------------------------------------------------------------------

the order gets processed thu.
Any idea on how to fix this?
ALL Templates :: 1.5.1+ Templates :: 50%-75% PRICE DROP ONLY at OpencartStuff.com
User avatar
Maansy
 
Posts: 930
Joined: Wed Jun 23, 2010 10:04 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby JNeuhoff » Wed Oct 19, 2011 2:53 pm

Any idea on how to fix this?


Yes, use Opencart 1.5.1.1. I have neither written nor tested it for 1.5.1.3, the latter version is more than a bugfix release and has some significant changes done to the Opencart frame.
J.Neuhoff - MHC Web Design

OpenCart Override Engine (Version 5.3)
allowing addons to override and modify core methods, language files and templates (see also FAQ)
User avatar
JNeuhoff
 
Posts: 2113
Joined: Tue Dec 04, 2007 7:38 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby Maansy » Thu Oct 20, 2011 12:27 pm

JNeuhoff wrote:
Any idea on how to fix this?


Yes, use Opencart 1.5.1.1. I have neither written nor tested it for 1.5.1.3, the latter version is more than a bugfix release and has some significant changes done to the Opencart frame.


Great answer and great support. Keep up the great work ;)
ALL Templates :: 1.5.1+ Templates :: 50%-75% PRICE DROP ONLY at OpencartStuff.com
User avatar
Maansy
 
Posts: 930
Joined: Wed Jun 23, 2010 10:04 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby marcelwoo » Mon Oct 31, 2011 2:09 pm

to make it work with opencart 1.5.13, do this:

open the xml file and change:
Code: Select all
$this->data['discount_amount_cart'] -= $this->currency->format($total, $currency, FALSE, FALSE);


to

Code: Select all
$this->data['discount_amount_cart'] -= $this->currency->format($total, $currency, false, false);


Enjoy ;)
"We help each other to grow". That's the opencart community!

All free mods
Home Based Ebay business Opportunity(not ads)
User avatar
marcelwoo
 
Posts: 291
Joined: Mon Mar 28, 2011 5:45 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby Maansy » Mon Oct 31, 2011 8:27 pm

marcelwoo wrote:to make it work with opencart 1.5.13, do this:

open the xml file and change:
Code: Select all
$this->data['discount_amount_cart'] -= $this->currency->format($total, $currency, FALSE, FALSE);


to

Code: Select all
$this->data['discount_amount_cart'] -= $this->currency->format($total, $currency, false, false);


Enjoy ;)


With give it a go later. Thanks mate :)
ALL Templates :: 1.5.1+ Templates :: 50%-75% PRICE DROP ONLY at OpencartStuff.com
User avatar
Maansy
 
Posts: 930
Joined: Wed Jun 23, 2010 10:04 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby JNeuhoff » Fri Nov 25, 2011 5:03 pm

Here is the version which I use on my Opencart 1.5.1.3 websites.
Attachments
opencart1513-bugfixes-pp-standard.xml.zip
(1.44 KiB) Downloaded 122 times
J.Neuhoff - MHC Web Design

OpenCart Override Engine (Version 5.3)
allowing addons to override and modify core methods, language files and templates (see also FAQ)
User avatar
JNeuhoff
 
Posts: 2113
Joined: Tue Dec 04, 2007 7:38 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby marcelwoo » Fri Dec 02, 2011 8:30 am

Bug Report! If the product is priced $0(or customers use reward points) and they need to choose a shipping way other than free shipping, when you are directed to paypal, only an entity with a weird name(Your Store Name - Order ID - Customer's Name) is shown. Yet there is no such bug with the original paypal standard module. Check the attached images for the details:

bug.jpg
bug.jpg (59.53 KiB) Viewed 1501 times




original mod-01.jpg
original mod-01.jpg (38.86 KiB) Viewed 1501 times
"We help each other to grow". That's the opencart community!

All free mods
Home Based Ebay business Opportunity(not ads)
User avatar
marcelwoo
 
Posts: 291
Joined: Mon Mar 28, 2011 5:45 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby Renato Frota » Mon Dec 19, 2011 5:19 am

Line 111

<search position="before"><![CDATA[?php $i = 1; ?>]]></search>


shouldn't it be

<search position="before"><![CDATA[<?php $i = 1; ?>]]></search>


???
Renato Frota
 
Posts: 59
Joined: Wed Aug 31, 2011 5:21 am

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby JNeuhoff » Mon Dec 19, 2011 12:03 pm

Renato Frota wrote:Line 111

<search position="before"><![CDATA[?php $i = 1; ?>]]></search>


shouldn't it be

<search position="before"><![CDATA[<?php $i = 1; ?>]]></search>


???


Yes, you are right, still works though.
J.Neuhoff - MHC Web Design

OpenCart Override Engine (Version 5.3)
allowing addons to override and modify core methods, language files and templates (see also FAQ)
User avatar
JNeuhoff
 
Posts: 2113
Joined: Tue Dec 04, 2007 7:38 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby Maansy » Sun Apr 08, 2012 6:10 pm

do i need to use this .xml file still needed with oc 1.5.2.2?
ALL Templates :: 1.5.1+ Templates :: 50%-75% PRICE DROP ONLY at OpencartStuff.com
User avatar
Maansy
 
Posts: 930
Joined: Wed Jun 23, 2010 10:04 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby webpie it. » Sun Apr 08, 2012 6:39 pm

Yes can i also get the answer if this is needed for 1.5.2.1
Regards

Chris
webpie it.
 
Posts: 374
Joined: Mon Jan 31, 2011 11:28 am

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby JNeuhoff » Sun Apr 08, 2012 6:50 pm

Maansy wrote:do i need to use this .xml file still needed with oc 1.5.2.2?


Yes, it is still needed for 1.5.2.1 (there is no 1.5.2.2 yet!). Below is the version I have just modified for 1.5.2.1, haven't tested it yet, though I am certain it will work fine.
Attachments
bugfixes-pp-standard.xml.zip
Paypal Standard modifications
(1.36 KiB) Downloaded 87 times
J.Neuhoff - MHC Web Design

OpenCart Override Engine (Version 5.3)
allowing addons to override and modify core methods, language files and templates (see also FAQ)
User avatar
JNeuhoff
 
Posts: 2113
Joined: Tue Dec 04, 2007 7:38 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby webpie it. » Sun Apr 08, 2012 6:54 pm

Thanks man!

Massively appreciated will test asap and give feedback.

You are a star on this!
Regards

Chris
webpie it.
 
Posts: 374
Joined: Mon Jan 31, 2011 11:28 am

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby Maansy » Sun Apr 08, 2012 7:50 pm

JNeuhoff wrote:
Maansy wrote:do i need to use this .xml file still needed with oc 1.5.2.2?


Yes, it is still needed for 1.5.2.1 (there is no 1.5.2.2 yet!). Below is the version I have just modified for 1.5.2.1, haven't tested it yet, though I am certain it will work fine.

when i said 1.5.2.2 it means i have the latest patch for 1.5.2.1 installed.

thanks for the quick response mate.
am i the only one wondering why daniel or Q dont implement this fix into the core?
ALL Templates :: 1.5.1+ Templates :: 50%-75% PRICE DROP ONLY at OpencartStuff.com
User avatar
Maansy
 
Posts: 930
Joined: Wed Jun 23, 2010 10:04 pm

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby daaniacom » Wed May 02, 2012 6:50 pm

Hi I am using 1.5.1.3 and used the vqmod posted here.

In my store, I use rounded price for all products with no decimel point. After using this module, the discount shows decimal value against discount value on paypal screen. Is there any way that i can round off the discounts and set the discount value without decimal?
daaniacom
 
Posts: 3
Joined: Wed May 02, 2012 5:57 am

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby srunyon1 » Fri Jun 15, 2012 5:30 am

does this work in 1.5.1.3?
It doesn't seem to make a difference on my site.
srunyon1
 
Posts: 232
Joined: Thu Jan 28, 2010 7:03 am

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby srunyon1 » Fri Jun 15, 2012 5:51 am

JNeuhoff wrote:Here is the version which I use on my Opencart 1.5.1.3 websites.

when using this file for 1.5.1.3
after confirming the order I get this error
Code: Select all
Notice: Undefined variable: discount_amount_cart in /home1/zigzterc/public_html/shop/catalog/view/theme/default-black/template/payment/pp_standard.tpl on line 23


I copied a new pp_standard.tpl into the directory and still get the same.
srunyon1
 
Posts: 232
Joined: Thu Jan 28, 2010 7:03 am

Re: [vQmod] Paypal Standard improvements [1.5.1.1]

Postby srunyon1 » Fri Jun 15, 2012 6:33 am

Did this fix get put into 1.5.3?
srunyon1
 
Posts: 232
Joined: Thu Jan 28, 2010 7:03 am

PreviousNext

Return to vQmods

Who is online

Users browsing this forum: IsItFast and 8 guests

Hosted by Arvixe Web Hosting