Page 1 of 2 12 LastLast
Results 1 to 10 of 671

Hybrid View

  1. #1
    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.

  2. #2
    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)

  3. #3
    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.

  4. #4
    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?

  5. #5
    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?

  6. #6
    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

  7. #7
    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.

  8. #8
    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
    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.
    I was finally ready to test the updated file but I got an error File "zc-contribution/GoogleFroogle.zip" not found in download directory...

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

    Default Re: Froogle Merchant Center merged into GoogleBase

    I am not ready

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

    Default Re: Froogle Merchant Center merged into GoogleBase

    BlessIsaacola!
    Sorry for delay. Test this one.

 

 
Page 1 of 2 12 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

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