Close

Profile: anton_ivanov

Avatar

User posts

Hello,

You can manually select products using the Override Product Conditions without having any conditions set.
You can set state (include/exclude) for products for the current sale campaign in the override product conditions regardless of whether this sale campaign has any active conditions mapped to it.

Hope that helps!

Close-menu
6 years ago

Hello,

Can you elaborate more on the changes you want to make? Right now I cannot really understand what you are trying to achieve or what you are asking for that matter and it's hard for me to help you.
Also, can you tell us what version of the Mega Menu you are using?

If you want to add something to the responsive menu you should alter the following code in ~/Plugins/SevenSpikes.Nop.Plugins.MegaMenu/Views/MegaMenu/MegaMenu.cshtml on line 155:

    <ul class="mega-menu-responsive @menu.CssClass">
        @foreach (var responsiveMenuItem in responsiveMenuItems)
        {
            @responsiveMenuItem
        }

        @Html.Widget("header_menu_after")
    </ul>

Just add your code before or after the foreach loop to insert elements as first or last items in the menu.

Hope that helps!

6 years ago

Hello,

You can remove the manufacturer navigation by editing the ~/Themes/Nitro/Views/Shared/_ColumnsTwo.cshtml. On line 44 you will find the following code:

@Html.Action("CategoryNavigation", "Catalog", new { currentCategoryId = currentCategoryId, currentProductId = currentProductId })

You will need to remove it.

Unfortunately, you cannot change the Featured Products to products from all categories. I would suggest you use one of the plugins that come with the Nitro theme to display the products you want on the home page.
JCarousel is a perfect candidate. You can display a carousel of products on your home page.

You can read more about the JCarousel in its documentation.

Hope this helps!

6 years ago

Hello,

Unfortunately, the Help Desk plugin doesn't have the option to send emails on customer reply. You can, however, suggest that idea over at our UserVoice. We implement the best and most voted ideas from the UserVoice so our customers can have the functionalities they need.

Bugs
6 years ago

Hello,

We could not reproduce this issue. Can you Submit a Ticket with admin credentials to your store so we can inspect your configuration and further investigate this issue?

6 years ago

Hello,

This will require some code modification.
You will need to edit the ~/Themes/ArtFactory/Views/Product/ProductTemplate.Simple.cshtml
On lines 116 to 140 you will find the following code:

                            
<!--attributes-->
@{
     var dataDictAttributes = new ViewDataDictionary();
     dataDictAttributes.TemplateInfo.HtmlFieldPrefix = string.Format("attributes_{0}", Model.Id);
                            @Html.Partial("_ProductAttributes", Model.ProductAttributes, dataDictAttributes)
}
<!--rental products-->
@{
     var dataDictRental = new ViewDataDictionary();
     dataDictRental.TemplateInfo.HtmlFieldPrefix = string.Format("rental_{0}", Model.Id);
     @Html.Partial("_RentalInfo", Model, dataDictRental)
}
<!--price & add to cart-->
@{
     var dataDictPrice = new ViewDataDictionary();
     dataDictPrice.TemplateInfo.HtmlFieldPrefix = string.Format("price_{0}", Model.Id);
     @Html.Partial("_ProductPrice", Model.ProductPrice, dataDictPrice)

     var dataDictAddToCart = new ViewDataDictionary();
     dataDictAddToCart.TemplateInfo.HtmlFieldPrefix = string.Format("addtocart_{0}", Model.Id);
     @Html.Partial("_AddToCart", Model.AddToCart, dataDictAddToCart)
}

@Html.Partial("_ShareButton", Model)
@Html.Widget("productdetails_overview_bottom", Model.Id)


You will need to cut it and paste it on line 91 just above the:

<div class="secondary-info">


Note:
This might require additional styling in some cases.

Hope that helps!

6 years ago

Hello,

It seems that your products don't have product attributes or product specification attributes that you can filter by.
You can add attributes and specification attributes from Administration -> Catalog -> Products -> Edit product. There, you can add product specification attributes from the Specification attributes tab and product attributes from the Product Attributes tab.

Note: When adding specification attributes you should check the "Allow filtering" setting, otherwise they will not appear on the Ajax Filters.

Hope that helps!

6 years ago

Hello,

You have downloaded the Ajax Filters plugin for nopCommerce 3.90 version. On the My Downloads page you can choose which version you want to download the plugin for. That happens from the version dropdown just above the download product link.
Choose 3.80  there and you should have no problem.

Hope that helps!

6 years ago

Hello,

This may be caused by a number of issues.
Can you check if you downloaded the plugins for version 3.80 of nopCommerce? If you have downloaded the plugins for any other version they will not show in your plugin list.

Also, please make sure that you are pasting the plugins in the right directories:
~/Plugins - for noSource version of nopCommerce
~/Presentation/Nop.Web/Plugins - for Source version of nopCommerce

Hope that helps!

Bugs
6 years ago

Hello,

This bug is already fixed in the Ajax Filters for nopCommerce 3.8 and 3.9. The date of the release of the bug fix is the 22nd of December 2016.
You can update your Ajax Filters if you are using a version for nopCommerce 3.7 or below, or you are using a plugin downloaded before the 22nd of December 2016.

You can find information on how to update a plugin in our documentation.

Hope that helps!