Home
Buy on eBid
Sell on eBid
eBid Stores
My eBid
Upgrade to Seller+ Lifetime
eBid Help
Close
Login to Your Account
eBid Community Forums - Chat & find help from others in the eBid Community
Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 37

Thread: Bulk Edit... do away with the words.. Added by Seller

  1. #11
    Forum Master FBNeNotes's Avatar
    Join Date
    Aug 2008
    Location
    Concord, North Carolina, United States
    View FBNeNotes's Feedback (+1108)
    All-About FBNeNotes
    View FBNeNotes's Listings
    Forum Posts
    1,917

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    Thanks all.. for the positive replies

  2. #12
    Forum Diehard
    Join Date
    Jan 2009
    Location
    Miramichi, New Brunswick, Canada
    View islandbuckman's Feedback (+192)
    All-About islandbuckman
    View islandbuckman's Listings
    Forum Posts
    417

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    I agree as well. I have sent a couple of emails to ebid asking if it can be removed. But, not yet. If we have more people putting their opinion here, maybe ebid will listen and remove it. Ebid is pretty good at making changes that many people want.

  3. #13
    Forum Diehard Brunwulf's Avatar
    Join Date
    Dec 2006
    Location
    Stroud, Gloucestershire, United Kingdom
    View Brunwulf's Feedback (+89)
    All-About Brunwulf
    View Brunwulf's Listings
    Forum Posts
    536

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    I agree with everyone here it should just show on items without bids.

    You can hide the "Added by text and date" with JavaScript if it really annoys you.

    For example this should work if bulk added to the bottom.

    Code:
    <script>
    function removetext(searchText, replacement, searchNode) {
        if (!searchText || typeof replacement === 'undefined') {
            return;
        }
        var regex = typeof searchText === 'string' ?
                    new RegExp(searchText, 'g') : searchText,
            childNodes = (searchNode || document.body).childNodes,
            cnLength = childNodes.length,
            excludes = 'title,link,meta,script,object,iframe';
        while (cnLength--) {
            var currentNode = childNodes[cnLength];
            if (currentNode.nodeType === 1 &&
                (excludes + ',').indexOf(currentNode.nodeName.toLowerCase() + ',') === -1) {
                arguments.callee(searchText, replacement, currentNode);
            }
            if (currentNode.nodeType !== 3 || !regex.test(currentNode.data) ) {
                continue;
            }
            var parent = currentNode.parentNode,
                frag = (function(){
                    var html = currentNode.data.replace(regex, replacement),
                        wrap = document.createElement('div'),
                        frag = document.createDocumentFragment();
                    wrap.innerHTML = html;
                    while (wrap.firstChild) {
                        frag.appendChild(wrap.firstChild);
                    }
                    return frag;
                })();
            parent.insertBefore(frag, currentNode);
            parent.removeChild(currentNode);
        }
    }
    window.onload=removetext(/(Added by the Seller on .*\(GMT\)|Added by the Seller on .*\(BST\))/,' ');
    </script>
    I would ask eBid if its ok for you to use first but i can't see why not as the edit record is still there, and if you turn off JavaScript you will see the text again in the listing.
    Last edited by Brunwulf; 7th April 2013 at 01:37 PM.
    More wine please ...

  4. #14
    Forum Saint madelaine's Avatar
    Join Date
    Jun 2003
    Location
    Highworth, Wiltshire, United Kingdom
    View madelaine's Feedback (+5872)
    All-About madelaine
    View madelaine's Listings
    Forum Posts
    11,776

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    This would make bulk edit a much more useful tool
    Madelaine

    4 shops for Cats Protection & Prospect Hospice
    My Postcard Shop
    BK Stamps for Philatelic listings
    & Yarnalong for craft patterns
    and
    Lotzabitz -anything that doesn't belong in one of the other shops.

  5. #15

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    Quote Originally Posted by madelaine View Post
    This would make bulk edit a much more useful tool
    Thanks for bringing this to my attention. I'm astonished that this hasn't been taken on board. REMOVING this feature, or at least making it conditional on not having bids, can hardly be an arduous programming job for the developers. And unless it's removed, I certainly won't want to use bulk edit.

    Crazy.
    Click for bargain auctions!

    Dropbox for 2GB of offsite storage to simplify your life. Click here, to get an extra 500MB of space!

  6. #16
    Forum Master FBNeNotes's Avatar
    Join Date
    Aug 2008
    Location
    Concord, North Carolina, United States
    View FBNeNotes's Feedback (+1108)
    All-About FBNeNotes
    View FBNeNotes's Listings
    Forum Posts
    1,917

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    Wait Wait... 2014, 2015 is ahead.

  7. #17
    Forum Saint madelaine's Avatar
    Join Date
    Jun 2003
    Location
    Highworth, Wiltshire, United Kingdom
    View madelaine's Feedback (+5872)
    All-About madelaine
    View madelaine's Listings
    Forum Posts
    11,776

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    Quote Originally Posted by johnwash1 View Post
    Thanks for bringing this to my attention. I'm astonished that this hasn't been taken on board. REMOVING this feature, or at least making it conditional on not having bids, can hardly be an arduous programming job for the developers. And unless it's removed, I certainly won't want to use bulk edit.

    Crazy.
    Good to have an informed opinion on this - it is easy for those of us who couldn't do the job to think it is simple, but you confirm this, John
    Madelaine

    4 shops for Cats Protection & Prospect Hospice
    My Postcard Shop
    BK Stamps for Philatelic listings
    & Yarnalong for craft patterns
    and
    Lotzabitz -anything that doesn't belong in one of the other shops.

  8. #18

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    Quote Originally Posted by madelaine View Post
    Good to have an informed opinion on this - it is easy for those of us who couldn't do the job to think it is simple, but you confirm this, John
    Well, remember I don't have access to the source any more than you do. So I could be wrong on this, but I doubt it. It would have to be implemented in a very strange way if it were tough.

    But I'm sure Gazza will be along shortly to explain...
    Click for bargain auctions!

    Dropbox for 2GB of offsite storage to simplify your life. Click here, to get an extra 500MB of space!

  9. #19
    Forum Saint madelaine's Avatar
    Join Date
    Jun 2003
    Location
    Highworth, Wiltshire, United Kingdom
    View madelaine's Feedback (+5872)
    All-About madelaine
    View madelaine's Listings
    Forum Posts
    11,776

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    Quote Originally Posted by johnwash1 View Post

    But I'm sure Gazza will be along shortly to explain...
    I wish I had your faith!
    Madelaine

    4 shops for Cats Protection & Prospect Hospice
    My Postcard Shop
    BK Stamps for Philatelic listings
    & Yarnalong for craft patterns
    and
    Lotzabitz -anything that doesn't belong in one of the other shops.

  10. #20

    Default Re: Bulk Edit... do away with the words.. Added by Seller

    Quote Originally Posted by madelaine View Post
    I wish I had your faith!
    Next time I'll add a suitable icon. Sarcastic snigger would now seem appropriate?
    Click for bargain auctions!

    Dropbox for 2GB of offsite storage to simplify your life. Click here, to get an extra 500MB of space!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Follow Us
New To eBid?
Register for Free