10-15-2017 08:24 PM
Every time eBay changes something things get worse. There used to be a 'print' option on the item listing. That disappeared and there was a way of doing it thru the feedback menu. The new feedback menu is no improvement and the abbility to print the listing has diasppeared. Does anyone know a new workaround?
02-18-2018 12:32 PM
02-19-2018 05:05 PM
I have the old purchase view, so I could follow the basic URL that the others have posted. It looks like this:
http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItemVersion&item=000000000000&view=all&tid=9999999999999
The item number replaces 000000000000 and the ebay transaction id replaces 9999999999999. I found the transaction ID in my confirmation email that eBay (not paypal) sent after payment. That was in December, about 75 days ago.
My last purchase was for two items from the same seller. Both items shared the same transaction id with a unique item number.
Because I had purchased from a multi-quantity listing that can be changed by the seller over time, the item number alone can not bring up the transaction. The transaction id is required to bring back the price and particulars associated with only the one sale.
I looked at the email confirmation for an older purchase from the same seller in October (about 150 days ago) and the transaction ID was not included in that email. The multi-quantity listing is still running, and when I visited it, eBay had a message across the top:
You bought this item | View order details
The listing below has been updated by the seller, but you can see the item you purchased.
When I clicked the "View order details", it brought up the less desirable checkout summary page.
02-19-2018 05:48 PM
04-08-2018 07:21 AM
Thanks for pointinhg out the 2 fields in the url shipscript.
If you VIEW ORDER DETAILS for an item on the Purchase History page, the url for the Order Details contains both the item number and transaction ID, so by copying both of these manually into the fetcher url you listed, it appears it will bring up the Print View for any purchased/paid item.
While rather tedious, it has worked for all the items I tried, so at least there is a reliable way to access the print view, but of course it's hard to say if it truly works for every item on eBay, and/or if it will continue to work.
04-11-2018 11:28 PM
Unforetunatly this didn't work for me. This just brings up an item cannot be displayed message. saying it might be 90 days old. I bought the item yesterday.
Anyone else found a work around?
04-11-2018 11:46 PM
Ignore that, just restarted my browser and it worked. seems it's a bit fussy with cookies etc.
Many thanks
07-03-2018 11:21 AM
I wanted to print all of my purchase history items. I copied all I wanted then pasted in Excel. Worked fine & I was able to edit to print only what I needed. It should work on the listing on an item as well?
10-16-2018 03:42 PM
10-16-2018 03:43 PM
10-17-2018 03:27 AM
Looks like eBay played with the order details page URLS a bit, but it is still possible to pull up the nicely printable "purchased item" page (the one with all the photos).
To do so requires the item number AND the transaction ID number (transID) which can be sometimes be grabbed from order confirmation emails, but most easily obtained from the order details page URL.
Go to the order details page however you get there (from Purchase History, or whatever) but it needs to be the order details page with a URL of the form
https://vod.ebay.com/vod/FetchOrderDetails?itemid=123456789012&transid=098765432109
(the order details page that loads from the links on the confirmation screen right after paying for an item is NOT the right order details page. The order details page reached from Purchase history or from the original listing page after payment should have the correct URL)
Once on the order details page, pick apart the URL, and construct a new URL of the form:
http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItemVersion&view=all&item=123456789012&tid=098765432109
where the value for "item=" is the "itemid" from the order details URL (and is just the eBay item number from the listing page, the emails, etc), and where the "tid=" value is the "transid" value from the order details URL (and may also sometimes be grabbed from URLS in purchase or sale confirmation emails)
That new URL will load the printable "Purchased Item" page.
I fixed up my old bookmarklet that takes care of that automatically.
The way it works is: get to the correct order details page, and click the bookmarklet. It will extract the numbers, construct the new URL, and load that page which you can then print.
javaXscript:(function(){if(location.href.substring(0,42)=='https://vod.ebay.com/vod/FetchOrderDetails')
{window.location.href='http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItemVersion&view=all&'+
window.location.href.match(/itemid=[0-9]*[^\&]/i)[0].replace("id","")+'&'+
window.location.href.match(/transid=[0-9]*[^\&]/i)[0].replace("rans","");}})();
Need to remove the X from javaXscript for it to work (forum mangles the code if posted without the X). Copy the code above, create a new bookmark on your browser bookmarks toolbar or in the bookmarks menu, past the code in as the location, name it PrtOrdDet (or whatever), and good to go.
The bookmarklet does nothing if not on a correct order details page. If it fails, carefully check the URL of the order details page and compare the form to the general form I posted above
https://vod.ebay.com/vod/FetchOrderDetails?itemid=123456789012&transid=098765432109
There can be other parameters mixed in there like "_trksid=", "sspagename=", or any number of other things eBay might toss in there, but they don't matter - only thing that matters is that the URL needs to start with
https://vod.ebay.com/vod/FetchOrderDetails?
and there needs to be an "itemid=[12 digits]" parameter present and a "transid=[12 digits]" parameter present.
Here is another bookmarklet that puts the URL and a page-last-modified-timestamp on the top of a page for viewing or for printing. Work on any page,. Click it once and the info is added, click it again (after printing or copying) and it goes away.
When used on an order details page the itemid and transid are displayed and can be copied and saved somewhere for future needs*
javaXscript:(function(){
var%20oad=document.getElementById('AddedURLDiv999');
if(oad!=null){oad.parentNode.removeChild(oad);}else{var%20newURLDiv=document.createElement('div');
newURLDiv.style.cssText="margin:auto;padding:0px;color:blue;width:100%;background-color:white;z-index:9999;";
newURLDiv.align='center';newURLDiv.setAttribute('ID','AddedURLDiv999');
newURLDiv.innerHTML='<b>'+document.location+'%20 %20 '+document.lastModified+'</b>';
document.body.insertBefore(newURLDiv,document.body.firstChild);
document.body.querySelector('#bpDateTimestamp').style.cssText="display:none;";%20}})();
(see above for how to install it. I name it PgTopURL and it sits on my browser bookmarks toolbar for quick access)
*Highly recommend obtaining and recording the item number and transid number. I do it for my eBay purchases and sales. Having those numbers sometimes allows pulling up the order details after links in Purchase History disappear.
10-17-2018 08:26 AM
I believe the trans id can be found on the paypal detailed history page.
10-17-2018 06:08 PM
10-18-2018 12:25 AM - edited 10-18-2018 12:28 AM
FireFox 62 has an interesting new feature to perform a screen shot. Ithink it has always had this feature, but I had never used it. The new part of this is that a user can right click on any part of the page, and 'Take a screenshot' is the lastm option on the normal right click dropdown box. Here is an example of your previous post...
https://screenshots.firefox.com/oshJ346V5Lw96UBw/community.ebay.com
It useds the clipboard. The cntrl-v paste function, adds a https url to this post. Please let me know if it shows to you ok. (I have to post this to see if I can see it).
Nevermind, there is no print function on the image display. It will also expire in 14 days.
10-18-2018 02:46 AM
10-18-2018 06:32 AM
I had hoped for more from the new FireFox option. Print capability, and especially did not like the time out. In was more testing than commenting.
Welcome to the Seller Tools board! You can chat with other members about seller tools and best practices in using them.
Tools related questions? Learn more about:
Videos: