Close

Profile: Support

Avatar

User posts

11 years ago

[email protected] wrote:
Hi there,

Reading through your documentation I noticed, that the Ajax Filters are only applied to the category page. Is it possible to apply the filters to the home page via  a custom widget ?


Hi,

The Nop Ajax Filters can be integrated only on category and manufacturer page. There is no option to add them on any other page.

Should you have any other queries please do not hesitate to contact us again!

Hi MANISHAK79,

As you know we do not provide source code, so you will not be able to modify the JCarouselModel.

You can add your logic in the view itself on the Model.Items property which will contain the products returned for a given data source type.
Or if you are more familiar with MVC you can create your own controller and add your logic there, have a view from which you can call a specific action from the JCarousel and passing an IEnumerable<ProductOverviewModel> which will be rotated in the carousel.

Please let us know if you need help with the second option with the action and the custom controller.

Best Regards!

11 years ago

Hi Philip,

You can achieve the center by applying the changes as shown below:

.bottomline .center {
  width: 980px;
  margin: 0 auto;
    text-align: center;
}

The line from above in bold is the one that should be added.

.footer-disclaimer {
  /*float: left;*/
}
.footer-poweredby {
  /*float: right;*/
}

The two floats above in bold are the ones that should be changed(actually commented out).

All these styles you can find in the styles.css

Hope that helps!

11 years ago

Hi CICCIUZZO,

We have identified this bug and already fixed it. You can integrate the fix by editing the Plugins/SevenSpikes.Nop.Plugins.AnywhereSliders/Themes/{Theme_Name}/Content/nivo/nivo.css, where {Theme_Name} is the name of the theme from which the css is loaded. In your case most probably will be DefaultClean, as shown below:

change from

.nivoSlider {
  position:relative;
  background:#fff url(loading.gif) no-repeat 50% 50%;
....
}

to

.nivoSlider {
  position:relative;
  background: url(loading.gif) no-repeat 50% 50%;
....
}

The change is removing the background #ff . After that clear your browser's cache and refresh the page.

Hope that helps!

Hi MANISHAK79,

You can see the code for this social icons in Themes/ShopAll/Views/ShopAllCommon/FooterInfoBlock.cshtml file. You can modify it as you want.

Actually this is a share widget that shares the current page on the social networks. It is not a link to a specific facebook page or any other profile. It is a share widget.

Hope that helps!

Hi Philip,

I am glad you managed to achieve the centering.

Will think of implementing it in our theme.

Thanks!

11 years ago

MattyLB wrote:
in Mega-Menu, can you make topic blocks configurable so we can determine which menu links become a drop-down block or not - without having to change the .css every time there is an upgrade/update?

also, can you make "text-transformation: uppercase" configurable from the admin page or guide me to where I remove it because changing it in MegaMenu.css for Alicante theme doesn't seem to remove the uppercase transformation on the topic block for me. Thanks!


Hi Matt,

There is a setting that can enable or disable the click for dropdowns for all elements. There is no functionality to specify different settings for each element. If you think this will add value to the plugin, you can propose it in our user voice portal.

You can add custom css from the administration that will override the theme css. So for the uppercase of the header menu, you can add the following in the administration -> plugins -> nop alicante theme in the Custom Head Styles property:

.header-menu > ul > li
{
    text-transform: none;
}

Hope that helps!

11 years ago

olgusha-g wrote:
Hello!
I want to offer improvement for this and other schemes.
For example on a goods card http://themes.alfresco.nop-templates.com/mountaineering-salewa-climbing-shoes
The footwear sizes (or any other parameters for other schemes) absent in a warehouse (out of stock) must be marked as grey color.
Also as it is realized here
http://www.amazon.com/Timberland-Mens-Premium-Boot-Olive/dp/B0077839EC/ref=sr_1_1?s=shoes&ie=UTF8&qid=1384429011&sr=1-1
Or here
http://www.wildberries.ru/catalog/1096905/detail.aspx  (You can translate this site via Google Chrome translator)

Size of boots out of stock marked Light Grey Color, in stock size mark black color also you can add size out of stock to you with list.

It will be more convenient to buyers to focus at a choice of the sizes or colors.

Now owners of shops are compelled to write about existence or out of stock of the sizes manually, for example as it is made here http://www.melanielouise.com/emile-et-rose-blair-pale-blue-all-in-one#.UoS4Z3BZeSo
Nop Fashion Theme by www.nop-templates.com


Hi OLGUSHA-G,

Thank you for your feedback.

The "out of stock" text is added dynamically and automatically by nopCommerce when the item is out of stock, so there is no need to add it manually. I agree that adding a custom styling will make the site more user friendly. I can see that you have added it in our user voice portal, so we will have it in mind in our future upgrade and release of the theme.

Thanks again!

Bugs
11 years ago

xiaoliangzhang wrote:
Hi,

We are using 3.1 with beauty theme. There comes an exception when I try to change the settings for Nop Jcarousel. i.e., in the admin area -> manage plugins -> Nop JCarousel -> settings. There is the detailed error message:

System.Web.Mvc.HtmlHelper<SevenSpikes.Nop.Plugins.JCarousel.Models.JCarouselGeneralSettingsModel>' does not contain a definition for 'AddcriptParts' and no extension method 'AddcriptParts' accepting a first argument of type 'System.Web.Mvc.HtmlHelper<SevenSpikes.Nop.Plugins.JCarousel.Models.JCarouselGeneralSettingsModel>' could be found (are you missing a using directive or an assembly reference?)

Thanks.



Hi XIAOLIANGZHANG,

This issue had been fixed. Please download the plugin again and update it following the article.

Thanks!

11 years ago

jeffahart wrote:
I was wondering if I could reduce the line spacing in my sub category links in the menu dropdown.  I want to fit more links! If anyone could direct me to code block in the correct file and setting I could adjust, I would much appreciate.

Thanks,
jeff

The Fashion theme in usage.

www.BJBarns.com


Hi Jeff,

We replied with an answer to your email with the following instructions:

You should edit the Plugins/SevenSpikes.Nop.Plugins.MegaMenu/Themes/Fashion/Content/MegaMenu.css file as shown below:

.mega-menu .row .box li a {
padding: 0 0 0 10px;
font-size: 12px;
}

The line in bold shows the changed style with reduced padding on top and bottom. You can clear your browser’s cache before reloading the page to see the change.


Please do not duplicate post and mails. There is no need to send emails if you have posted in our forum and vice verse.

Thanks!