change direction-right to left
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
change direction-right to left
Hey aimeos.
Is there any option to move the direction from right to left when language is changed for example if arabic language is selected i want the direction from right to left, i mean side bar move to the right side of screen.Please note that i have added translations now i just want to change the direction

Is there any option to move the direction from right to left when language is changed for example if arabic language is selected i want the direction from right to left, i mean side bar move to the right side of screen.Please note that i have added translations now i just want to change the direction

Re: change direction-right to left
The new Aimeos admin backend is optimized for RTL languages:
to the root HTML element but that will only do half of the job.
The Aimeos versions 2020.10 and before use Bootstrap 4 which doesn't support RTL languages well. You can try to add the CSS rule
Code: Select all
direction: rtl
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: change direction-right to left
can you please guide me how can i update aimeos.I am using laravel 8.aimeos wrote: ↑09 Mar 2021, 18:05 The new Aimeos admin backend is optimized for RTL languages:
admin-rtl.png
The Aimeos versions 2020.10 and before use Bootstrap 4 which doesn't support RTL languages well. You can try to add the CSS ruleto the root HTML element but that will only do half of the job.Code: Select all
direction: rtl
If i update aimeos will i be able to use that functionality.
Note : i ran composer update command and it gave an error
Script @php artisan migrate handling the post-update-cmd event returned with error code 1
Re: change direction-right to left
waiting for reply
Re: change direction-right to left
If you use composer 2.x, executing
should do the job. Note, that you will upgrade to a new major version (2020.10 -> 2021.x) which includes breaking changes that may not be backward compatible to the code you've written to extend Aimeos up to now. Here are the most important changes but they are not complete yet:
https://github.com/aimeos/aimeos-docs/b ... /2021.x.md
Code: Select all
composer req aimeos/aimeos-laravel:dev-master
php artisan aimeos:setup
https://github.com/aimeos/aimeos-docs/b ... /2021.x.md
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

- AhmadHelali
- Posts: 7
- Joined: 22 Feb 2023, 15:25
Re: change direction-right to left
But the Client interface does not change the direction to RTL (the front not the admin)aimeos wrote: ↑09 Mar 2021, 18:05 The new Aimeos admin backend is optimized for RTL languages:
admin-rtl.png
The Aimeos versions 2020.10 and before use Bootstrap 4 which doesn't support RTL languages well. You can try to add the CSS ruleto the root HTML element but that will only do half of the job.Code: Select all
direction: rtl