Jump to content

nashcontrol

Members
  • Posts

    18
  • Joined

  • Last visited

Profile Information

  • Activity
    Developer

nashcontrol's Achievements

Newbie

Newbie (1/14)

7

Reputation

  1. Hi Dvir, You can find it in the github. Just download/clone it into your theme folder. https://github.com/nashcontrol/prestashop-default-bootstrap-rtl
  2. thanks guys, updated the github repository along with some cleanups. yosssii, what you did actually worked for me.. note that in the currency there is a small RTL symbol that you need to remove.
  3. Hi, Indeed a bug, fix by adding float:none to superfish menu (around line 1107): @media (max-width: 767px) { .sf-menu > li { float: none; Github repository updated.
  4. Thanks alihkhawaher! Probably because I did not make it in SCSS/SASS format
  5. Hi rabiaah, This is a known issue in prestashop 1.6.0.14, the chevron icons' display property was changed. I've updated the github repository with the required change. quick fix (line 2316), add display:inline-block; .icon-phone:before,.icon-chevron-right:before,.icon-chevron-left:before,.icon-truck:before,.icon-credit-card:before { display:inline-block; -webkit-transform: scale(-1, 1); -moz-transform: scale(-1, 1); -ms-transform: scale(-1, 1); -o-transform: scale(-1, 1); transform: scale(-1, 1); } btw, to fix the add-to-cart notification with the bad item number, you should change the blockcart module translation in hebrew: $_MODULE['<{blockcart}prestashop>blockcart_e5694b7726ceaf2f057e5f06cf86209e']
  6. Hi TheWolf, I think that the easiest solution to this problem is simply reset the currency symbol and set it again (there may be some HTML RTL chars in the one that is installed by default).
  7. Github: https://github.com/nashcontrol/prestashop-default-bootstrap-rtl
  8. yes,mails/he/XXX.html, in the header tag.
  9. that depends on front-end paragraph RTL configuration.
  10. Hi Dvir, I've seen you opened a new thread regarding this, as this really does not relate to a right to left issue.
  11. OK, easier than I thought, just had to load the JavaScript files. I added a call for them in footer.tpl. File updated in the original post.
  12. quick and dirty: in /path_to_prestashop/js/tinymce.inc.js, update the default_config: defaut_config = { . . directionality: "rtl", . } A more elegant way is to enable the directionality plugin, but the RTL/LTR icons don't show up correctly. http://www.tinymce.com/wiki.php/Plugin:directionality
  13. I added body style: <style> body { direction: rtl !important;} . . </style>
  14. k_aviv, not yet, need to make some adjustments.
×
×
  • Create New...