Close

Profile: iliyan.tanev

Avatar

User posts

9 years ago

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.

9 years ago

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.

9 years ago

Hi,

You can relink them by adding

<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("conditionsofUse") })">@T("ConditionsOfUse")</a></li>


to YourTheme/Views/Common/Footer.cshtml, in the ul in the div with classes
footer-block links
.

It looks like this

<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>


This may be of help to you - Add a topic

9 years ago

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

9 years ago

Hi,

Could you give us link to some product page of your website where we could see the problem ? 

Custom Rules
9 years ago

Hi,

I am glad you have found the problem!

It was fixed in 3.40.

9 years ago

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;

Custom Rules
9 years ago

Could you submit a ticket with archive of your code so we could take a look at it ? 

Custom Rules
9 years ago

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.