nopCommerce 2.65 and 2.70 roadmap

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
jariwalakrunal wrote:
another needed improvement is how to filter your products.


I agree with this. Although this can be achieved very easily from some custom development & fine tuning as NopCommerce already has filters implemented. But definitely this needs an improvement.


Not that easy if you take a look at the procedure ProductLoadAllPaged. I've finally successfully modified it to work as i want
11 years ago
http://nopcommerce.codeplex.com/workitem/11119

What do you think about it?
11 years ago
Any news on new theme for 2.70?
11 years ago
olga_zov wrote:
+ move the images like "icon_rss.gif" from the  content folder images to the css images

currently is hardcoded in the view like this:

<img title="@T("Blog.RSS.Hint")" src="@Url.Content("~/content/images/icon_rss.gif")" alt="@T("Blog.RSS")" /></a>

and this is not good when making new theme


Hi Andrei,

We completely agree with Olga!

Instead of having the <img ... > tag we should use the link-rss class of the anchor element.

This way we can change the rss icon in the themes.

Instead of having in the markup this:
<a href="/blog/rss/1" class="link-rss">
            <img title="Click here to be informed automatically when we add new items to our site" src="/content/images/icon_rss.gif" alt="RSS"></a>


Should have only this:
<a href="/blog/rss/1" class="link-rss"></a>


And change the link-rss class:
.page-title .link-rss {
float: right;
margin: 10px 10px 0 0;
background-image: url(images/icon_rss.gif);
display: block;
height: 14px;
width: 14px;

}


Many thanks!
11 years ago
RE: ID-less URLS.

1. What will happen to Google Search Engine ranking when an existing site is upgraded and the product urls change?

2. Will there be any way to have a product URL mimic the category path (same as the breadcrumb)?  Example, www.mystore.com/books/cooking-for-two rather than www.mystore.com/cooking-for-two
11 years ago
Hi Andrei Mazoulnitsyn

Good morning working to deploy nopcommerce site shortly, but am holding back for 2.70
when will 2.7 be released?

kind regards

Peter
11 years ago
SWW wrote:
1. What will happen to Google Search Engine ranking when an existing site is upgraded and the product urls change?

2. Will there be any way to have a product URL mimic the category path (same as the breadcrumb)?  Example, www.mystore.com/books/cooking-for-two rather than www.mystore.com/cooking-for-two

1. Please see this work item
2. Some coding will be required
11 years ago
PeterJD wrote:
Hi Andrei Mazoulnitsyn

Good morning working to deploy nopcommerce site shortly, but am holding back for 2.70
when will 2.7 be released?

kind regards

Peter

Please see the original forum post (here)
11 years ago
Andrei,
just to be sure I have got it.
ACL on products mean that product A variant A1 is accessible to group 1 while variant A2 is for group A2?

The case is this: I have basically 2 types of customers: private users and professional users. Private users buy products in small form factor and prices are VAT inclusive, while professionals buy products in large form factor and prices don't include VAT (that hopefully will be calculated in shopping cart).

Is this correct?
11 years ago
infinito62 wrote:
Andrei,
just to be sure I have got it.
ACL on products mean that product A variant A1 is accessible to group 1 while variant A2 is for group A2?

The case is this: I have basically 2 types of customers: private users and professional users. Private users buy products in small form factor and prices are VAT inclusive, while professionals buy products in large form factor and prices don't include VAT (that hopefully will be calculated in shopping cart).

Is this correct?

ACL has nothing to do with prices (vat incl/excl). It's about access control (product 1 is accessible to role 1 and product 2 is for role 2). See work item description here
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.