WPIntell

Source evidence

Additional Fields

TFM Google Product Feed · support · 2016-03-01T21:39:00+00:00

complaintsentiment
mediumseverity
0.81relevance
0replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 19 rows with source links

26.3% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

14 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
alexlana unresolved
Hi! Google Merchant require some extra fields for some categories, like gender, color and age group. Do you provide a way to fill this fields on the future? If you can create an extra field for product attributes to connect the attribute value to this fields, it will work. Or maybe provide some hook and a way to change the XML template… But I do that and it worked for me. At least until the next plugin update. 🙂 1. create product attributes (reference: https://support.google.com/merchants/answer/188494?hl=en ): a. Color, with slug ‘color’; b. Gender, with slug ‘gender’; b.1. options: Male (slug ‘male’), Female (‘female’) and Unisex (‘unisex); c. Age Group, with slug ‘age_group’; c.1. options: Up to 3 months (‘newborn’), between 3-12 months (infant), between 1-5 years old (toddler), between 5-13 years old (kids) and Teens or older (adult); 2. File tfm-shrike-feed-product.php, line 56, inserted this code: $cores_c = get_the_terms( $p->id, 'pa_color'); $cores = array(); for ($i=0;$i<count($cores_c);$i++) $cores[] = $cores_c[$i]->slug; $cores = implode('/',$cores); $params['color'] = $cores; $gen_c = get_the_terms( $p->id, 'pa_gender'); $gens = array(); for ($i=0;$i<count($gen_c);$i++) $gens[] = $gen_c[$i]->slug; $gens = implode('/',$gens); $params['gender'] = $gens; $age_c = get_the_terms( $p->id, 'pa_age_group'); $age = array(); for ($i=0;$i<count($age_c);$i++) $age[] = $age_c[$i]->slug; $age = implode('/',$age); $params['age_group'] = $age; 3. File google-item.xml, line 15, inserted this: <g:item_group_id>{{ item_group_id }}</g:item_group_id> <g:color>{{ color }}</g:color> <g:gender>{{ gender }}</g:gender> <g:age_group>{{ age_group }}</g:age_group> https://wordpress.org/plugins/tfm-google-product-feed/

Comments

0 shown

No comments were stored for this source.