No content to show
User Activity
12-02-2022
ただ、プルダウンは英語順になっています。直し方法はあるでしょうか?
12-02-2022
さらにdata-defaultを変更したら編集のプルダウンも正しくに表示します。 <div class="select"><selectid="AddressProvince_{{ form.id }}"name="address[province]"data-default="{{ address.province| replace: 'Aichi', '愛知県' | replace: 'Akita', '秋田県' | replace: 'Aomori', '青森県' | replace: '...
12-01-2022
他の質問の答えを見ながら直しました。英語でも県は漢字になります。国の選択も日本だけになります。 https://community.shopify.com/c/%E6%8A%80%E8%A1%93%E7%9A%84%E3%81%AAq-a/%E4%BD%8F%E6%89%80%E5%85%A5%E5%8A%9B%E3%81%A7%E5%9B%BD-%E9%83%BD%E9%81%93%E5%BA%9C%E7%9C%8C%E9%81%B8%E6%8A%9E%E3%82%92%E3%81%99%E3...
11-30-2022
テーマは Dawn をつかっています。サイトは英語と日本語です。マイページで日本語の場合は自動入力で全てのフイールドは入力されますが英語の場合は県は表示されなくてAichiのままになっています。英語で県を自動に表示したい場合はどうすれば良いでしょか? theme.liquidにこのスクリップトを追加しました:<script src="https://ajaxzip3.github.io/ajaxzip3.js" charset="UTF-8"></script> customers/addres...
11-25-2022
Just for anyone else who may find themselves in the same position it was a translation app that was causing the problem. I had to delete the app entirely - just removing the code from the bottom of theme.liquid wasn't enough to solve the issue.
I see there was someone else with this problem who solved it by removing any code after the </html> tag in theme.liquid. I tried this but the issue wasn't solved. What else can I try?
I'm slowly inching towards translation of a bilingual store via the graphql api. I have the calls I need to translate each metafield but I'd like to translate all of them in one go. Individually the structure works but when I try to pull the calls to...
10-18-2022
I've finally succeeded so am making a note here for anyone else struggling. I used translatableResource with the product ID to get the metafield ID, then created the translatableContentDigest manually, then sent this json: {"query": "mutation CreateT...
10-18-2022
Hi @Umiko . Thank you for your reply. I can successfully use translatableResources to retrieve product metafields but it doesn't allow me to request a specific product. In order to do that I need to use translatableResource, which doesn't then give m...
10-10-2022
I'm trying to set up a bilingual store passing information from an in-house database to an online store. I have the store set up with the Translate & Adapt App and can retrieve product information using the graphql api. I'm pretty sure translating th...
I saw someone else had posted a similar question back in 2020 saying it was possible but it didn't mention how. I would like to separate the backend language by user so that one user can default to English and another to Japanese. Is this possible, a...