Page 26 of 68 FirstFirst ... 16242526272836 ... LastLast
Results 251 to 260 of 672
  1. #251
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Froogle Merchant Center merged into GoogleBase

    Quote Originally Posted by a_berezin View Post
    Last version is v 1.3.0 28.11.2006 2:23. Try once more. And check the version.

    It is the same as http://www.zen-cart.com/forum/showpo...&postcount=243
    I add only one "\n" to the end of output row.

    What do you mean when you say "It doesn't work"? How "It doesn't work"?
    Thank you so much! This one work flawlessly, the file is generated and everything looks good. I submitted it to google and now I just need to figure out why I am getting so many errors with Too Few Tabs. I did not have these errors before on the products that Google is rejecting.

    The is now finishing the process and generating a google base file so I am happy with that.

    Could it be that I am getting these Too Few Tabs error because I am using model instead of product id for my offer_id?

    Thanks!

  2. #252
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Froogle Merchant Center merged into GoogleBase

    Please download and test once more.
    I cann't repeat that error :-( But on any case has cleaned a some code.
    Please, e-mail me about results of your testing.

  3. #253
    Join Date
    Jan 2004
    Location
    UK
    Posts
    1,230
    Plugin Contributions
    0

    Default Re: Froogle Merchant Center merged into GoogleBase

    Andrew,

    Thank you for the continued development work on this module

    This may not be related to the problem BessIsaacola has reported, but isn't there still an unnecessary '\t' on the end of the feed?

    For example:

    PHP Code:
    $output "title \t" .
                            
    "description \t" .
                            
    "link \t" .
                            
    "price \t" .
                            
    "image_link \t" .
                            
    "expiration_date \t" .
                            
    "label \t" .
                            
    "id \t" .
                            (
    GOOGLE_FROOGLE_IN_STOCK == 'true' "quantity \t" '') .
                            (
    GOOGLE_FROOGLE_SHIPPING != '' "shipping \t" '') .
                            (
    GOOGLE_FROOGLE_MANUFACTURER == 'true' "brand \t" '') .
                            (
    GOOGLE_FROOGLE_PRODUCT_TYPE_SHOW == 'true' "product_type \t" '') .
                            (
    GOOGLE_FROOGLE_LANGUAGE_DISPLAY == 'true' "language \t" '') .
                            (
    GOOGLE_FROOGLE_CURRENCY_DISPLAY == 'true' "currency \t" ''); 
    Each line has a '\t' on the end - which means there will always be an extra (unnecessary) tab on the end of the feed, no matter which options are set in admin.

    Shouldn't the "id \t" be simply "id", and the following '\t's be moved to the beginning of the optional feed lines, eg:

    PHP Code:
    $output "title \t" .
                            
    "description \t" .
                            
    "link \t" .
                            
    "price \t" .
                            
    "image_link \t" .
                            
    "expiration_date \t" .
                            
    "label \t" .
                            
    "id" .
                            (
    GOOGLE_FROOGLE_IN_STOCK == 'true' "\t quantity " '') .
                            (
    GOOGLE_FROOGLE_SHIPPING != '' "\t shipping" '') .
                            (
    GOOGLE_FROOGLE_MANUFACTURER == 'true' "\t brand " '') .
                            (
    GOOGLE_FROOGLE_PRODUCT_TYPE_SHOW == 'true' "\t product_type" '') .
                            (
    GOOGLE_FROOGLE_LANGUAGE_DISPLAY == 'true' "\t language" '') .
                            (
    GOOGLE_FROOGLE_CURRENCY_DISPLAY == 'true' "\t currency" ''); 
    (And the same for the block of code from line 146 to line 159)

  4. #254
    Join Date
    Nov 2005
    Location
    Narnia
    Posts
    822
    Plugin Contributions
    0

    Default Re: Froogle Merchant Center merged into GoogleBase

    Has anyone successfully used this with SEFU? Although I am able to view a particular page based on the url output of this contrib, it's not the same url that I see for a product when I manually browse to the page on my site. I would prefer not to have too many urls different urls leading to the same page on my site, lest I'm punished for duplicate content.

  5. #255
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Froogle Merchant Center merged into GoogleBase

    Phid!
    You are the first, who told me, that this GoogleFroogle not work with SEFU.
    What SEFU you use?

  6. #256
    Join Date
    May 2006
    Location
    Texas
    Posts
    565
    Plugin Contributions
    4

    Default Re: Froogle Merchant Center merged into GoogleBase

    phid, this mod works fine with Ultimate SEO v.2.103 i believe it is (latest version of Ultimate SEO at this time). There is another SEFU mod out there, and I'm not sure of compatibility of that.. maybe thats the one you're using?

  7. #257
    Join Date
    Nov 2005
    Location
    Narnia
    Posts
    822
    Plugin Contributions
    0

    Default Re: Froogle Merchant Center merged into GoogleBase

    Hello all,

    I use the ex-Tim Kroger Breakmyzencart SEFU urls that have been updated by JeffD to be compatible with 1.3.6. I'm not saying that it won't work with it, just that I'd run the risk of having Google think I'm spamming with duplicate urls.

    In the config area, when I set the "Show feed language = true", I get something like:

    ://www.mysite.com/pages-productinfo/product-204/language-en/my-product.html

    in my url. While the link does lead to the product page, it's not the same url that appears when I just naturally browse to the page (like a search engine would normally). Here is how my url looks when I browse to the page manually:

    ://www.mysite.com/pages-productinfo/Mymerchandise-66_69/product-204/my-product.html

    Now I can remove the language-en text by putting "Show feed language = false", but then I'll still be missing the "Mymerchandise-66_69". This text is from my sefu_defines.php file:

    Code:
    define('SEFU_CATEGORY_NAME', 'Mymerchandise');
    Here are the settings I had for the GoogleFroogle generated feed:

    Show Default Currency false
    Default Currency USD
    Show Offer ID model
    Display quantity false
    The shipping options available for an item
    Show Manufacturer true
    Show Product Type true
    Product Type other
    Show Feed Lanugage true
    Feed Language English
    Output File Name froogle.txt
    Compress Feed File false

  8. #258
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Froogle Merchant Center merged into GoogleBase

    Ok! Don't use this module with "ex-Tim Kroger Breakmyzencart SEFU urls that have been updated by JeffD to be compatible with 1.3.6". I don't know how it works.

  9. #259
    Join Date
    Nov 2005
    Location
    Narnia
    Posts
    822
    Plugin Contributions
    0

    Default Re: Froogle Merchant Center merged into GoogleBase

    Well, let me know if you figure out a way to add a "Show Categories = true/false" option in the configuration area....that seems like something I could use.

  10. #260
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Froogle Merchant Center merged into GoogleBase

    When I start developing this mod, I use cPath in url, but later I have removed it at the request of the users.
    No problem to add a "Show Categories = true/false" option.

 

 
Page 26 of 68 FirstFirst ... 16242526272836 ... LastLast

Similar Threads

  1. Google Merchant Center
    By ccn1 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 24 Oct 2011, 12:07 PM
  2. Froogle / GoogleBase Feeds (PC Based )
    By Scrat in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Feb 2007, 11:25 PM
  3. GoogleBase/Froogle
    By sschueller in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 12 Dec 2006, 11:54 PM
  4. Which Googlebase Froogle Feed Works With 1.35??????
    By mfreund in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 28 Oct 2006, 08:52 AM

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