Welcome, Guest ( Customer Panel | Login )




 All Forums
 VPCart Forum
 VP-ASP 7.0 Questions
 Odd characters
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

chrisredco
VP-CART Super User

282 Posts

Posted - January 06 2011 :  13:03:10  Show Profile  Visit chrisredco's Homepage  Reply with Quote
Am running V7.01. I've noticed that sometimes on International orders, in both my ADMIN page and the email printout for an order, I get odd characters for the shipping method. Here is an example:

USPS First-Class Mail<sup>®</sup> International Package**

Any thoughts on how to remove these characters?

Genesistra
Starting Member

USA
1 Posts

Posted - January 13 2011 :  11:24:16  Show Profile  Reply with Quote
Having a very similar problem:

USPS Express Mail<sup>&reg;</sup> International Flat Rate Envelope [US$33.69]

Googling the issue it seems that all e-commerce engines are having the same issue due to new rates for USPS international shipping...

James H. Boudreau
Go to Top of Page

chrisredco
VP-CART Super User

282 Posts

Posted - January 16 2011 :  11:17:46  Show Profile  Visit chrisredco's Homepage  Reply with Quote
Got this fix from Suppport here. It has fixed it.

I have made the following change at

uspostalinterface.asp at line 298

service=Replace(service,"&lt;sup&gt;&amp;reg;&lt;/sup&gt;","")

This has corrected the problem.

Go to Top of Page

Data0999
Starting Member

USA
46 Posts

Posted - January 21 2011 :  10:09:00  Show Profile  Visit Data0999's Homepage  Reply with Quote
We've been having the same issues but the code change at line 298 doesn't seem clear. Is the following line replacing an existing line or placed somewhere?

service=Replace(service,"<sup>&reg;</sup>","")

Thanks,
Dave
Go to Top of Page

support
Administrator

4679 Posts

Posted - January 24 2011 :  03:15:39  Show Profile  Visit support's Homepage  Reply with Quote
Hi Dave,

If you are still having an issue may be an idea to post a ticket in the support helpdesk for the guys to have a look for you.

https://helpdesk.vpasp.com

Thank you.

Cam Flanigan
VP-ASP Cart Support

Follow us on Twitter:
http://www.twitter.com/vpasp
Go to Top of Page

Lori Titus
VP-CART New User

144 Posts

Posted - September 13 2011 :  13:50:04  Show Profile  Visit Lori Titus's Homepage  Reply with Quote
Could you supply more exact directions on where to place the code? Line 298 does not seem a logical place to put something like that in my version.

The Internet's #1 supplier of honey and beeswax.
Go to Top of Page

savvymedias
VP-CART New User

191 Posts

Posted - October 15 2012 :  13:50:20  Show Profile  Visit savvymedias's Homepage  Reply with Quote
I still have the following:

Shipping Method USPS Priority Mail<sup>®</sup> International


I changed:

if Intshippingcount>0 then
for i = 0 to intshippingcount -1
if lcase(service) = lcase(intshippingmethods(i)) then
intshippingprices(i) = intshippingprices(i) + postage
exit sub
end if
next
end if


To this:

if Intshippingcount>0 then
for i = 0 to intshippingcount -1
if lcase(service) = lcase(intshippingmethods(i)) then
intshippingprices(i) = intshippingprices(i) + postage
'Use the official name from USPS.
'Remove <sup></sup> tags from the service name.
tempmethods(i) = Service
tempmethods(i) = replace(tempmethods(i),"<sup>","")
tempmethods(i) = replace(tempmethods(i),"</sup>","")
exit sub
end if
next
end if
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000
0 Item(s)
$0.00