Page 187 of 357 FirstFirst ... 87137177185186187188189197237287 ... LastLast
Results 1,861 to 1,870 of 3563
  1. #1861
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Idea or Suggestion Re: Google Base Feeder Support Thread

    Quote Originally Posted by willieray25 View Post
    when i click disapproved this is all they tell me.
    Try changing the expiration date to 31. Google doesn't seem to like expirations 365 days into the future.

    See if that makes a difference...
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  2. #1862
    Join Date
    Aug 2009
    Posts
    30
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by davewest View Post
    Actually... it's not that hard! Look in the add-ons for ubc/isbn mod or click...

    This mod "Creates UPC and ISBN input field in products.php and stores the information in the products TABLE in the database." It doesn't display them, just creates what the feeder needs.

    Once you install and add all your UPC's, then you can use them as the offer ID or by them self, with a simple click in the admin googlebase feeder settings.

    The code looks like it may be looking for the auction mod as will so you may have to install it too.
    I'll check it out and get back to you. Thanks for the info!

  3. #1863
    Join Date
    Aug 2009
    Posts
    30
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by davewest View Post
    Actually... it's not that hard! Look in the add-ons for ubc/isbn mod or click...

    This mod "Creates UPC and ISBN input field in products.php and stores the information in the products TABLE in the database." It doesn't display them, just creates what the feeder needs.

    Once you install and add all your UPC's, then you can use them as the offer ID or by them self, with a simple click in the admin googlebase feeder settings.

    The code looks like it may be looking for the auction mod as will so you may have to install it too.
    Quote Originally Posted by hypercoyote View Post
    I'll check it out and get back to you. Thanks for the info!
    Yeah, this doesn't really help. All it does is add the UPC fields to the form where you fill out the product info. I was able to get that once I installed Auction Site Attributes. What I need is for Google Base Feeder to pull in those records from the table to the XML file it outputs.

  4. #1864
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by hypercoyote View Post
    Yeah, this doesn't really help. All it does is add the UPC fields to the form where you fill out the product info. I was able to get that once I installed Auction Site Attributes. What I need is for Google Base Feeder to pull in those records from the table to the XML file it outputs.
    If both auction and upc area installed and you turned them on in admin -> Configuration -> Google Base Feeder Configuration -> Activate Auction Site Attributes

    Then upc should show up and you could also use it for the offer ID. If not, then something else must be going on.
    Dave
    Always forward thinking... Lost my mind!

  5. #1865
    Join Date
    Aug 2009
    Posts
    30
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by davewest View Post
    If both auction and upc area installed and you turned them on in admin -> Configuration -> Google Base Feeder Configuration -> Activate Auction Site Attributes

    Then upc should show up and you could also use it for the offer ID. If not, then something else must be going on.
    Thank you! Yeah, I didn't realize there was even an option to activate ASA on base feeder.

    Okay, as far as I can see, it's pulling everything into GB feeder. Of note is the product_type field is only set to 32 characters (at least on my installation it was), which doesn't allow much room for Google's category tree. I increased the size of that field in my products table to 100 characters using PHPMySQL, which I think will be enough for any category. I may bump it up a bit more. It looks like the feeder picks up the extended field without any problem. So that is one major problem solved, thanks a lot!

    Now, does anyone know a solution or fix to the no-space problem in the product description? After feeder strips out the HTML, it doesn't replace the line breaks with spaces, so much of the text runs together. If I knew where the code for that was, I'd replace it myself or add an exception for < br > tags to be replaced with spaces.

  6. #1866
    Join Date
    Aug 2009
    Posts
    30
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    edit - ignore this post
    Last edited by hypercoyote; 22 Oct 2009 at 10:40 PM.

  7. #1867
    Join Date
    Aug 2009
    Posts
    30
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Wow, the santizer is causing more problems than just absence of spaces. It's stripping off the '&' in my categories as well (Media &gt; DVDs &amp; Videos) which results in gibberish to google feeder. Instead of translating to (Media > DVDs & Videos), it's just seeing it as (Media gt; DVDs amp; Videos).

  8. #1868
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by hypercoyote View Post
    Wow, the santizer is causing more problems than just absence of spaces. It's stripping off the '&' in my categories as well (Media &gt; DVDs &amp; Videos) which results in gibberish to google feeder. Instead of translating to (Media > DVDs & Videos), it's just seeing it as (Media gt; DVDs amp; Videos).
    Look a coupla pages back in this thread.. I posted my fix for the ampersands as well the fix for quotations in description and product titles.... my fix incorporates Dave's fix for the "<" and ">" characters..

    If you would be so kind as to post how you addressed the spaces, that would be nice??

  9. #1869
    Join Date
    Aug 2009
    Posts
    30
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    I'll give that fix a shot. LOL, the only thing I could come up with was to put a space at the end of each of my lines in the HTML. Very low tech, but it worked.

  10. #1870
    Join Date
    Aug 2009
    Posts
    30
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by DivaVocals View Post
    Look a coupla pages back in this thread.. I posted my fix for the ampersands as well the fix for quotations in description and product titles.... my fix incorporates Dave's fix for the "<" and ">" characters..

    If you would be so kind as to post how you addressed the spaces, that would be nice??
    Is this the fix:

    // $str = str_replace(array("&lt;", "&gt;"), array("<", ">"), $str);
    // 10-01-2009 Updated to correct quotation marks and ampersands in product titles and descriptions
    $str = str_replace(array("lt;", "gt;", "quot;", "&quot;", "amp;"), array("&lt;", " &qt; ", "&quot;", "\"", "&"), $str);

    I put it in my code but as far as I can tell, it didn't make a difference. When you put in &'s and >'s, do you store them in XML friendly format into your table or do you store them in plain format? I actually have it in their both ways

    Media > DVDs & Videos

    and

    Media &gt; DVDs &amp; Videos

    both of them still come out as

    Media gt; DVDs amp; Videos

    in the feeder xml.

    I mean, do I need to put quotes around them or do something else?

 

 

Similar Threads

  1. v150 Google Merchant Center Feeder for ZC v1.5.x [Support Thread]
    By DivaVocals in forum Addon Admin Tools
    Replies: 504
    Last Post: 19 Nov 2024, 03:50 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR