Frequently asked questions

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
10 anni tempo fa
Q: How do I import product pictures?

A: The pictures filename path must be relative to the host file system;  not your local PC/browser.

On the admin>products page, select one product that has a picture, and then do an "Export to Excel (selected)".  Look at the Excel sheet.  Note the host path for the picture.  You will need to prefix your filenames with that path when creating the CSV file.   Don't use the exact path.  You need to create a temp folder up a level or two, and put your files in that temp folder.  If hosted, you will need to FTP the image files prior to import.
10 anni tempo fa
Q: How do I block a single IP or an IP range(nop ver. 2.65)?

A: https://www.nopcommerce.com/boards/t/24464/blacklist-265.aspx For example (nop ver. 2.65  :) ... just add in web.config:
<system.webServer>
<rewrite>
      <rules>
        <rule name="Block access from unwanted REMOTE_ADDR">
          <match url=".*" />
          <conditions logicalGrouping="MatchAny">
         <!--   91.200.14.91-->
     <add input="{REMOTE_ADDR}" pattern="\b91\.200\.14\.91\b" />
            <add input="{REMOTE_ADDR}" pattern="\b38\.99\.82\.232\b" />
      <add input="{REMOTE_ADDR}" pattern="\b38\.99\.82\.191\b" />
      <add input="{REMOTE_ADDR}" pattern="\b38\.99\.82\.237\b" />        
      <add input="{REMOTE_ADDR}" pattern="\b208\.115\.113\.86\b" />
      <add input="{REMOTE_ADDR}" pattern="\b46\.118\.124\.71\b" />
          </conditions>
          <action type="AbortRequest" />
        </rule>
      </rules>
    </rewrite>
</system.webServer>
10 anni tempo fa
Q. No Source / Web OR Source Code? Need help in deciding, which one to use?
A. Check this tutorial: http://www.strivingprogrammers.com/Blog/post/Lavish-Kumar/25/Difference-between-No-Source-Web-OR-Source-Code-of-nopCommerce/
9 anni tempo fa
Q: What do you for selling by size(es), colors, material, etc., specification attributes or product attributes
A: Product attributes will do it. Don't forget to set Manage inventory method: Track inventory by product attributes in product info tab and then to define stock in the product attributes>combinations tab
9 anni tempo fa
Copied some most popular questions to http://docs.nopcommerce.com/display/nc/FAQ
6 anni tempo fa
hi,

i would like to know what licensew to buy if i want to remove the "powered by" text and the "Copyright" notice both for the same domain? can you kindly help?

thanks in advance.
6 anni tempo fa
[email protected] wrote:
hi,

i would like to know what licensew to buy if i want to remove the "powered by" text and the "Copyright" notice both for the same domain? can you kindly help?

thanks in advance.

The copyright removal key allows to remove "powered by nopCommerce" text. Any other text (e.g. Copyright, etc) can be removed even without the key. So for one URL you can buy the cheapest key ($120)
3 anni tempo fa
a.m. wrote:
Other suggestions for this FAQ are welcome


I want to implement hierarchy in Url structure in nopcommerce 4.4 as below:
"http://mystore.com/parentcategoryname/childcategoryname/productname"

is Nopcommerce 4.4 support hierarchy in Url structure?
and if not, How can I implement that?
3 anni tempo fa
@hessamrshn
(Your topic is not a FAQ "Frequently Asked Question"; please create new topics)
No. URL hierarchy would require customization.  This issue is not marked with any milestone
https://github.com/nopSolutions/nopCommerce/issues/385
3 anni tempo fa
Hi, I am taking part in the building of a multi-vendor site using this platform. We are having difficulty with figuring out how we will ensure a single payment for the customer at checkout if they have selected items from different vendors. We would like to avoid the customer having to go through separate payments and especially separate delivery costs and was wondering if there was a way to do this so the money is split between the vendors without the payment having to go through us.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.