Close

Profile: iliyan.tanev

Avatar

User posts

9 years ago

Hi,

You will need to go to Plugins\SevenSpikes.Nop.Plugins.NopQuickTabs\Views\ProductTab, open the _ProductTabsWithAjax.cshtml or _ProductTabsWithoutAjax.cshtml, depending if you are using the tabs with or without ajax, there you will find a foreach loop with the following content:


<li>
      <a href="#[email protected]">@tabInfo.Title</a>
</li>


Place the h2 tag around the anchor tag.

Hope this helps!

9 years ago

Hi,

I don't think this is possible without the code of the store procedure. Unfortunately we can not provide you with it.

9 years ago

Hi,

Unfortunately, we can not provide you with version of the plugin for 3.50. 
We have asked nopCommerce team to add a few things in 3.60 that are not present in 3.50, but needed by the plugin. Hope you understand.

9 years ago

Hi,

You need to resolve it.

There are two possible approaches here. 

1. You can resolve through the constructor of the class - like this:

private readonly ILogger _logger;
public CustomerContactTypeConverter(ILogger logger)
{
     _logger = logger;
}


2. You can resolve it through the EngineContext - like this:

var logger = EngineContext.Current.Resolve<ILogger>();


I think it will be more clean to do it using the constructor.

Hope this helps!

9 years ago

Hi,

Can we get a link to your site so we can see the problem ? 

Thanks!

9 years ago

Hi,

There is no option for this, currently.
However you can suggest this to our UserVoice portal.

9 years ago

Hi,

This is due to insufficient permissions for the resource folder of the plugin.

We will investigate this further more, but in the meantime if you have problem installing this plugin, you can try this workaround:

1. Open the Plugins\SevenSpikes.Nop.Plugins.SmartSEO and delete the Resources folder.
2. Install the plugin ( everything should be fine now ).
3. Copy the Resource folder from the plugin package and place it in the Plugins\SevenSpikes.Nop.Plugins.SmartSEO
4. Go to Configuration -> Languages
5. Click on the Edit
6. Click Import resources and select the file from Plugins\SevenSpikes.Nop.Plugins.SmartSEO\Resources.

9 years ago

Hi,

Currently this is not supported. 
However I encourage you to suggest this to our UserVoice portal.

9 years ago

Hi,

Maybe in your case will be easier to set the scroll to all the panels, like this:

.filter-block ul
{
  max-height: 300px;
  overflow: auto;
}

If you want only specific panels to get the scrolling you can inspect the page source of some category page which have all the different kinds of filters and get the specific selectors from there.

Hope this helps!

9 years ago

Hi,

Can we ask you to submit a ticket with admin credentials and link to your site, so we can inspect your setup ?

Thanks!