Re: Hebrew Support - new release [Support Thread]
Hebrew UTF-8 support for Zen Cart Version 1.5.6 ... I will soon be releasing a new version of Hebrew support for both storefront and admin.
Storefront - The current UTF-8 version of Hebrew support for storefront is compatible with 1.5.6, and I will be updating and upgrading it.
Admin - The current UTF-8 version of Hebrew support for Admin is currently incompatible with 1.5.6
Hebrew and bidirectional support can be seen with Zen Cart 1.5.6 @ https://new.optica-direct.com/
https://zencartprizol.eranariel.com/ - is another installation of 1.5.6 with Hebrew
3 Attachment(s)
Re: Hebrew Support - new release [Support Thread]
Hi, thank you for language pack. Have you got a good idea where to search for fixing this slideout rendering issue related only to he mobile side.
Attachment 18681Attachment 18682
Attachment 18683
Slideout in RTL mode normally goes from right to left.
1 Attachment(s)
Re: Hebrew Support - new release [Support Thread]
I've just found myself a pretty simple solution, just leaving dir value empty were it was "rtl". Will have to see how great will it look at the end of the day.
../includes/languages/hebrew.php
// Global entries for the <html> tag
define('HTML_PARAMS','dir="" lang="he"');
Now it goes like this:Attachment 18684
Re: Hebrew Support - new release [Support Thread]
Apologies for the delay in my reply, however it seems that you have managed to resolve the issue quite well on your own. Which template are you using?
Re: Hebrew Support - new release [Support Thread]
Shalom Israeli Zenners... I have submitted a new Hebrew language package update for v1.5.7.
https://www.zen-cart.com/downloads.php?do=file&id=2300
For any questions, feel free to reach out and Happy New Year!
Best,
Eran
Re: Hebrew Support - new release [Support Thread]
Shalom Zenners, Here is a link to the most recent release of utf-8 Hebrew support for Zen Cart that can be downloaded directly from my website. For any questions, feel free to use this forum or contact me directly.
In the meantime, all the best... מאחל לכולם חג פסח כשר
Eran Ariel (Aran)
Re: Hebrew Support - new release [Support Thread]
Shalom Zenners, Here is a link to the most recent release of utf-8 Hebrew support for Zen Cart
In the meantime, all the best... מאחל לכולם חג פסח כשר
Eran Ariel (Aran)
Re: Hebrew Support - new release [Support Thread]
Damn i'm stupid... i saw that admin side is not compatible AFTER i have changed it.
any way to change the admin side back to english?
Re: Hebrew Support - new release [Support Thread]
If you're familiar with your webhost's cPanel's phpMyAdmin, you can navigate to your database and, in the SQL tab, enter
UPDATE configuration SET configuration_value = 'en' WHERE configuration_key = 'DEFAULT_LANGUAGE';
Note that if your site uses a DB_PREFIX (like zen_), you'll need to modify that query to read
UPDATE zen_configuration SET configuration_value = 'en' WHERE configuration_key = 'DEFAULT_LANGUAGE';
Re: Hebrew Support - new release [Support Thread]
Quote:
Originally Posted by
lat9
If you're familiar with your webhost's cPanel's phpMyAdmin, you can navigate to your database and, in the SQL tab, enter
UPDATE configuration SET configuration_value = 'en' WHERE configuration_key = 'DEFAULT_LANGUAGE';
Note that if your site uses a DB_PREFIX (like zen_), you'll need to modify that query to read
UPDATE zen_configuration SET configuration_value = 'en' WHERE configuration_key = 'DEFAULT_LANGUAGE';
Done! Works! thank you!