I am new to nopCommerce and trying to make HTML to theme on it I googled lots of things but not able to get proper way to create customized theme nopCommerce, can any one help,
Thanks in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The easiest way:
Copy the folder at
~/Themes/DarkOrangeto~/Themes/YOUR_THEME. Modify the corresponding items in theme.config.If you need to change any view, copy that view from
~/Views/SUB_FOLDER/FILE_NAME.cshtmland paste it under~/Themes/YOUR_THEME/SUB_FOLDER/FILE_NAME.cshtml.For example, if you want to change the code in
~/Views/Shared/_ColumnsOne.cshtml, copy that file and paste it under~/Themes/YOUR_THEME/Shared/_ColumnsOne.cshtml.If you do not need to change any view, then modifying
~/Themes/YOUR_THEME/Content/styles.cssis enough. (Also make sure you update~/Themes/YOUR_THEME/Views/Shared/Head.cshtmlto point to your CSS)Rule of Thumb: nopCommerce will look for the specific view in your theme. If it can’t find the view then it falls back to the original views at
~/Views. Otherwise your theme’s views override the original views.