Hi,
You need to change your store default email account.
You could find out how to do it from nopCommerce documentation article about Email Accounts.
Hi,
Unfortunately it is not possible with our current supported kinds of sliders.
Hi,
Maybe you could write some redirect logic in the AjaxCart views. You could find them in Plugins\SevenSpikes.Nop.Plugins.AjaxCart\Views\NopAjaxCart.
Hi,
You can relink them by adding
<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("conditionsofUse") })">@T("ConditionsOfUse")</a></li>
footer-block links.
<div class="footer-block links">
<div class="title">
<strong>@T("SevenSpikes.Themes.Traction.Common.FooterInformation")</strong>
</div>
<ul>
<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("aboutus") })">@T("AboutUs")</a></li>
<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("privacyinfo") })">@T("PrivacyNotice")</a></li>
<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("shippinginfo") })">@T("ShippingReturns")</a></li>
<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("conditionsofUse") })">@T("ConditionsOfUse")</a></li>
<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("FAQ") })">@T("SevenSpikes.Themes.Traction.Common.FAQ")</a></li>
<li><a href="@Url.RouteUrl("Sitemap")">@T("Sitemap")</a></li>
</ul>
</div>
Hi,
Yes, there are only two options in the Settings tab. This tab is responsible only for enabling and disabling the plugin.
To manage your html widgets you need to go to Manage Html Widgets, which you could find at the plugin menu. You could see example of this on our admin demo - http://admin-demos.nop-templates.com/admin/HtmlWidgetAdmin/List
Hi,
Could you give us link to some product page of your website where we could see the problem ?
Hi,
I am glad you have found the problem!
It was fixed in 3.40.
Hi,
Controller - StoreLocatorController
Action - Shop
The third one you don't need in this case.
So in the end it should look like something like this.
case "shop":
{
data.Values["controller"] = "StoreLocatorController";
data.Values["action"] = "Shop";
data.Values["SeName"] = urlRecord.Slug;
}
break;
Could you submit a ticket with archive of your code so we could take a look at it ?
Try to use InstancePerLifetimeScope instead of InstancePerHttpRequest in your Dependency Register. Maybe this will fix the issue, because the LifetimeScope should live longer than the HttpRequest Scope, which means that the registered dependencies should be disposed rarely.