michaelangela
Forum Replies Created
-
All clear now. I am able to get the GCLID data in via email in the Mail settings. I did have to test which template token was the correct one when multiple values were in the form, but it’s working now. I will close this ticket.
Forum: Fixing WordPress
In reply to: No two Chinese posts can have same title on local MAMP installBut I mean, within admin, clicking on a Chinese tag might show the correct results, and if it does, that tag is fine. However, other tags don’t show results when you click on them. Searching for text still works correctly though. When the tag doesn’t work, it says
Manage Posts tagged with “”
So it’s just not getting through somehow. Odd.
Forum: Fixing WordPress
In reply to: No two Chinese posts can have same title on local MAMP installHmm. I also have hit or miss success with Chinese tags as well. My local setup must have something just… off…
Forum: Fixing WordPress
In reply to: No two Chinese posts can have same title on local MAMP installJust confirmed that it has to do something with the slug.
I am using the python wordpresslib to do some tests over xml-rpc, and I changed it to add support for the slug. Doing posts with the same name but different slugs in Chinese works. In this case it is
In [21]: post.title = ‘中文’
In [22]: idPost = wp.newPost(post,True)
– no problem
In [23]: post.slug = ‘中文-2’
In [24]: idPost = wp.newPost(post,True)
– title is the same, but I added the slug and it’s no problemIn [25]: idPost = wp.newPost(post,True)
– title and/or slug is the same the server hangs againSo, in the meantime, I’ll just have to be careful about post names.