Page 23 of 357 FirstFirst ... 1321222324253373123 ... LastLast
Results 221 to 230 of 3563
  1. #221
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,550
    Plugin Contributions
    70

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by batteryman View Post
    Sorry for the confusion, I am a beginner on php so I need a little more guidance. mmm now that I think about it alot more lol

    The breadcrumbs are the trail that lead to a product on top of the a zencart site. the link that say:

    Home :: Notebooks :: Sempron :: ACER ASPIRE 3050-1270 AMD SEMPRON 3400+ 2.0 GHz 14.1" 120GB 1GB VH LAPTOP

    I need this to e displayed in a column along with each product.

    That was an example from your site. which I think I need to be linked to and you need to be linked to me. You offer the electronics and I offer the batteries to them. that is a side note.
    In that case, the breadcrumbs are already included in the PRODUCT_TYPE which is a list of each category starting from the top level.

    If you want to exchange links, please use the webform located on my website by going to Link Partners located on the left hand side menu.

  2. #222
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,550
    Plugin Contributions
    70

    Default Re: Google Base Feeder Support Thread

    BlessIsaacola,

    In the meantime, try changing the function that is used to filter the description. Scroll down to the area of the code that outputs the description stored in the SQL and replace zen_froogle_cleaner() with zen_froogle_sanita().

    Let me know if that helps. I've decided that the next version will be in XML format to avoid problems with illegal characters in the description.

  3. #223
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by batteryman View Post
    I use the google feed for 5 different product search engines

    1. Google Base
    2. Yahoo Shopping
    3. Nextag
    4. MSN Product Live
    5. Bizrate / Shopzilla

    They all are pretty much the same however some need a couple different attributes an I have thousands of products so to find those 2 items that I need would be very cumbersome.
    There's an opportunity numinix,

    Develop this mod to support multiple feeds.

    Considering Google Checkout mod plan to integrate GoogleBase

    Woody

  4. #224
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,550
    Plugin Contributions
    70

    Default Re: Google Base Feeder Support Thread

    I would need coaxing to undertake a universal feeder.

    I pretty much have to develop for myself and I do not use shopping comparison websites so their is no benefit for me. Writing them would take considerable time and I would be lucky to see donations enough to cover a single days work. I do greatly appreciate the few donations I have received and will continue to lend support to the zen cart community.

    I'm currently reqriting the GBF in XML format to solve a lot of the members problems even though they currently do not affect my own feed.

    Also, I requested for you to email me so that I can provide you with Andrew's RSS 2.0 module so that you can document it and release it to the public. I don't have time to do this myself and would appreciate it if you could. Once we have a documented and workable version, we can look into adding admin support in a future release.

  5. #225
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Google Base Feeder Support Thread

    Yes if one doesn't utilize the feed services it is difficult to keep up-to-date on the attributes and upload requirements for each.

    Maybe somebody else with the skills can build an all-around feeder mod supporting various product search sites. Maybe fork off Fork off Andrew's GoogleFeeder, Sitemap XML or similar mods. Or look at mods to port from OSC.

    You have the latest RSS2 mod from Andrew? What is last date change? Feel free to provide a link to it and I will download/compare with what I have. We probably should take this discussion elsewhere and not cloud this thread.

  6. #226
    Join Date
    Jul 2004
    Location
    Las Vegas
    Posts
    477
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Currently the Google Base Feeder supposrt all 5 methods I mentioned before. I would just need to add the weight and breadcrumbs for each product. I believe this would be very simple to add if you could please just help with that.

    Thank you

    also i would like a copy of the rss feed mod as well if it is possible.
    User of zencart

  7. #227
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,550
    Plugin Contributions
    70

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by batteryman View Post
    Currently the Google Base Feeder supposrt all 5 methods I mentioned before. I would just need to add the weight and breadcrumbs for each product. I believe this would be very simple to add if you could please just help with that.

    Thank you

    also i would like a copy of the rss feed mod as well if it is possible.
    The weight can be added just like any of the other product fields. In the SQL products_query, have it pull p.products_weight. Then have an output to create the proper heading and then in the second output have it output $products->fields[products_weight];

  8. #228
    Join Date
    May 2007
    Posts
    33
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Have the Feeder installed - working a treat on file creation after a couple of mods. I have one simple question - I can't upload via FTP at Google Base, so I'm going for the .txt file upload. Firstly, it wouldn't accept CSV files, so I converted the .txt to TSV (tab separated values) instead. Now it's saying it can't accept files with /:, characters in them - which makes URLs impossible, even if I've escaped them with a \ character. Short of rewriting the file into XML, is there a way round this?

    Thanks in advance - and much love to the mod creators.

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

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by numinix View Post
    BlessIsaacola,

    In the meantime, try changing the function that is used to filter the description. Scroll down to the area of the code that outputs the description stored in the SQL and replace zen_froogle_cleaner() with zen_froogle_sanita().

    Let me know if that helps. I've decided that the next version will be in XML format to avoid problems with illegal characters in the description.
    Thanks that fix reduces the amount of products rejected by google but I am still left with a significant amount of rejects. Should I apply the same zen_froogle_sanita to title as well? What's the difference between zen_froogle_cleaner and zen_froogle_sanita?

    Thank you!

  10. #230
    Join Date
    May 2007
    Posts
    33
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by gaekwad View Post
    Have the Feeder installed - working a treat on file creation after a couple of mods. I have one simple question - I can't upload via FTP at Google Base, so I'm going for the .txt file upload. Firstly, it wouldn't accept CSV files, so I converted the .txt to TSV (tab separated values) instead. Now it's saying it can't accept files with /:, characters in them - which makes URLs impossible, even if I've escaped them with a \ character. Short of rewriting the file into XML, is there a way round this?

    Thanks in advance - and much love to the mod creators.
    Please ignore me - I am a moron. I was providing the web address for the 'file name' on the Base upload screen.
    savshop.com - proudly run on Zen Cart with a code punk at the wheel.

 

 

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