Close

Profile: Support

Avatar

User posts

13 years ago

Hi Steve,

You can show the topic from the Mega Menu in full width by adding the fullWidth css class to the view. You can do this by editing the ~/Plugins/SevenSpikes.Nop.Plugins.MegaMenu/Views/MegaMenu/TopicBlock.cshtml file in a text editor and edit it as shown below:

line 12: <div class="dropdown fullWidth">


the class in bold is the one that you should add.

Hope that helps!

13 years ago

Hi Siim,

You can show the home page news on the place of the right slider. Open the ~/Themes/Fashion/Views/Home/Index.cshtml view and replace the following line of code

@Html.Action("WidgetsByZone", "Widget", new { widgetZone = "fashion_home_page_right_slider" })

with this one

@Html.Action("HomePageNews", "News")


Thus the news will be shown instead of the right slider.Now you will need just to style them appropriately to fit in the new place.

If you need any further assistance please do not hesitate to contact us again!

Bugs
13 years ago

Hi,

Thank you for your observation! You are right about the name of the model. We have fixed that. Can you please try to edit the name of the model by adding the missing "r" and see whether the error still occurs. You can edit the ~/Themes/Fashion/Views/Customer/ReturnRequests.cshtml and open it in a text editor. Then change the first line to:

@model CustomerReturnRequestsModel

and see whether the error still exists.

If the error still occurs please do not hesitate to contact us again.

13 years ago

Hi Greg,

As we had changed the widget zone name of the Nop Mega Menu plugin, you should update that in your public view as well. Please open your ~/Themes/Fashion/Views/Shared/_Root.cshtml and find the  
@{
        var menu = @Html.Widget("fashion_header_menu");
  }

and change it to

@{
        var menu = @Html.Widget("theme_header_menu");
  }

Also please check whether the Nop Mega Menu plugin is activated as a widget.

As to the administration of the theme, you can see only 4 plugins listed in the Plugins Integration Settings tab, because all other plugins are integrated via the widget support, meaning if they are activated as widget they will be shown in the theme. This is the case with the Nop Mega Menu.

Hope that helps!

13 years ago

Hi Mike,

Thank you for your observation. The category description did appear twice. We have fixed that. In order to integrate the fix you can either download the latest theme from your My Account section and replace the ~/Themes/Electronics/Views/Catalog/CategoryTemplate.ProductsInGridOrLines.cshtml file with the one from the package or just open it in a text editor and remove the following lines:

line: 74 @*description*@
         @if (!String.IsNullOrEmpty(Model.Description))
         {
            <div class="category-description-7Spikes">
                @Html.Raw(Model.Description)
            </div>
line: 80 }

Hope that helps!

Please let us know if you find any difficulties.

13 years ago

Hi,

You can use whatever link you like. It does not matter if it is a hard-coded link, a link built from an mvc route or from an action. It just needs to be in a <li> element. So for example you can add something like this:

<ul>
...
<li><a href="http://www.mysite.com">My Site</a></li>
...
</ul>

If you want to use a topic, you can see the documentation for the plugin and use the "TopicBlock" action.

As to the settings, you do not need to bother about them - these settings are taken from the administration of the Nop Mega Menu so that the correct links are rendered depending on the options enabled in the administration of the plugin.

But as your custom links will not have any administration, you do not need to take into consideration any settings.

Hope that helps!

13 years ago

Hi,

Thank you for considering our products!
Would you mind writing to our sales team about your request?
Please do let them know how exactly you intend to use the software. For example use it to service your clients in some way or resell it.

Thanks

Bugs
13 years ago

Hi Alex,

Would it be able to specify more details about the error. You can see it in the System -> Log menu of your site.

Or you can send us an admin credentials for the site in a separate email in order to see what the problem might be and fix the error.

Thanks!

13 years ago

Hi pdesignz,

You can easily add any other links in the menu in the same way like you have added a new topic. Open the MegaMenu.cshtml view as stated in the documentation and in the <ul> add a new <li> element with the link.

For example if you want to add a link to the forum, just add the following line of code inside the <ul> element:

<ul>
...
...
<li><a href="@Url.RouteUrl("Boards")">@T("Forum.Forums")</a></li>
...
...
</ul>

If you need any further help please let us know!

13 years ago

Hi Greg,

We have introduced a new Data source type "Sub Categories" which will display all subcategories of the current category. If it is not in your list with available Data source types, you should download the plugin/theme package again and replace the SevenSpikes.Core plugin folder and the SevenSpikes.Nop.Plugins.JCarousel plugin folder with the one from the downloaded package.

Then you can reinstall the Nop JCarousel plugin(this will delete any created jcarousels) or just replace it without reinstalling(thus some locale resources might be missing from the administration for the new features).

It might be a good idea after replacing the two plugins to modify your Global.asax file by adding an empty space at the end to trigger full application restart.

If you need any further assistance please do not hesitate to contact us again.