Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hello,
I have a homepage done with kalium. It's a webshop with Woocommerce in Japanese. Everything is fine except when I click on the cart icon it says "View cart, Checkout, Subtotal" in English. When entering View cart it also says as a header "Cart".
Look at picture kalium1.jpg.
Also when entering Checkout, it says <font size="small" color="gray".... on the addressfield, and on the same page it also says "Payment method" in english. Look at kalium2.jpg.
Best regards,
Tobias
Hi Tobias,
Some strings of WooCommerce are contained inside Kalium theme files. In order to translate them go to translator plugin (such as Loco Translate) and choose Kalium theme to translate then search for these un-translated strings.
We would really appreciate when you translate language file to send po/mo files so we will add Japanese translations to the list of supported languages.
Here is a tutorial that shows you how to translate theme strings:
Hi Arlind,
Thank you for the reply. The translation plugin worked great! However, I can't see any method how to fix my other concern about the text "<font size="small" color="gray"" showing up on the Address field at checkout (to the left on the picture), according to picture kalium2.jpg. How can I fix this?
Best regards,
Tobias
Hi sai1234,
Have you added some custom code to the theme which modifies the display text on field.
Alternatively you can replace the placeholder text on that field with this code (functions.php):
// Hook in add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields_address_field' ); // Our hooked in function - $fields is passed via the filter! function custom_override_checkout_fields_address_field( $fields ) { $fields['billing']['billing_address_1']['placeholder'] = 'My new placeholder'; return $fields; }Hello again,
No, I have not added custom code.
Sorry, I don't have so much knowledge about this but, Is it the functions.php in the wp-content/themes/kalium? If yes, I have added the code with no result.
Best regards,
Tobias
Hi Tobias,
I am sorry that it didn't worked. I need to try by myself and fix this issue.
Can you please share your WP credentials here. Your information is safe here (private) in this thread.
To include your credentials click Insert Credentials button in editor toolbar. (See how)
Hi Tobias,
I have managed to fix this issue. What I did is modified a bit the code I gave you previously to:
And now the address in billing field is showing good formatted input:
(view large version)
Note that if you update the theme, you have to re-add that code in functions.php