Close

Profile: anton_ivanov

Avatar

User posts

6 years ago

Hello,

In order to achieve that you will need to edit the ~/Plugins/SevenSpikes.Nop.Plugins.NopQuickTabs/Views/Components/ProductTabs/_ProductTabsWithoutAjax.cshtml file.

In the file, you will see 2 commented sections that show how to add a custom tab that displays a topic. You will need to uncomment that code and make some changes to it.

The changes are as follows:

In the first commented block change the

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


with this:

<li><a href="#quickTab-RelatedProducts">@T("products.relatedproducts") </a> </li>


In the second commented block change

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


to

    <div id="quickTab-RelatedProducts">
        @await Component.InvokeAsync("RelatedProducts", new { productId = Model.ProductId })
    </div>


Note: You may need to write additional styling for the tab. Unfortunately, customizations are out of the scope of our support and we cannot help you with that.

Hope that helps!

Hello Lisa,

In order to show your ribbon on only products with a discount you will need to make a condition for your ribbon like:

Condition Type: Product
Condition Property: Price Difference Amount
Operator: Greater Than
Value: 0

Hope that helps!

6 years ago

Hello,

It's true that when the add to cart button is disabled the user may not have information why the button is disabled.
Unfortunately, there is no such functionality in the Ajax Cart plugin and we have not planned to implement such a functionality in the near future.

As I can see that you have a license for the Product Ribbons plugin, I would like to suggest you try using that plugin to create a ribbon for the out of stock products. You can notify your customers that a product is out of stock with that ribbon.
You can create an out of stock ribbon by creating a ribbon with a condition:

Condition Type: Product
Condition Property: Quantity
Operator: Equal To (it can be Less Than if the value is higher than 0)
Value: 0

Hope that helps!

Hello,

The manufacturers in the Manufacturers Navigation are not part of the Ajax Filters plugin but a default nopCommerce functionality. You can control how many manufacturers will be shown in the navigation from the Number of manufacturers to display setting in Administration -> Configuration -> Settings -> Catalog Settings.

Hope that helps!

6 years ago

Hello,

Well, the only way to not have both the category navigation and the category filters is by hiding the category navigation (the subcategories list) with CSS.
If you are using the Nop Pavilion theme you can do that by pasting the following code in the Custom Head Styles setting in Administration -> Nop-Templates -> Themes -> Pavilion -> Settings:

.block-category-navigation {
   display:none !important;
}


Hope that helps!

6 years ago

Hello,

Unfortunately, no. This is a default nopCommerce functionality and is not part of the Ajax Filters plugin. The subcategories filter you are talking about is not actually a filter but rather a navigation so it cannot collapse.

6 years ago

Hello,

Excuse me I've made a mistake in my previous post. You will need to create a specification named "Category" with values, your existing categories and map them to your products as explained in my previous post.
This way on your manufacturer details page you will have a filter "Category" and users will be able to filter by category or categories selected.

Hope that helps!

6 years ago

Hi,

Can you give me a step by step explanation on the process of you trying to run nopCommmerce on your local machine so I can see what you are doing wrong?

6 years ago

Hello,

Is this issue the same as the one you wrote about here. If so, did you managed to resolve it using my instructions?
I'm baffled because both posts are made at the same time, one explaining you fixed your issue and the other asking how to fix it.

6 years ago

Hi,

The Traction theme doesn't support nopCommerce 3.30. You will have to update your store to at least 3.40 in order to use the theme.

Can you give us any details about the issue you are having with GoDaddy and our scripts?
Also, is it possible to download your database, upgrade it on your local machine and restore the upgraded version to GoDaddy?