Page 202 of 357 FirstFirst ... 102152192200201202203204212252302 ... LastLast
Results 2,011 to 2,020 of 3563
  1. #2011
    Join Date
    Jun 2009
    Posts
    389
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Kim, just a thought. But you may need to change the sql to pick up the ISBN numbers or may hack that barcode and change to your needed info.

    Again, I am just a novice but wanted to suggest those two ideas to you.

    Bridgett

  2. #2012
    Join Date
    Feb 2009
    Posts
    354
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    I didn't realise that the product description was obligated to be more than 15 characters - this was my problem so look out for this all!

    On the same note.. >> is there any way to reduce this - so that maybe only 10 characters are needed for the product description or maybe even none at all??

    _thanks all

  3. #2013
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    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.
    Can I add to these files ISBN-13 and load? For books and non-books, I need ISBN, ISBN-13 and UPC.

  4. #2014
    Join Date
    Jun 2009
    Posts
    389
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by kburner View Post
    Can I add to these files ISBN-13 and load? For books and non-books, I need ISBN, ISBN-13 and UPC.
    May this might help. Take a look:

    http://www.zen-cart.com/forum/showpo...7&postcount=86

  5. #2015
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    In am trying get this mod to load UPC, ISBN and ISBN13 details to Google. I am using sql 1.7.3a and pulled 1.4.3 sql. I loaded this sql.

    HTML Code:
    ALTER TABLE products ADD products_upc varchar(32) NULL default NULL after products_model; 
    ALTER TABLE products ADD products_isbn varchar(32) NULL default NULL after products_upc;
    ALTER TABLE products ADD products_isbn13 varchar(32) NULL default NULL after products_isbn;
    
    SET @configuration_group_id=0;
    SELECT @configuration_group_id:=configuration_group_id
    FROM configuration_group
    WHERE configuration_group_title= 'Google Froogle Configuration'
    LIMIT 1;
    
    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES
    (NULL, 'UPC', 'GOOGLE_BASE_UPC', 'false', 'Include products UPC?', @configuration_group_id, 31, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'UPC', 'GOOGLE_BASE_ISBN', 'false', 'Include products ISBN?', @configuration_group_id, 32, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'UPC', 'GOOGLE_BASE_ISBN13', 'false', 'Include products ISBN13?', @configuration_group_id, 33, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');
    But do not see it when I go into admin/cofig/google base feeder config. Does it load automatically?

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

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by kburner View Post
    In am trying get this mod to load UPC, ISBN and ISBN13 details to Google. I am using sql 1.7.3a and pulled 1.4.3 sql. I loaded this sql.

    HTML Code:
    ALTER TABLE products ADD products_upc varchar(32) NULL default NULL after products_model; 
    ALTER TABLE products ADD products_isbn varchar(32) NULL default NULL after products_upc;
    ALTER TABLE products ADD products_isbn13 varchar(32) NULL default NULL after products_isbn;
    
    SET @configuration_group_id=0;
    SELECT @configuration_group_id:=configuration_group_id
    FROM configuration_group
    WHERE configuration_group_title= 'Google Froogle Configuration'
    LIMIT 1;
    
    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES
    (NULL, 'UPC', 'GOOGLE_BASE_UPC', 'false', 'Include products UPC?', @configuration_group_id, 31, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'UPC', 'GOOGLE_BASE_ISBN', 'false', 'Include products ISBN?', @configuration_group_id, 32, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'UPC', 'GOOGLE_BASE_ISBN13', 'false', 'Include products ISBN13?', @configuration_group_id, 33, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');
    But do not see it when I go into admin/cofig/google base feeder config. Does it load automatically?
    You need to use this module:
    http://www.numinix.com/zen-cart/admi...product-fields

  7. #2017
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by numinix View Post
    I loaded numinix product fields. I see in admin for products, but fields still do not show on product as customer looks on website.I did a test order and added isbn fields and customer can not see it.

  8. #2018
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Idea or Suggestion Re: Google Base Feeder Support Thread

    Tried searching for this, but looks like the search engine doesn't like Â

    Several of my site feeds have been rejected due to format errors, finnaly downloaded Notepad++ instead of TextPad and it became immediately evident that the rejected items all had  many times in the Description of the item.

    Not sure why it wad there, it appears that it might be there from html description like text format codes. Bold or Font Color???

    any help is appreciated, beats having to download and search and replace before manually uploading.


    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  9. #2019
    Join Date
    Jun 2009
    Posts
    389
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by Stuff4Toys View Post
    Tried searching for this, but looks like the search engine doesn't like Â

    Several of my site feeds have been rejected due to format errors, finnaly downloaded Notepad++ instead of TextPad and it became immediately evident that the rejected items all had  many times in the Description of the item.

    Not sure why it wad there, it appears that it might be there from html description like text format codes. Bold or Font Color???

    any help is appreciated, beats having to download and search and replace before manually uploading.


    JOhn ><>
    Try this:

    http://www.zen-cart.com/forum/showpo...postcount=1922

  10. #2020
    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 PinkLeopard View Post
    I must be using an older version or a different mod, I have a googlefroogle.php

    Is this the same mod, or should I uninstall and install the latest version?
    Newest Site: ChargerPros - Stuff4Toys

 

 

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