Your thoughts about a new default template for nopCommerce 2.70 (or 2.80)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 năm cách đây
RedFoxUA wrote:
Hi Again.
I want ask you again about "What is the difference between Address and Shipping" ?
Why did you create separate pages for it?


there is a billing address
and shipping address
they can be equal, but they can be different.

Shay
11 năm cách đây
RedFoxUA wrote:
Hi Again.
I want ask you again about "What is the difference between Address and Shipping" ?
Why did you create separate pages for it?

Please do not ask such questions here. This forum topic is about absolutely another stuff.
11 năm cách đây
a.m. wrote:
...<span dir="rtl">...
It should be done using CSS only. RTL should not be hard-coded in HTML


Sorry, I forgot.
You can create a class and use display: inline-block;
11 năm cách đây
Godji wrote:
...<span dir="rtl">...
It should be done using CSS only. RTL should not be hard-coded in HTML

Sorry, I forgot.
You can create a class and use display: inline-block;

No sure that I got you. Could you please provide the complete lists of changes (without wrapping only brackets by <span> in HTML)?
11 năm cách đây
a.m. wrote:
... Could you please provide the complete lists of changes (without wrapping only brackets by <span> in HTML)?


add in styles.rtl.css

.block-bracket {
    display: inline-block;
}

in \Views\Checkout\OpcShippingMethods.cshtml line 15

<label for="shippingoption_@(i)">@shippingMethod.Name (@shippingMethod.Fee)</label>

replace with

<label for="shippingoption_@(i)">@shippingMethod.Name <span class="block-bracket">(@shippingMethod.Fee)</span></label>
11 năm cách đây
Godji wrote:
...

Thanks a lot. Is it possible to achieve the same without placing brackets into separate <span>? Because there are a lot of other place where brackets are used. We should not wrap all places where brackets should be used. For example this product with brackets in its name (http://demo.nopcommerce.com/acer-aspire-one-89-mini-notebook-case-black)
11 năm cách đây
I want to test it but can't find any language selection drop down on the demo site :-s
11 năm cách đây
a.m. wrote:
...For example this product with brackets in its name (http://demo.nopcommerce.com/acer-aspire-one-89-mini-notebook-case-black)


Oh! my God!!!! It's a lot.

Today, Bidi don't like backet in English document.

use body {
    direction: rtl;
    unicode-bidi: embed;
} in css = not work.

use <html dir="rtl"> in head HTML = not work.
use &#x202B; or &#x200F; last bracket = not work.

Information more http://www.w3.org/International/tutorials/bidi-xhtml

I think it can work well in RTL Languages(not english).

Please wait for an answer from the other.
11 năm cách đây
infiniti wrote:
I want to test it but can't find any language selection drop down on the demo site :-s

In the demo you find it on the right side above the menu bar with 2 options: English and "Any RTL Language"
11 năm cách đây
Godji wrote:
Today I tested using the bootstrap.
I can not be completed in one day.

http://demo.thxtra.com/

Download a sample at
http://demo.thxtra.com/content/Nop.Web_99541b0f5db5.zip


Very nice! If I can ever get some free time, this would be done.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.