Close

Profile: Boyko

Avatar

User posts

10 years ago

cicciuzzo wrote:
hi

how I can disable cloud zoom?  I need only click to zoom functionality !! it's possible??

hi


Hi cicciuzzo,

Unfortunately that is not possible. The click to zoom functionality requires the zoom functionality otherwise it will not work.

Best Regards,
Boyko Bonev
Nop-Templates.com Team

10 years ago

Hi Jeff,

1. The blink that you see is because the page is not fully loaded and the Ribbons are shown via Ajax (when the page is loaded) and they are not present in the markup till it is loaded.
2. "Reentering the admin from another domain" should have no effect at all as the admin part in nopCommerce is one and only no matter how many stores you have and from which domain you enter it. But I am curious to check this in your environment. So you you are willing to provide us with administration access to your store (you can send us an email) and describe how to reproduce it we will be glad to check it.

Best Regards,
Nop-Templates.com Team

10 years ago

ellerlor wrote:
Hello,
Please help us asap... we planned to move in production web site 3 days agoo but till now we have always the same problem about popup "Loading page failed " during the push of BUY button. I have seen that it is a javascript popup from your code. There are not log error in nop log table but it is normal because the event is intercepted by the javascript page.

I removed all pluging, cleaned the cache, reinstalled everything but I have always the same problem: which is the reason? On test served I had not any type of problem :-(

Please help us it is business critical

Thanks


Hi ellerlor,

We already replied to you via email. Please don't duplicate posts/emails as we monitor them both and there is not point in doing this. Doing either of them is enough.

Best Regrads,
Nop-Templates.com Team

10 years ago

jeffahart wrote:
I have a site that has duplicate products across two stores. Each store has Holiday categories.
Christmas, Easter, Mothers Day ..... and so on 7 holidays.

I am putting "Out of Stock Seasonal Item" ribbons for all these categories.
So my question is = Is it better to have a ribbon for each holiday or can I have 14 groups(one holiday for each store) each with two conditions = Out of Stock = 0  And Category = "The Specific Holiday Category".  I have a standard "Out of Stock" ribbon with priority 0 for all other non seasonal categories.

I ask this question in the spirit of performance, if you happen to know if one method would be better or not. My gut is telling me to break them up by store since the plugin wants to filter by store naturally.  And have 7 holiday groups for each store.

Thanks!
jeff


Hi jeff,

I think it is better to break them per store. This way you can also have different images per store etc. In terms of performance it also be a bit faster as it will check only 7 groups rather than 14. Although the first group that matches the condition will cause skipping of the other condition groups.

Hope this helps!

Best Regards,
Nop-Templates.com Team

10 years ago

feelyd wrote:
I am having the same issue, on www.lovekidbooks.com, any chance of a pointer on what to change.

I could copy the code from the standard view but it looks a lot different from the view in the plugin

Dec


Hi feelyd,

By default both templates the theme one and the filters one are the same.
But if you have modified the theme CategoryTemplate then it should be different than the categorytemplate of the filters. You should make the same changes in the category template of the Filters in the theme folder i.e Plugins\SevenSpikes.Nop.AjaxFilters\Themes\Electronics\Views\Catalog7Spikes\.

Thanks

Free shipping
10 years ago

Hi guys,

In our latest release 3.21 we added a new condition "Free shipping".
You can read more for the new release here.

Thank you for voting for this idea!

Best Regards,
Nop-Templates.com Support Team

10 years ago

marcw wrote:
...I click
Enable click for dropdowns:   

If checked the Mega Menu dropdowns will show on click (not on hover as default).


but it closes on focus lost.

PS running on nc 3.20 with latest electronic responsive theme, all plugins patched.


Hi marcw,

Thank you for reporting this!
We fixed this. Please update the Mega Menu plugin.

Best Regards,
Nop-Templates.com Team

10 years ago

[email protected] wrote:
I have modified the Register and Log in view nop3.2. But after I change the theme it only works for the 'Electronics', the other theme it does not work. I have The following themes:
Alfresco
Alicante
Beauty
Electronics
Fashion
Jewelry
Lighthouse
NeoFashion
Playground
ShopAll

So, What can I do when I change the default view of nop system.


Hi [email protected],

Please note that some of the themes override the Login and Register pages, so you need to make your changes in their views. For example if you want to modify the Login page in the Alfresco theme you need to modify this file:
Themes\Alfresco\Views\Customer\Login.cshtml

The same applies to the other themes.

Best Regards,
Nop-Templates.com Team

cyberspy wrote:

First, the PictureModel does not have a CustomProperties property. The definition of this model is:

namespace Nop.Web.Models.Media
{
    public partial class PictureModel : BaseNopModel
    {
        public string ImageUrl { get; set; }
        public string FullSizeImageUrl { get; set; }
        public string Title { get; set; }
        public string AlternateText { get; set; }
    }
}



This property comes from the BaseNopModel.

cyberspy wrote:

Would adding an additional property to this model cause additional problems with nopTemplates plugins?


Adding new properties is not a breaking change and would not require recompilation of the plugins.

cyberspy wrote:

Second, although just providing the second image as the alternate may be sufficient now, I'd still like to be able to select at run time (in the view) which image to provide as the alternate image. This is what the extra property was for.

However, even as I write this message I think I've solved it.
If each picture model contains a reference to a child picture model, then I can chain multiple picture models together, so all the images are returned in display order. If the PictureModel has some code to return a particular image (or the last image if the number requested is greater than the number of images available) then any view can use any image for the selected product.

I'd like your thoughts on this and especially whether or not any plugins will have similar issues when I extend the PictureModel.


Adding new properties to the model would not break the plugins as the plugins use the existing properties and they wouldn't even know about the new one. But you can still use any newly added properties in the Razor view files (.cshtml) as they are compiled at runtime.

Hope this helps!

Best Regards,
Boyko Bonev
Nop-Templates.com Team

cyberspy wrote:
Also, out of curiosity, how do you even do this, force a method to keep the same signature? All the other places that call this controller action are quite happy with it - they do not break at run time, so this 'feature' must have been explicitly encoded. How is this done?

Thanks & Regards

Adam


Hi Adam,

Thank you for explaining what you are trying to achieve!
Please note that you can change whatever method in nopCommerce without any problems BUT not all changes are good to the plugins as some of the changes can break them. Basically some of the controllers of our plugins i.e JCarouselController, inherit from the nopCommerce CatalogController. We do this as we reuse the building of the product overview models. So when we compile our plugins they know exactly what the signature of the protected PrepareProductOverviewModels method of the Catalog controller is. Unfortunately adding an optional parameter to a method is a breaking change since it will require recompiling of all the dlls (plugins) that uses it. If we were to use a custom method for preparing the models and we didn't use the PrepareProductOverviewModels method then you wouldn't be able to change how the model is built at all. So now you can change the logic in this method of how the model is built and the same logic will be used everywhere in the store and the plugins. This I think is the right way to be done. You also have all the MVC extensibility points like ActionFilters etc.
I think the best way to approach this without writing too much code is to have both images in the PictureModel. This model has a dictionary CustomProperties that you can use to store the second image and then in the Razor views you can get the second image from the CustomProperties where necessary.

Hope this helps!

Best Regards,
Nop-Templates.com Support Team