09-20-2019 08:16 AM
Morning all, after you click on all the items you need to ship and it takes you to the next screen where you enter the weights and what not, click on upper right where it says switch back to classic label printing. This worked for me as a workaround until they get the issue fixed. Best wishes!
09-20-2019 08:21 AM
@gulfcoasthula wrote:Morning all, after you click on all the items you need to ship and it takes you to the next screen where you enter the weights and what not, click on upper right where it says switch back to classic label printing. This worked for me as a workaround until they get the issue fixed. Best wishes!
That option has been removed on many accounts.
Those without that will need to go to PP to print a label, or in the url replace "new_label" with "back_to_classic" to get the old page.
09-20-2019 08:41 AM
09-20-2019 08:45 AM
Yes, this worked for me as well.
09-20-2019 08:46 AM
"Back_to_classic" worked for me, as well. Thanks!
09-20-2019 09:04 AM
Thank you that worked for me.
09-20-2019 09:08 AM
That worked, thanks!
09-20-2019 09:57 AM
I got redirected to an alternative mailing site, & if I float over my bell icon it says "post now" instead of "ship now" WARNING
09-20-2019 10:16 AM
@spectralmedia wrote:I got redirected to an alternative mailing site, & if I float over my bell icon it says "post now" instead of "ship now" WARNING
That sounds like you probably got directed to the UK site.
09-20-2019 11:56 AM
Big question is why do we have to figure out work arounds to try to make ebay's new and Improved shipping pages.
Isn't that what I pay my $1300 a month in fees for? Since I have to find the items, list them, ship them and take full responsibility flawlessly or face their wrath. I would like something for my fees delivered reliably.
09-20-2019 12:45 PM
This works for me also
09-21-2019 06:15 AM
If you are on a Macintosh open the Script Editor in the Applications > Utilities folder.
Compile the script below as an application. Place it on the compiled application on the desktop on outside corner / edge where you can double click it while using your browser. Click eBays' button to print a label using eBay's new label system. Copy the URL of that page and double click the application.
This script will grab the URL from your clipboard and convert it to the old one and open it in Safari. If you use another browser change the name.
get the clipboard set the clipboard to (replacement of "https://gslblui.ebay.com/gslblui/new_label" by "https://gslblui.ebay.com/gslblui/back_to_classic" for the result) on replacement of oldDelim by newDelim for sourceString set oldTIDs to text item delimiters of AppleScript set text item delimiters of AppleScript to oldDelim set strtoks to text items of sourceString set text item delimiters of AppleScript to newDelim set joinedString to strtoks as string set text item delimiters of AppleScript to oldTIDs joinedString end replacement set c to get the clipboard tell application "Safari" open location c activate end tell