Close

Profile: anton_ivanov

Avatar

User posts

7 years ago

Hello,

You will just have to add specific manufacturers to your menu rather than the All Manufacturers Menu Item.
You can find information how to do that in our Documentation : Section Edit Menus -> Manufacturers.

7 years ago

Hello,

Thanks for the suggestions!
We had a discussion about implementing the functionalities you suggested and we decided to add them to the Help Desk Plugin. I will respond to this topic once we deploy the changes for our clients to download. This should be somewhere next week.
Thanks for the patience!

7 years ago

Hello,

In the following topic I have explained how to make Custom Links (or any other menu item) appear on the side menu in the Pavilion theme. Please check out this topic.

Hope that helps!

7 years ago

Hello,

Usually, the side menu in Pavilion is reserved for Category Menu Items with Template : With Pictures or List and the top menu is for all the other menu items.

You can, however, display a menu item other than the Category Menu Items if you add the "root-category-items" class to its element.
The way to do that is to go to Administration -> Nop-Templates -> Plugins -> Mega Menu -> edit your menu -> Menu Items and edit your menu item (in your case the custom link). You should put the root-category-items class in the CSS classes setting. After saving the mega menu and reloading the public store your custom link should appear in the side menu.

Also please read the Nop Mega Menu Documentation if any of my instructions aren`t clear to you. There you can find all the information on how to work with the Nop Mega Menu Administration.

Hope that helps!

7 years ago

Hello,

Since you didn`t specify the version of nopCommerce you were using I assumed you were using 3.8. This feature was only available for that version of nopCommerce.

We, however, have decided to implement this functionality in nopCommerce 3.7 and 3.6 since you asked for a similar option. If you update your Help Desk plugin now you will have the Send Email To Store Owner On Submit Ticket setting and my instructions from my previous posts will be correct for you with the small exception that the path to the setting is as follows:

Administration -> Plugins -> 7Spikes Plugins -> Help Desk -> Settings

Hope that helps!

7 years ago

Hello,

If you want an email to be send to the store owner when a customer submits a ticket you should check the Send Email To Store Owner On Submit Ticket setting in Administration -> Nop-Templates ->  Plugins -> Help Desk -> Settings.

Hope that helps!

Hello Richard,

The Free Shipping "icon" in Motion is not an image. It is actually the text from the products.freeshipping resource with a round background. You can change the text of the resource in Administration -> Language -> Edit Language -> String Resources.
You can find the CSS code responsible for the styling in ~Themes/Motion/Content/Styles.css at line 2012:

.free-shipping {
    width: 80px;
    height: 80px;
    padding: 19px 0;
    margin: 0 auto 20px;
    background: #46c688;
    border-radius: 40px;
    color: #fff;
    font-size: 14px;
}

Hello Richard,

You will need to do some code modification in order to display the free shipping graphic on every product.
You will need to replace the code in  ~/Views/Product/_DeliveryInfo.cshtml with the following:

@model ProductDetailsModel
@using Nop.Web.Models.Catalog;

<div class="delivery">
    <div class="free-shipping">@T("Products.FreeShipping")</div>

    @if ((Model.FreeShippingNotificationEnabled && Model.IsFreeShipping) || !String.IsNullOrWhiteSpace(Model.DeliveryDate))
    {

        if (!String.IsNullOrWhiteSpace(Model.DeliveryDate))
        {
            <div class="delivery-date">
                <span class="label">@T("Products.DeliveryDate"):</span>
                <span class="value">@Model.DeliveryDate</span>
            </div>
        }
    }
</div>

Hello,

The topic creator wrote about 2 issues. Could you be more specific about which issue you are writing us about?

Wiget Zone
7 years ago

Hello,

Yes, you are correct. The Nop Mega Menu is available only in those two widget zones. The content-before widget zone is used for displaying the Mega Menu in Default Clean Theme and the theme-header-menu is used for displaying it throughout our themes.