mentars
Forum Replies Created
-
Hello again
It’s still same. Here is a sample post with 2 image. First is main image and second is additional image.
In the field there are 4 additional image links.It comes as :
<g:additional_image_link><![CDATA[this is one of my additional link]]></g:additional_image_link>
<g:additional_image_link>0</g:additional_image_link>
<g:additional_image_link>0</g:additional_image_link>
<g:additional_image_link></g:additional_image_link>I gave up on this. Google merchant center disabled 300+ ads because of additional links. I’ve downgraded to 2.0.8 and it’s working. It doesn’t adds the additional images and google doesn’t asks about it. Hope my ads start to work again fast.
RegardsHello again
Now it has a different problem. It doesn’t shows 0 but somehow even the field is empty it shows the field name.
If there is no image at additional fields it comes with different names and Google doesn’t recognizes them.
Let’s say a product has 2 additional image link but i declare 4 additional images in the xml. It shows as :<g:additional_image_link_3></g:additional_image_link_3>
<g:additional_image_link_4></g:additional_image_link_4>Google gives error which says it can’t recognize these areas.
Hope you fix this too.
Best regardsForum: Plugins
In reply to: [WordPress Social Login] Microsoft Live Not WorkingI’m having the same problem. Could you find any solution for this issue?
Thank you very much eugenekk
Your message guide me to fix price problems.
I’ve checked the variable products section but for doing that i must to reconfigure the csv file. The problem is my csv file is too big to edit manually.My csv file has stored variables like this
Color:Blue;Green;Orange; Pink; Mode:Mode 1 (Right Hand Throttle);Mode 2 (Left Hand Throttle);Each line has a attribute name and variables after : sign.
I prepared some functions for it.function saginial($girdi) { $girdi = str_replace(";","|",$girdi); $sonuc = preg_replace("/(.*.):/",'',$girdi); //deletes right part return $sonuc; } function solunual($girdi) { $sonuc = preg_replace("/:(.*.)/",'',$girdi); //deletes the right part $sonuc = preg_replace("/\n/",';',$sonuc); //changes enter with ; return $sonuc; }The problem here is i can’t get attributes name as different values. It imports all the data as 1 line. My attribute name becomes like this ‘Color Mode’ but it must be ‘Color’ and ‘Mode’ the values has same problem too. It imports all values to same attribute.
Do you have any suggestion for this?