Hello,
I think that is the latest version that you are allowed to download.
I will give you the fix we made to the plugin in order to fix this issue on your store. I would advise you to renew your license because there are several improvements to our products since the 4.0.995.27065 version. You can contact our sales department at [email protected] to see if they can give you a discount for that.
As for the fix you will need to edit the ~/Plugins/SevenSpikes.Theme.Nitro/SupportedWidgetZones.xml file and change the 3rd row from:
<WidgetZone>nitro_logo</WidgetZone>
<WidgetZone>nitro_theme_logo</WidgetZone>
Hi,
We've fixed the issue and deployed a new version of the theme plugin yesterday. Although your license has expired you should be able to download the latest version of the Nitro theme for nopCommerce 4.0.
Please try to download the My Downloads page and follow the instruction from my last post.
Hello,
Thanks for reporting this.
We've fixed this issue in the latest version of the Nitro theme plugin. You will need to update the plugin in order to fix the issue on your store.
You can learn more about how to update a plugin by reading this article from our documentation.
Hope that helps!
Hello,
You have mixed content on your home page that is why chrome doesn't show that your page is secure. I didn't find any images or javascript files that come from an insecure origin. I also checked all your visible CSS files and minified javascript files for something that would include an URL with insecure origin but I didn't find such.
Since it only happens on your home page I assume that this is a problem with a file or a link that is included only on your home page. Maybe there is a third party plugin that you are using that is causing the problem? I already checked ours and I can confirm our products do not include such URLs.
That's what I can do with the access I have.
You can try searching through your files for URLs that start with HTTP.
Hope that helps!
Hello,
Have you tried checking the Force SSL for all site pages setting in Administration -> Configuration -> Settings -> General Settings -> Security? This will force SSL on all of your store's pages rather than just the login and register pages.
Hello,
Can you give us more information because we cannot reproduce this issue? What is your site URL where we can reproduce this issue? What version of nopCommerce are you using? What is your theme's version?
It would be best if you submit a ticket with that information.
Hi,
Well, you can actually make the tab be 2nd in the list but the code for it will not be pretty at all.
You can have the
@if (!isTabDescriptionEmpty)
{
<li><a href="#quickTab-ShippingInfo">@T("ShippingReturns")</a> </li>
}
int count = 0;
@foreach(var tabInfo in Model.Tabs)
{
@if (!isTabDescriptionEmpty && count == 1)
{
<li><a href="#quickTab-ShippingInfo">@T("ShippingReturns")</a> </li>
}
<li>
<a href="#[email protected]">@tabInfo.Title</a>
</li>
count++;
}
Hi,
You can display the tab on only the products that do have a content for that by changing the code order a bit.
At the top of the _ProductsTabsWithoutAjax.cshtml right under the @model TabUIModel you will need to invoke your component and save the returned data in a variable like this:
@{
var tabDescription = @await Component.InvokeAsync("YourComponentName", new { productId = Model.ProductId });
var isTabDescriptionEmpty = String.IsNullOrEmpty(tabDescription.ToHtmlString());
}
@if (!isTabDescriptionEmpty)
{
<li><a href="#quickTab-ShippingInfo">@T("ShippingReturns")</a> </li>
}
@if(!isTabDescriptionEmpty)
{
<div id="quickTab-ShippingInfo">
@tabDescription
</div>
}
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>
<div id="quickTab-ShippingInfo">
@await Component.InvokeAsync("TopicBlock", new { systemName = "ShippingInfo" })
</div>
@await Component.InvokeAsync("YourComponentName", new { productId = Model.ProductId })
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!