Close

Profile: Deni

Avatar

User posts

9 years ago

infiniti wrote:
How can I make the categories always shown as  items in the top level of the menu?


Hi, 

You can show the Categories as top menu items by unchecking this setting in the administration of the Mega Menu plugin: Show categories in a single menu.

Make sure that you have main categories marked as shown in top menu.

[email protected] wrote:
Hi!

Thanks for your reply. Here are two examples of errors I found in our log files:

[...]

Yes, we made some adjustments to the  

nopCommerce Source Code, but I don`t think this will have that effect.

Hope you can help me with this.




Hi, 

These error could be caused by many reasons - for example bots trying to open it via GET request...

To find the real root of this issue, please submit a ticket in our system, giving a link to your site with admin credentials.

Thanks for your cooperation !

9 years ago

jakubz wrote:
Hi! i don't remember where I change it. I want on topic pages 2 columns (left menu, and content).
Actually in smart theme, I have only one column on topics page. Where can i change it?


Hi, 

To show the topic details page in two columns you need to follow these steps:

1. Since the TopicDetails view is not overridden in the Smart theme, you need to do it - copy the Topic folder and the TopicDetails.cshtml file from the Default Clean theme Views folder and paste it in the Smart theme views folder.


2. You should get this structure:

/Themes/Smart/Views/Topic/TopicDetails.cshtml.


3. Now open the TopicDetails view and in its beginning you will find this row:
Layout = "~/Views/Shared/_ColumnsOne.cshtml";


Modify it like this:
Layout = "~/Views/Shared/_ColumnsTwo.cshtml";



4. Save the file. That is all.


I hope it helped !

[email protected] wrote:
Hi!
Any new about this problem?
I have the same issue.

Greatings Michael


Hi, 

Have you found any records in your System Log?

Have you made any modifications to the nopCommerce source code, especially to the Products controller signature.

You can submit a ticket in our ticketing system, providing a link to your site so we can check it for you.

Waiting for your reply !

9 years ago

kwestground wrote:
Hi,

Please vote on Store Locator: Product Mapping
https://noptemplates.uservoice.com/forums/151226-nop-templates-com-products-feedback/suggestions/10546191-store-locator-product-mapping

I also think an Address field would be great to have.
https://noptemplates.uservoice.com/forums/151226-nop-templates-com-products-feedback/suggestions/10546212-store-locator-address-field



Hi, 

We will think about integrating this in the future.

Thanks for your feedback !

9 years ago

kwestground wrote:
This is an simple Task i made for updating GPS Code from Google Maps API, using the ShortDescription field for address.

I'm using nuget package: Geocoding.net

https://gist.github.com/kwestground/deb56bda54a5453d18e8


It would be great if nop-template could add an Address field so you don't need to user Short Description.


https://noptemplates.uservoice.com/forums/151226-nop-templates-com-products-feedback/suggestions/10546212-store-locator-address-field


Hi, 

We will think about integrating this in the future.

Thanks for your feedback !

Excel import
9 years ago



Hi, 

Thanks for your contribution. We will plan to integrate this in the near future !

ssikora wrote:
Configuration error on my part...please disregard.


Ok,

No problem. Let us know if you need any help !

9 years ago

RonM wrote:
I recently tried to upgrade a Nopcommerce 3.4 site to 3.6 and had some issues. After I ran the upgrade scripts, the upgraded site came up, but had multiple customer roles for the system roles. Administrator was duplicated about 10 times, and the guest roll had a couple dozen repeats. You can not delete duplicate system roles inside of nopcommerce, so to fix would require directly making changes on the database. NOT GOOD. After looking at a similar issue posted on the nop forum, I can be fairly certain that the cause of this was due to plug-ins. I do have a couple other plug-ins installed that are not NOP-Templates, however I wanted to check to see if it is recommended to uninstall all plugins BEFORE doing a nop upgrade on a live site. This certainly adds to the pain of performing an upgrade!



Hi, 

I can assure you that this is not caused by our plugins. Otherwise our forum would have been flooded with similar complaints. 


The best way to upgrade nopCommerce is this one:

1. Back-up your existing database.

2. Copy the InstalledPlugins.txt and Settings.txt.

3. Download the desired version of nopCommerce and place it any folder.

4. Paste the InstalledPlugins.txt and Settings.txt into the new folder of nop.

5. Go to our site and download our plugins for the desired version, then place them in the new nopCommerce folder.

6. For each "mid-version" run the nopCommerce upgrade script, then run ours if there is one.
Example: You upgrade from 3.40 to 3.60. So, for 3.50 run nopCommerce upgrade script, then run ours. After that - for 3.60 run nopCommerce upgrade script, then run ours.

7. Now, if you start nopCommerce everything should work fine.


You do not need to remove/uninstall any of the plugins.

For test purposes you can back-up your database, then uninstall and remove all the plugins (not only ours) and try to upgrade the database. Then you can check how many records you have into the CustomerRoles table.


I hope this helped !

9 years ago

e3io wrote:
I understand and agree with you, but I modified the .CSS classes and some .cshtml, now all tabs are displayed on the same page and now the tabs are anchors that send the user to the level of the page he chooses.

I just thought that as it is shows the product specifications, I could replace it and shows the product attributes, modifying the code in some .cshtml file .

If you know how to do this please let me know.
Thank you.


Hi, 

No, it would not be possible to modify the cshtml and get the product attributes shown. The only thing I can think of is this one using some JS:

1. Create a custom tab.
2. For description - open the Tools > Source code of the editor
3. Place this code inside and save:

<div id="quick-tabs-product-attributes-wrapper"></div>
<script type="text/javascript">
// <![CDATA[
  (function(){
    $(document).ready(function(){
      $('.product-essential .attributes').appendTo('#quick-tabs-product-attributes-wrapper').show();
    });
  })();
// ]]>
</script>


4. Map the tab to the desired products manually or by using conditions.

5. For even better results you can do this:
- the attributes are inside this element: <div class="attributes">
- because it is moved with JavaScript you will see the DIV until the JS loads and move it
- to avoid this create a new product template which has the DIV hidden like this: <div class="attributes" style="display: none;">
- now everything will look perfect

NOTE: this modification was not tested for all possible cases and might lead to unexpected behaviour.



I hope this will help you !