Close

Profile: Boyko

Avatar

User posts

11 years ago

Hi,

As you have uninstalled the Ajax Filters you can install them again and see what the error is.
Please refer to this article to know what the error is.

Thanks

11 years ago

shvager87 wrote:
Hello! I can't change names of default tabs.
Trying to change in language localization (strings - SevenSpikes.NopQuickTabs.Client.Tabs.Description, SevenSpikes.NopQuickTabs.Client.Tabs.Specifications), but they still heve default values.

But when I changed string "SevenSpikes.NopQuickTabs.Client.Tabs.Reviews" - it was changed.
Nop version 3.0. Installed NopPlugin collection


Hi shvager87,

The only reason I see is that the settings are cached and that's why you don't see them changed. If you have changed them as described in this video then you should have the new values when you restart nopCommerce for example.

Thanks

11 years ago

Hi LFTALERO,

There is no way to say which attributes to be shown in the filters.
But I am curious to know if this was possible what would you do? Should you hide some of the attributes and if so then how your clients will know that there are products with size 40 for example.
I think this is not correct as some of the products will be ignored this way.
There is a setting in nopCommerce to include products from subcategories. If it is possible I always recommend turning this setting off and this way you won't end up being in the top category and seeing all kind of different products. It is much better to see only the inner categories and only when you select one of the subcategories then the products from this category is shown and the Filters respectively.
Another option is to hide the attribute filters box by default.
There are new settings in the Ajax Filters, which we added last week, so you can update the Filters plugin and give it a try.

Thanks

11 years ago

toanhnt wrote:
Hi,

How do you change the language for tab "overview" and "review"? I can change the name of all the tabs that i added to another language. I can't change the two tabs above.

Thanks


Hi toanhnt,

These are resources. Check out this video to see how to search and change resources in nopCommerce.

Thanks

11 years ago

primacom wrote:
I am a non technical person and wish to add more links to the existing available in the nop categories header menu.

Forum, Blog, New Products, Contact Us.

Can you advise. I have seen your documentation, and does not know where to get what values to be inserted in.

Please help!


Hi primacom,

If you use the Mega Menu plugin then you can do this directly from the administration of the plugin.
In the Categories Header Menu plugin you need to make changes to the razor view .cshtml file that is in the plugin folder.

Best Regards,
Nop-Templates.com Support Team

11 years ago

tarweb wrote:
I noticed on the demo theme there's a JCarousel for the product page if there are more than 4 thumbnails. I've tried setting this in the "Manage JCarousel" section but it doesn't mention anything about the product page. How do I go about setting thumbnails on the product page so the user can click through if there are more than 4 images? Any help would be greatly appreciated.


HI tarweb,

The carousel in the Cloud Zoom plugin is different than the JCarousel plugin. You can set the images to be in Carousel from the administration of the Cloud Zoom plugin.

Thanks

Theme Class
11 years ago

sermar wrote:
Thank you for your reply.

I did notice that the style for the slider is at Plugins/SevenSpikes.Nop.Plugins.AnywhereSliders/Themes/DefaultClean/Content/nivo/nivo.css

I have the following in the head:
<link href="/Plugins/SevenSpikes.Nop.Plugins.AnywhereSliders/Themes/DefaultClean/Content/nivo/nivo.css" rel="stylesheet" type="text/css" />

I notice that you also have the Plugins/SevenSpikes.Nop.Plugins.AnywhereSliders/Styles/nivo/light/light.css
that I presumed was the style sheet triggered by adding "light" to the "Theme class name" box.
If it is, how the light.css is added to the head?

In the nivo.css the .nivoSlider is set with the border-radius of 5px.
How can I set different slider styles for different websites (I use nop 3.10)?

Thanks.


Hi sermar,

If you take a look inside the light.css file you will notice that the styles are defined like this .theme-light.So you can use the same approach. You can map a slider to a store, so if you run 2 stores you can create two sliders Slider1 and Slider2. You can set the theme of Slider1 to be store1 and the theme for Slider2 to be store2. Then in the css file you can define the different stylings via these two classes. For example you can change this class definition that adds the border radius:

.nivoSlider {
  position:relative;
  background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:10px;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
    border-radius: 5px !important;
    overflow: hidden !important;
}


to be like this:

.nivoSlider {
  position:relative;
  background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:10px;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
    overflow: hidden !important;
}

.theme-store1 .nivoSlider {
  border-radius: 5px !important;
}

.theme-store2 .nivoSlider {
  border-radius: 3px !important;
}



I hope this makes sense!

Best Regards,
Nop-Templates.com Support Team

Resize?
11 years ago

denzelos wrote:
http://www.nopturk.com

Specially with long description products. ex: "Oyun Evi Mod.S360" product has a long description and bad looking.

thanx.


Hi denzelos,

This is a setting of the accordion control, which you can change in the QuickView.min.js file in the Scripts folder of the Quick View Plugin.

Search for:

autoHeight: false

and replace with:

autoHeight: true,heightStyle: "content"


Best Regards,
Nop-Templates.com Support Team

11 years ago

hayyam wrote:
Hi again,
When you try to enter link it directs you to the hompage but when you add that link to your webmster tool sitemapping xml, it gives you all your links xml for google index. yo can find the information about that " http://www.nopcommerce.com/boards/t/1519/xml-sitemap.aspx?p=2 "  when i try to entegrate that to my webmaster tool it only gives me 260 links for index and all the pages it gives me are the pages where im not using smartSeo. How can i solve this problem and let google index my store :)

Hi hayyam,

I just noticed that there is a route registered in nopCommerce about this but it is without .aspx.
It is called "SitemapSEO" and you can access it via www.yourstorename.com/SitemapSEO.
I just tested it in nopCommerce 2.8 but regardless of the Smart SEO plugin it always shows the same results.I have no idea how you access this xml data with .aspx or probably you have registered another route and also how the Smart SEO could affect the sitemap generation.
Here is the code in the CommonController and the SitemapSeo method:

//SEO sitemap page
        [NopHttpsRequirement(SslRequirement.No)]
        public ActionResult SitemapSeo()
        {
            if (!_commonSettings.SitemapEnabled)
                return RedirectToRoute("HomePage");

            string siteMap = _sitemapGenerator.Generate();
            return Content(siteMap, "text/xml");
        }


Hope this helps!

Thanks

11 years ago

drcomputer wrote:
How to add dropdown to ajax cart dialog for quantity?


Hi drcomputer,

You need to modify the Ajax Cart razor view files in this folder:
Plugins\SevenSpikes.Nop.Plugins.AjaxCart\Views\

I am not sure if this is at all possible. You can first try to disable the Ajax Cart and add a dropdown to the default add to cart quantity box in nopCommerce on the product page.

Thanks