Results 1 to 10 of 216

Hybrid View

  1. #1
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,567
    Plugin Contributions
    74

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    I didn't see a UPC field in the Turbo Lister CSV file.

    Does it not work with having the entire weight in Weight Major? The next update includes the dimensions as well and converts metric. If it's having problems I will split them into major and minor.

    The image handling uses the same function as Google and uses medium images. I'll change it to the Large image file for eBay and other Auction websites.

  2. #2
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,567
    Plugin Contributions
    74

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    v0.95 EBAY EXPORTER

    1. code optimization;

    Contains some of the updates referred to recently in this thread including weight major/minor and large image files.

  3. #3
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    Quote Originally Posted by numinix View Post
    I didn't see a UPC field in the Turbo Lister CSV file.

    Does it not work with having the entire weight in Weight Major? The next update includes the dimensions as well and converts metric. If it's having problems I will split them into major and minor.

    The image handling uses the same function as Google and uses medium images. I'll change it to the Large image file for eBay and other Auction websites.
    The field that ebay uses for search for detail information for DVDs, CDs, Books, etc is UniqueIdentifier this field can contain upc, isbn or even text but that's the field I was hoping that the upc/isbn can be populated with to get eBay to include detail description.

    Thanks!

  4. #4
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    It would be great if Included Categories supports category id since this will avoid confusion/conflict.

    Sometimes we have categories like toys-active play and pretend and play -active play. If I just enter active play, there is no way to differentiate which active play category I want. There is possibility to have duplicate category names but each category has a unique id so that would be better if the functionality is there to support category id.

    Thanks!

  5. #5
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    Is there a way to change the default value for Dimension unit to IN instead of CM and default value for Weight Units to LBS instead of KGS. I know for most people outside the U.S. the default values are fine but it sure would be nice if the default values can be changed considering there are more US eBay stores and users than any other countries. Set the default value to non-US without and option to change the default is a challenge.

    Thanks!

  6. #6
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,567
    Plugin Contributions
    74

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    Sorry, the output for weight units is "1". eBay fails to say what "1" stands for, but I would guess this is lbs/in. For those who have stored their values as KG/CM, it is automatically converted to LBS/IN by the eBay Exporter.

  7. #7
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    Quote Originally Posted by numinix View Post
    Sorry, the output for weight units is "1". eBay fails to say what "1" stands for, but I would guess this is lbs/in. For those who have stored their values as KG/CM, it is automatically converted to LBS/IN by the eBay Exporter.
    So even though the DB is showing KG/CM even when I entered LBS/IN you're saying the final output is still correct?

  8. #8
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,567
    Plugin Contributions
    74

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    If you have entered LBS/IN as your units in ASA, the output in eBay will remain LBS/IN. If you are using KGS/CM, they will be converted to LBS/IN by the eBay Exporter.

    The categories function should work for all levels. It takes the same input as the product_type in the Google Base Feeder and then compares each category in the array to the category name you have indicated in the eBay Exporter to include or exclude:

    PHP Code:
     function zen_ebay_categories($words$compwords$charge) {
      if (
    $words != '') {
       
    $match 0;
       
    $compwords split(","$compwords);
       
    $words split(","$words);
       foreach (
    $words as $word) {
        foreach (
    $compwords as $compword) {
         if (
    trim(strtolower($compword)) == (trim(strtolower($word)))) {
          
    $match++;
          break;
         }
        }
       }
       if (
    $match 0) {
        return 
    true;
       } else {
        return 
    false;
       }
      } else { 
    // if $words is empty, return either true or false depending on positive or negative words
       
    if ($charge == 1) {
        return 
    true;
       } else if (
    $charge == 2) {
        return 
    false;
       }
      }
     } 

  9. #9
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,567
    Plugin Contributions
    74

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    Quote Originally Posted by BlessIsaacola View Post
    It would be great if Included Categories supports category id since this will avoid confusion/conflict.

    Sometimes we have categories like toys-active play and pretend and play -active play. If I just enter active play, there is no way to differentiate which active play category I want. There is possibility to have duplicate category names but each category has a unique id so that would be better if the functionality is there to support category id.

    Thanks!
    Let me see if I have this correct. You have categories called:

    Toys -> Active Play
    Pretend and Play -> Active Play

    In the future please differentiate sub-categories from top-level categories using a better separator.

    There are bugs with this function, but it should work sufficiently enough for listing categories.
    Last edited by numinix; 29 Aug 2007 at 08:05 AM.

  10. #10
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: eBay Turbo Lister 2.0 Exporter Support Thread

    Quote Originally Posted by numinix View Post
    Let me see if I have this correct. You have categories called:

    Toys -> Active Play
    Pretend and Play -> Active Play

    In the future please differentiate sub-categories from top-level categories using a better separator.

    There are bugs with this function, but it should work sufficiently enough for listing categories.
    Actually the category filter is hit and miss. I have also not been able to enter a 3rd level category and have it work.

    For example Clothing->shirts->men if I enter men as my category to include, it doesn't generate a feed but if enter shirts it generates a feed.

    In the scenario you created:

    Toys -> Active Play
    Pretend and Play -> Active Play

    How does the generator know I only want Active Play from category Toys -> Active Play but NOT Active Play from Pretend and Play -> Active Play. This is why I thought category id as a filter will be unique.

 

 

Similar Threads

  1. JK Order Exporter - Support Thread
    By eVelt in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 26 Sep 2015, 07:06 AM
  2. Ebay Exporter vs. Auction Lister Pro
    By sports guy in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 4 Dec 2010, 06:21 PM
  3. Turbo Lister Issues
    By lions1855 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 17 Apr 2010, 03:39 AM
  4. How do i import from Turbo Lister
    By munkeyboi in forum General Questions
    Replies: 4
    Last Post: 6 Feb 2009, 12:24 PM
  5. import turbo lister .csv file
    By dolfantimmy in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 23 Feb 2008, 09:53 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg