Page 1 of 6 123 ... LastLast
Results 1 to 10 of 567

Hybrid View

  1. #1
    Join Date
    Jun 2009
    Posts
    389
    Plugin Contributions
    0

    Default [OLD] Google Merchant module Version 1.12.0 by Numinix

    This is the NEW thread for the latest version of Numinix Google Merchant Version: 1.12.0


    1. If you have any prior version of GM installed you must un-install by using the sql un-install located in the file.
    2. Install the NEW sql patch.
    3. Upload all NEW files.
    4. Make sure the feed/goolge file is chmod at 755 or 777


    Google Requirements:


    1. Basic Product Information

    A .id [id]- An identifier of the item
    B. title [title] - Title of the item
    C. description [description] - Description of the item
    D. google product category [google_product_category] - Google's category of the item
    E. product type [product_type] - Your category of the item
    F. link [link] - URL directly linking to your item's page on your website
    G. image link [image_link] - URL of an image of the item
    H. additional image link [additional_image_link] - Additional URLs of images of the item
    I. condition [condition] - Condition or state of the item

    All of these conditions should be automatic if everything is set-up correctly with your Zen-Cart.


    Troubleshooting:

    D. google product category [google_product_category] - Google's category of the item

    This is a must. You have to follow Google's cateogry tree. I had to change all of my categories to match theirs.
    How I did it (and it took me a full day to do it) is I made the required categories for my products and moved my items to the right categories. If anyone knows a better way, then please post it.

    Here's their category tree:

    catergory tree here

    Example: If I sell shoes, then my categories would be the following:

    Shoes - Main category


    Sub categories:

    Athletics Shoes

    Boots

    Flats

    High Heel Shoes

    Loafers & Moccasins

    Outdoor Shoes

    Sandals

    Slippers

    Trainers


    2. Availability & Price

    A. availability [availability] - Availability status of the item

    1. Your Zen-Cart must have "show quantity stock set to 1.
    2. Your GM config must have Show Quantity (true) & Default Quantity (1)

    B. price [price] - Price of the item
    C. sale price [sale_price] - Advertised sale price of the item
    D. sale price effective date [sale_price_effective_date] - Date range during which the item is on sale

    3. Unique Product Identifiers

    A. brand [brand] - Brand of the item
    B. gtin [gtin] - Global Trade Item Number (GTIN) of the item
    C. mpn [mpn] - Manufacturer Part Number (MPN) of the item


    These are the most common problems. Please read first before posting.

    For more information Product Feed Specification

    click here
    Last edited by PinkLeopard; 20 Oct 2011 at 02:28 AM.

  2. #2
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: The NEW Google Merchant Thread Version 1.12.0

    Hi,
    I have zen 1.3.8a with gm 1.12.0 with numix prod mod.

    My configuration is ok.
    I have GMF in the tools menu BUT WHEN I CLICK ON IT I'm taken out to the ADMIN home screen.

    I uninstalled patches from 1.9.0 til present and reinstalled them but still go to ADMIN home screen!!

    What is missing??

    Thanks

  3. #3
    Join Date
    Jun 2009
    Posts
    389
    Plugin Contributions
    0

    Default Re: The NEW Google Merchant Thread Version 1.12.0

    Quote Originally Posted by marvin View Post
    Hi,
    I have zen 1.3.8a with gm 1.12.0 with numix prod mod.

    My configuration is ok.
    I have GMF in the tools menu BUT WHEN I CLICK ON IT I'm taken out to the ADMIN home screen.

    I uninstalled patches from 1.9.0 til present and reinstalled them but still go to ADMIN home screen!!

    What is missing??

    Thanks
    Marvin, did you completely un-install it and re-install the new version?

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

    Default Re: The NEW Google Merchant Thread Version 1.12.0

    Here is a fix for the Shipping Country problem:

    You can fix this by editing your admin/includes/functions/extrafunctions/googlefroogle.php

    HTML Code:
    if (!function_exists('google_cfg_pull_down_country_list')){
    	function google_cfg_pull_down_country_list($countries_id, $key = '') {
    		global $db;
    		$name = (($key) ? 'configuration[' . $key . ']' : 'configuration_value');
    		$countries = $db->execute("select countries_id, countries_iso_code_3 from " . TABLE_COUNTRIES);
    		$countries_array = array();
    		while (!$countries->EOF) {
    			$countries_array[] = array('id' => $countries->fields['countries_id'],
    				'text' => $countries->fields['countries_iso_code_3']);
    			$countries->MoveNext();
    		}
    		return zen_draw_pull_down_menu($name, $countries_array, $countries_id);
    	}
    }
    Make sure you add it above:

    ?>

  5. #5
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: The NEW Google Merchant Thread Version 1.12.0

    Quote Originally Posted by PinkLeopard View Post
    Marvin, did you completely un-install it and re-install the new version?
    Are you talking about the 1.12.0 mod or the sql file?

  6. #6
    Join Date
    May 2007
    Posts
    124
    Plugin Contributions
    0

    Default Re: The NEW Google Merchant Thread Version 1.12.0

    Hi
    Installed v 1.12.0 1.39h cart
    no previous versions installed. new fresh install

    Feeds producing double google categories:

    <g:google_product_category><![CDATA[Arts & Entertainment > Collectibles]]></g:google_product_category>

    <g:google_product_category><![CDATA[Arts & Entertainment > Collectibles]]></g:google_product_category>

  7. #7
    Join Date
    Mar 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: The NEW Google Merchant Thread Version 1.12.0

    Regarding availability setting, I have a question

    I want to include Zero Quantity item in the feed and availability will be marked as <g:availability>out of stock</g:availability>

    I found that only non-zero quantity item have availability included
    <g:availability>in stock</g:availability>

    However, Zero Quantity item will not create <g:availability>

    Can anyone help?

    Thanks

  8. #8
    Join Date
    Jun 2009
    Posts
    389
    Plugin Contributions
    0

    Default Re: The NEW Google Merchant Thread Version 1.12.0

    Quote Originally Posted by mikebr View Post
    Hi
    Installed v 1.12.0 1.39h cart
    no previous versions installed. new fresh install

    Feeds producing double google categories:

    <g:google_product_category><![CDATA[Arts & Entertainment > Collectibles]]></g:google_product_category>

    <g:google_product_category><![CDATA[Arts & Entertainment > Collectibles]]></g:google_product_category>
    This is just a guess:

    Do you have this twice on your product page?

    HTML Code:
    <meta http-equiv="imagetoolbar" content="no" />
    <meta http-equiv="imagetoolbar" content="no" />

  9. #9
    Join Date
    Apr 2011
    Posts
    29
    Plugin Contributions
    0

    Default Re: The NEW Google Merchant Thread - Version 1.12.0

    [QUOTE=PinkLeopard;1073421]This is the NEW thread for the latest version of Numinix Google Merchant Version: 1.12.0


    Strangely, after I upload 1.10.0 version, my .xml feed file is not there any more?! what happened?

  10. #10
    Join Date
    Jan 2011
    Posts
    15
    Plugin Contributions
    0

    Default Re: The NEW Google Merchant Thread - Version 1.12.0

    My feeder wasn't uploading at all. I used this post and managed to get 21 items from 309 to upload but they have errors and are not searchable. I am pasting the first few lines of my .xml. Please help I ma desperate as i am not getting traffic at all. It seems everything is messed up. My feeder was downloaded by numinix and it has never worked. The 21 items that uploaded i had to go in and change the info one by one. This thing was suppose to auto populate but it seems it is not. Is there a way i can write one code and it will apply to the entire website and auto populate? If someone can help i am willing to reinstall the whole thing.
    I have paid to have this installed twice and they both are not working!!! please help

    <?xml version="1.0" encoding="UTF-8" ?>
    <rss version="2.0" xmlns:g="http://base.google.com/ns/1.0">
    <channel>
    <title><![CDATA[MissDiza.com]]></title>
    <link>http://missdiza.com</link>
    <description>fashion jewley<![CDATA[]]></description>
    <g:expiration_date>2011-11-01</g:expiration_date>
    <g:availability>In Stock</g:availability>
    <g:condition>new</g:condition>
    <groduct_type>jewelry<![CDATA[Trendy - Necklaces]]></groduct_type>
    <item>

 

 
Page 1 of 6 123 ... LastLast

Similar Threads

  1. v139h Adding GTIN values to Numinix Google Merchant Feeder
    By longstockings in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 22 Nov 2016, 08:01 PM
  2. v155 Numinix Product Fields / Google Merchant feed error
    By CandleMan in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 22 Nov 2016, 07:10 PM
  3. v154 Numinix Module Version Plugin
    By DarkAngel in forum General Questions
    Replies: 2
    Last Post: 16 Jul 2015, 01:00 AM
  4. v150 Need someone to volunteer to install Numinix Merchant feed. Google base feeder.
    By coucho in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 29 Jun 2012, 04:18 AM
  5. Google Chrome Reporting Old Version on Product Page
    By drkramer in forum General Questions
    Replies: 3
    Last Post: 4 Sep 2008, 06:44 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