nopCommerce 3.80 roadmap and estimated release date. Let's discuss

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
suloveoun wrote:
Google just luanch a new tool to test website and mobile speed and other feature, please test Nop 3.80 here. It's great. I test my site it best with mobile design but speed is slow for mobile and i also test https://www.nopcommerce.com/ it's slow for mobile speed too.

testmysite.thinkwithgoogle.com


even www.getbootstrap.com  the css framework get the slow point on both desktop/mobile.
7 years ago
namvo wrote:
Google just luanch a new tool to test website and mobile speed and other feature, please test Nop 3.80 here. It's great. I test my site it best with mobile design but speed is slow for mobile and i also test https://www.nopcommerce.com/ it's slow for mobile speed too.

testmysite.thinkwithgoogle.com

even www.getbootstrap.com  the css framework get the slow point on both desktop/mobile.

I think Nop team is working on getting 100 points on Google tools
7 years ago
Allshookup wrote:
One feature that would be very useful is having the ability to require account creation for downloadable products. It would be nice to have a global option and a per product option. This way you could still have Anonymous checkout available for all non downloads. This is something Magento offers.


The feature is implemented. please see commits (here, here, here)

Thanks a lot for suggestion!
7 years ago
Hi,
One of the things I detected in RoxyFilemanController is that it does not show video files. I am attaching the fix here - maybe you can make it a part of the new release?

this method:
protected string GetFileType(string ext)

Should be updated as below:
protected string GetFileType(string ext)
        {
            string ret = "file";
            ext = ext.ToLower();
            if (ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".gif")
                ret = "image";
            else if (ext == ".swf" || ext == ".flv")
                ret = "flash";
            else if (ext == ".webm" || ext == ".mp4" || ext == ".ogg" || ext == ".mp3" || ext == ".wav")
                ret = "media";
            return ret;
        }

This will allow you make full use of the Insert Video feature of Roxy Filemanager (part of TinyMCE) - and no need for video plugins anymore.
7 years ago
Is it possible to made new category template view?
For this moment we may swich between grid and list (BTW - maybe it is time to move setting to catalog settings from advanced options?).

It would be nice, if we will be able to switch also between views like:
- one column (without any sidebar pannel)
- left sidebar (for this moment default view and only possible with standard installation)
- right sidebar
- left and right

Something like on the picture here
7 years ago
Hi Nop team, when the planned release date?
7 years ago
graph wrote:
Hi Nop team, when the planned release date?


I think it will better to keep eye on ==>https://github.com/nopSolutions/nopCommerce

Here is the development version on Nop 3.80. You can clone it.
7 years ago
sohel wrote:
Hi Nop team, when the planned release date?

I think it will better to keep eye on ==>https://github.com/nopSolutions/nopCommerce

Here is the development version on Nop 3.80. You can clone it.


this version i tested yestarday, is not stabil, there are errors when open Cart page.
7 years ago
graph wrote:
Hi Nop team, when the planned release date?

I think it will better to keep eye on ==>https://github.com/nopSolutions/nopCommerce

Here is the development version on Nop 3.80. You can clone it.

this version i tested yestarday, is not stabil, there are errors when open Cart page.

August
7 years ago
The recent enhancements to the Affiliates system are great, and I think are a very good start. One thing I see come up in the forums are admins wanting to offer "co-branding" opportunities to their affiliates.

For example, affiliate URL's should have a landing page with uploaded "affiliate logo" and welcome text, and allow affiliates to specify which things will appear on his landing page...featured products, best sellers, his custom selections, etc..

Affiliate logo should appear on shopping cart page so the customer knows he is helping the affiliate...
Maybe ability for each affiliate to add special text to the OrderPlaced.CustomerNotification message template when his referred customer makes a purchase..and his logo.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.