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
mike34 wrote:
too bad that multi store option has been removed from 2.70 road map


Everything in its time.
11 years ago
mike34 wrote:
too bad that multi store option has been removed from 2.70 road map

It never was in 2.70 roadmap
11 years ago
These suggestion are based on some stores that not allow too much customization for so many reasons ($$$), they are installed as it on source code and just get a new theme, so it need to be more complete as possible.

1 - I Think we need more generic fields on the registration form, something like Checkout Attributes. Sometimes we need to get more user information and it takes to much time to add the DB or CODE, just for a simple new field.

2 - DataPicker Checkout Attribute is too simple, it would be so much better if it looks like this http://jqueryui.com/datepicker/. I think it needs a way to restrict the date period too.

3 - PDF Invoice needs the user email.

4 - More fields to the overview section on products description page.

5 - Show price in installments (Brazilian credit card system). This is very important for South America Countries. I'll try to make it clear.

The store shows the installments values of a product. When the user go through the payment on credit card, the company (VISA/MASTER/etc) will create a contract with the user and they will pay monthly to the company and the company will pay monthly to the store.

This is a example site we've made Probikes (www.probikes.com.br), or this more complex Americanas (http://www.americanas.com.br/produto/110875246/conjunto-de-sofa-vilarreal-3-e-2-lugares-preto-linoforte)

- The Product needs a maximum installment number. (You will not have more than X installments in a purchase)
- The Product needs a installment minimum value $. (The installment minimum value is $X).
- The Product needs a possibilty to add interest rate after X installments.

Example:
Min. Inst. Value  = $15,00
Max. Inst. = 12 installments
Product Price = $170

$170/12 = $14,16 <= $15 - WRONG 12 installments
$170/11 = $15,45 >= $15 - RIGHT 11 installments + Interest Rate
$170/10 = $17 >= $15 - RIGHT 10 installments + Interest Rate
$170/9 = $18,88 >= $15 - RIGHT 9 installments
...
11 years ago
Hi all,

Would it be useful if nopcommerce has a Filemanager module integrated ? suppose i need to upload pdf, rar...(whatever content, not just about product) file that i can use in News, blog... in mater page(root) design that allow user to click and download, there's no options available at the moment.

Most of CMS has one for some reasons.
11 years ago
Hi all,

I have an feature request for supporting Reverse Proxys.

In WebHelper.cs you get the Clients IP for future use.

But behind an Revers Proxy or an load balancer you will get every time the IP of LB or Proxy.

There you have to search for an “X-Forwarded-For” Key in the Request Header, and use the IP behind the Header instead of UserHostAddress.

Here an Example

        /// <summary>
        /// Get context IP address
        /// </summary>
        /// <returns>URL referrer</returns>
        public virtual string GetCurrentIpAddress()
        {
            var xff = _httpContext.Request.Headers.AllKeys
                .Where(x => x == "X-Forwarded-For")
                .Select(k => _httpContext.Request.Headers[k])
                .FirstOrDefault();

            if (_httpContext != null && _httpContext.Request != null)
                if (xff != null)
                    return xff;
                else
                    if (_httpContext.Request.UserHostAddress != null)
                        return _httpContext.Request.UserHostAddress;
                    else
                        return string.Empty;
            else
                return string.Empty;

        }


Regards
Peysche
11 years ago
hi there Andrei,

Just had a look at the 'better cms support' work item. It seemed to go more into which other cms to integrate. or I could just be tired....

However just a quick question
Does the 'new cms' allow a menu to be controlled by the shop owner. basically when they create a page I dont want them to have to contact us to add it to the menu. I suppose the easiest way from a user point of view would be to have it added to a tree view menu (to drag and drop into position in the menu) then generate a UL LI type menu. IF they click a 'show in menu' option on the page. Like the show in sitemap option. A simple field could be added for Name in menu.

This would change the system vastly and improve it dramatically. Of course you can add a lot more, multiple menu control, title tags for SEO etc etc. But a simple - show in menu basic option would be great.

Thanks!

PS I have checked everywhere for the answer to this in forums and the work items..... but I could very well be blind so sorry if I am!
11 years ago
Simon.UK wrote:
It seemed to go more into which other cms to integrate. or I could just be tired....

No. nopCommerce won't be officially integrated with other CMS

Simon.UK wrote:
Does the 'new cms' allow a menu to be controlled by the shop owner

Maybe. A final list of CMS subtasks is not set up.
11 years ago
Excellent. Looking forward to finding out. Thanks
11 years ago
I just saw that the CMS subtasks were created. I was wondering if we could add an additional one. When you are editing a topic and want to create a link to another page on the site, you have to know the URL for the page. It would be nice if you could select from a pre-populated list of all of the pages on a site. You could split them into topics and products. After the topic or product is selected it automatically grabs the URL. This isn't huge, but it sure makes things easier when trying to link to other internal pages. Of course having the option to type in a URL would still be wanted in case someone would rather do that or type in an external URL.
11 years ago
SilhouetteBS wrote:
I just saw that the CMS subtasks were created. I was wondering if we could add an additional one. When you are editing a topic and want to create a link to another page on the site, you have to know the URL for the page. It would be nice if you could select from a pre-populated list of all of the pages on a site. You could split them into topics and products. After the topic or product is selected it automatically grabs the URL. This isn't huge, but it sure makes things easier when trying to link to other internal pages. Of course having the option to type in a URL would still be wanted in case someone would rather do that or type in an external URL.

Sure. Please vote here
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.