Close

Profile: anton_ivanov

Avatar

User posts

7 years ago

Hello,

You can add custom quick tabs but that will require some code customization. You will have to edit the ~/Plugins/SevenSpikes.Nop.Plugins.NopQuickTabs/Views/Components/ProductTabs/_ProductTabsWithoutAjax.cshtml (~/Plugins/SevenSpikes.Nop.Plugins.NopQuickTabs/YourThemeName/Views/Components/ProductTabs/_ProductTabsWithoutAjax.cshtml, where YourThemeName is your active theme name if you are using one of our themes).
You will have to uncomment lines 12:

<li><a href="#quickTab-ShippingInfo">@T("ShippingReturns")</a> </li>

and line 23-25:
<div id="quickTab-ShippingInfo">
        @await Component.InvokeAsync("TopicBlock", new { systemName = "ShippingInfo" })
        </div>


That will display the Shipping Info topic as a tab. If you want to display your own information in your tab you will need to change a couple of things.

Firstly, from line 12 you will need to change the resource that is displayed as the tab name. Change @T("ShippingReturns") to show any other return by changing the string inside the @T() or just write your title in plain text.
After that, you will need to change line 24.
Now the code calls the TopicBlock view component. You will need create your own view component that will return the information from your new products table. The Invoke method of your component can have an int productId parameter so it knows for which product it is invoked.
After that you can change the code on line 24 like this:
 @await Component.InvokeAsync("YourComponentName", new { productId = Model.ProductId })


where the YourComponentName is your newly created view components name.

Note: If you want your custom tab to show on your public store you will need to uncheck the Enable Ajax setting in Administration -> Nop-Templates -> Plugins -> Quick Tabs -> Settings.

Note: This guide is written for nopCommerce versions 4.00 and above.

Hope that helps!

7 years ago

Hello,

You can edit the resources for your languages from Administration -> Configuration -> Languages -> String Resources.
The menu items in the mega menu are not resources, though. The menu items have a setting "Title" that can have different values per language. In order to change it you will need to go to Administration -> Nop-Templates -> Plugins -> Mega Menu -> Manage Menus -> Edit Menu -> Menu Items and edit the menu item by clicking the downfacing arrow next to the name of the menu item. After that, choose the language from the tabs above the Title setting and enter a value.

Hope that helps!

7 years ago

Hello,

This functionality is possible through the Nop Attachments plugin. You can create an attachment with an attached PDF file that will be displayed in the Quick Tabs of your product. Users will be able to click the file and open it.

You will just need to check the Enable Product Attachments tab setting in Administration -> Nop-Templates -> Plugins -> Quick Tabs -> Settings and map your attachment to the quick_tabs_product_attachments_tab widget zone.

Hope that helps!

Hello,

We are looking into ways to pass the facebook app review. I will respond to this post once we've got any results and updated our documentation.

Bugs
7 years ago

Hello,

The only localizable setting in the product ribbons Small product picture ribbon and big product picture ribbon is the Text setting.

The Position and Picture settings aren't localizable and that is the correct behaviour.

Hope that helps!

7 years ago

Hello,

Can you check if the Use one page checkout setting in Administration -> Configuration -> Settings -> Order Settings is checked? If you'd like the same checkout as on demo.nopcommerce.com this setting should be checked.

7 years ago

Hello,

You've mentioned that you've upgraded from 3.9 to 4.0. Can you tell me if you've followed these instructions?

Hi,

We've answered to your ticket and are waiting for a response so we can figure this issue out.

7 years ago

Hello Lance,

You can try enabling the Full-Text search functionality in nopCommerce.
This can be done by clicking the "Enable Full-Text" button on the bottom of the Administration -> Configuration -> Settings -> General Settings page and then changing the Search mode setting to "Using CONTAINS and OR with prefix_term".

Note: Please note that this is a nopCommerce functionality and is not part of any of our products. The Instant Search plugin just adds additional functionality to the default nopCommerce search and doesn't change how it works.

Hope that helps!

Hello,

You probably have the Ajax Filters plugin enabled on your search page. In that case you will also need to check the Enable search in product tags setting in Administration -> Nop-Templates -> Ajax Filters -> Settings -> Integration Settings.

Hope that helps!