Close

Profile: Boyko

Avatar

User posts

11 years ago

drcomputer wrote:
How to change Electronic theme home from two column to one column? As there are no_columnone.cshtml in shared folder.


Hi drcomputer,

That's because we don't override it in the theme. We use the one that is in the Views folder of nopCommerce.

Thanks

11 years ago

d-print wrote:
Hi there,

Is there a way to use separate images for gridView and ListView as a controller for the layout instead of using a dropdown list?

cheers
D


Hi d-print,

The Filters expect the view modes to be in a dropdown list. There is javascript code that sets and reads the view mode from the dropdown, so if this is changed the filters might not work properly.

Thanks

11 years ago

cicciuzzo wrote:
hello

I have developed a theme for my site..

I interesting to bay a Nop Ultimate Plugin Collection , but they work in my theme???

hi


Hi cicciuzzo,

Sure the plugins should work with your theme. You can give them a try using the trial version. If you have any problems please let us know and we will help.

Thanks

11 years ago

drcomputer wrote:
SIr,

How to design footer like jewelery theme in electronics theme


Hi drcomputer,

To design a footer similar to the Jewelry theme you need to do two things.
First have a similar Html structure as the footer in the Jewelry theme and second to add the appropriate styling for the new Html.
To achieve this first make the changes in this Razor view file used in the footer:
Themes\Electronics\Views\Common\InfoBlock.cshtml

Then add the styling for your changes in the styles of the theme:
Themes\Electronics\Content\styles.css

Hope this helps!

11 years ago

Hi,

Are you using the latest version 2.81 of the Filters as we did some caching performance improvements last week?
You can also try to disable the Manufacturer filter and see if this makes any difference.
But the best advice to you is to reorganize you category structure and don't include products from subcategories in the Filters settings. We have left this option for shops that don't have a lot of products in their subcategories. This will improve performance as well as the user experience, like Ivan said, as otherwise the number of Filtering options increases and definitely confuses the users.

Could you send an email at support at nop-templates.com and send us your FTP credentials, so that we can get your database locally and test the Filters with it. This will help us improve the Filters faster.

Many thanks

11 years ago

hideme wrote:
Hi, sorry if this is answered in another plase, but i need to know if there is a plugin or configuration that I can do for have a value of the specification edited in the product page, because i have a lot of options about the specificaction of the product,

i mean a functionality like the mod showed here http://www.nopcommerce.com/p/177/product-specification-value-mod.aspx

And could be great if you have a plugin for upload downloadable information of the product (in a new tab) to download manuals, firmware updates, and so on.

This for v2.6, because is the version that we use.

Thank you!


Hi hideme,

We are not aware of such a plugin. You can try to contact the creator of this plugin for 1.9 if by any chance it is available for 2.x. By the way you can add custom values for specification attributes in nopCommerce 2.8. You can read more about this in this blog post:
http://www.nop-templates.com/whats-new-in-nopcommerce-28

Hope this helps!

Thanks

11 years ago

inspired wrote:
I added a widget successfully to 'mobile_home_page_top' and saw it, once the page is refreshed, I get an error:

[code] Value cannot be null.
Parameter name: first
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentNullException: Value cannot be null.


Hi Dave,

I guess this is because you are trying to use the plugin in the Mobile theme. Please note that our plugins are intended for the Desktop theme only. We haven't tested integrating the plugins with the Mobile theme, so we can't guarantee that the plugins will work with the Mobile theme.

Thanks

11 years ago

inspired wrote:
Hi,

I want to add a slider to a mobile widget (mobile_home_page_top) however it isn't in my list of available widgets.

Can you let me know how I can add this?

Many thanks,

Dave


Hi Dave,

Please refer to the online documentation of how to add a custom widget zone.

Thanks

11 years ago

mrbombay wrote:
Hi Nop-Templates,

I use JAIL - image loading, and after filtering my images are not showing. So i think i have to call a function after the filter is done to activate my async image loading. Where should i do that, or what would be the solution?

At head of my website:

    // img async loaden
    $('img.lazy').jail({
        effect: 'fadeIn',
        placeholder: '/Content/img/img-loader.gif',
        loadHiddenImages: true
    });



Hi mrbombay,

You can try to execute some custom logic on ajax complete as the Filters make an ajax request to the server to get the filtered products.
$(document).ajaxComplete(function (event, xmlHttpRequest) { 
add your logic here
}


But this is not the best approach as there might be other ajax requests to the server except the ones that Ajax Filters do.

Basically the Filters get the filtered products and replace the whole category panel with the result. So as a result some new html that has images in it is added to the DOM.
I am not familiar with JAIL but it should work with images that are dynamically added to the DOM.
Probably there is some setting or something to make it work in this scenario.

Please let us know if you manage to make this work.

Thanks

mrbombay wrote:
I've found something more, but still not working:

 The JSON request was too large to be deserialized.

  


Hi mrbombay,

It looks like when you have enabled to show the products in the subcategories and you are on a main category there are too many available filtering options because you have much more products to be filtered. There is a limitation in the .NET Framework on the JSON request being sent to the server and as the Ajax Filters send the data to the server via Ajax and JSON that is why you get this error. You need to increase the limit via adding a setting in your Web.config file.
Into the <appSettings> section add the following line:
<add key="aspnet:MaxJsonDeserializerMembers" value="150000" />

Thanks!