Close

Bugs

Support
10 years ago
#3606 Quote
Avatar
  • Moderator
  • 1044
Topic for reporting any Nop Playground Responsive Theme problems.
burkay
10 years ago
#4191 Quote
Avatar
  • 5
http://themes.playground.nop-templates.com/

it does not have support for ie8, ie7 ?
hayco83
10 years ago
#4226 Quote
Avatar
  • 21
I've just ordered Nop Playground responsive theme for my site www,creativetoystore.com

I see a problem with RTL support for Arabic. The Arabic words are disconnected.

you can check
http://creativetoystore.com/storeclosed

When switched to Arabic language (RTL)
the English phrase "THIS STORE IS CURRENTLY CLOSED"

is written in Arabic as
"ه ذ ا  ا ل م ت ج ر  ا ل إ ل ك ت ر و ن ي  م غ ل ق  ح ا ل ي ا"

this is not correct as the letters are disconnected. It should read like this

"هذا المتجر الإلكتروني مغلق حاليا"
Boyko
10 years ago
#4227 Quote
Avatar
  • Moderator
  • 1570
hayco83 wrote:
I've just ordered Nop Playground responsive theme for my site www,creativetoystore.com

I see a problem with RTL support for Arabic. The Arabic words are disconnected.

you can check
http://creativetoystore.com/storeclosed

When switched to Arabic language (RTL)
the English phrase "THIS STORE IS CURRENTLY CLOSED"

is written in Arabic as
"ه ذ ا  ا ل م ت ج ر  ا ل إ ل ك ت ر و ن ي  م غ ل ق  ح ا ل ي ا"

this is not correct as the letters are disconnected. It should read like this

"هذا المتجر الإلكتروني مغلق حاليا"


Hi hayco83,

Thank you for using our products!

This is by design to have the colorized titles have some letter spacing. This is the same in RTL and non RTL.
You can remove the spacing by modifying the rtl css styles of the theme.
Themes/Playground/Content/CSS/styles.rtl.css

.page-title h1 > span {
margin-left: 3px;
margin-right: 0;
}


remove the margin-left: 3px; line.

Hope this helps!

Thanks
Regards,
Nop-Templates.com Team
hayco83
10 years ago
#4228 Quote
Avatar
  • 21
Boyko wrote:
I've just ordered Nop Playground responsive theme for my site www,creativetoystore.com

I see a problem with RTL support for Arabic. The Arabic words are disconnected.

you can check
http://creativetoystore.com/storeclosed

When switched to Arabic language (RTL)
the English phrase "THIS STORE IS CURRENTLY CLOSED"

is written in Arabic as
"ه ذ ا  ا ل م ت ج ر  ا ل إ ل ك ت ر و ن ي  م غ ل ق  ح ا ل ي ا"

this is not correct as the letters are disconnected. It should read like this

"هذا المتجر الإلكتروني مغلق حاليا"

Hi hayco83,

Thank you for using our products!

This is by design to have the colorized titles have some letter spacing. This is the same in RTL and non RTL.
You can remove the spacing by modifying the rtl css styles of the theme.
Themes/Playground/Content/CSS/styles.rtl.css

.page-title h1 > span {
margin-left: 3px;
margin-right: 0;
}


remove the margin-left: 3px; line.

Hope this helps!

Thanks


Thanks for your reply.

I modified the Themes/Playground/Content/CSS/styles.rtl.css file as instructed

The spacing between letters are reduced, however they're still disconnected
hayco83
10 years ago
#4229 Quote
Avatar
  • 21
I think that this is due to the font itself, that it doesn't support Arabic?
Boyko
10 years ago
#4251 Quote
Avatar
  • Moderator
  • 1570
hayco83 wrote:
I think that this is due to the font itself, that it doesn't support Arabic?


Hi hayco83,

I think that the problem is because we use a javascript to separate each character in the title, so that we can colorize each letter. That is why you see the letters as separated. You can disable this behavior, which seem you have already done (just checked your web site).
Please let us know if you have any other problems!

Thanks
Regards,
Nop-Templates.com Team
hayco83
10 years ago
#4252 Quote
Avatar
  • 21
Boyko wrote:
I think that this is due to the font itself, that it doesn't support Arabic?

Hi hayco83,

I think that the problem is because we use a javascript to separate each character in the title, so that we can colorize each letter. That is why you see the letters as separated. You can disable this behavior, which seem you have already done (just checked your web site).
Please let us know if you have any other problems!

Thanks


Hi Boyko,

No I haven't done so yet, kindly tell me how to disable it.

Thanks
Boyko
10 years ago
#4255 Quote
Avatar
  • Moderator
  • 1570
hayco83 wrote:

Hi Boyko,

No I haven't done so yet, kindly tell me how to disable it.

Thanks


Hi hayco83,

Open this file Themes\Playground\Content\scripts\Playground.js and comment(or delete) this line:
$('.home-page .topic-html-content-title h2 > span').lettering();


Thanks
Regards,
Nop-Templates.com Team
hayco83
10 years ago
#4265 Quote
Avatar
  • 21
Boyko wrote:


Hi hayco83,

Open this file Themes\Playground\Content\scripts\Playground.js and comment(or delete) this line:
$('.home-page .topic-html-content-title h2 > span').lettering();


Thanks


OK that made the trick, however it applied to both English and Arabic orientations.

Is there any way I can restrict it - disabling lettering - to RTL only?