Close

Profile: Boyko

Avatar

User posts

Bugs
10 years ago

[email protected] wrote:
Hi
am wondering, it doesn't support IE7.0 and lower versions of IE?


Hi [email protected],

We proudly don't support IE6 and IE7.
http://www.modern.ie/ie6countdown
http://theie7countdown.com/

I hope soon we will drop the IE8 support but now we support it as around 10% still use it around the world.
http://theie8countdown.com/

Thanks

10 years ago

lester wrote:
Purchased this theme today, very nice theme most thing works. I have a few category set to display on home page, but the thumbnails is too big and display 3 per row. Is that any way that i can reduce the thumbnail size and make it to display 4 per row?


Hi lester,

It is not just a matter of reducing the size of the thumbnails. The width of the category boxes is set via css and you need to modify the theme css to make the boxes smaller or to reduce the distance between them. You can do this by changing this file:
Themes\ShopAll\Content\Styles.css

Find and edit this css definitions:

.home-page-category-grid .category-item {
  float: left;
  width: 240px;
  min-height: 120px;
  margin: 26px 5px 0 1px;
}
.home-page-category-grid .category-item-rightmost {
  margin: 26px 0 0 21px;
}


You can reduce the width and the margin between the boxes.

You also need to modify the razor view file:
Themes\ShopAll\Views\ShopAllCatalog\HomepageCategoriesShopAll.cshtml

Change this code:

if (column % 3 == 0)
            {
                <div class="clear"></div>
            }


to be like this:

if (column % 4 == 0)
            {
                <div class="clear"></div>
            }


Hope this helps!

Best Regards,
Nop-Templates.com Support Team

10 years ago

toanhnt wrote:
Hi,

Can you send images with this plugin? Or it can only send text messages?


It sends email messages, which can contain html. You can link any images you would like in the message template.

Thanks

10 years ago

rmcsharry wrote:
Hi,

Thanks for the fast response.

The dll version is 3.1.735.9086 - date 06/12/2013, so probably the latest?

The SQL Server is 2008R2 standard, so it can support sprocs - I can see the storedproc for the ajaxfilters is installed.

Any other ideas?

Regards,
Richard



Hi Richard,

It would be best if you can send us you database, so that we can test it locally and see what might be wrong. Please send us an email to our support mail and we will see how it will be best to send it through.

Thanks

azharmahmood wrote:
I need to show a product variant generic attribute value in a custom Tab, I have managed to show the TAB by modifying _ProductTabs.cshtml view on the plugin, but I am unable to reference the generic attribute.

Nutshell I am having difficulty referencing values from the following model.

ProductDetailsModel.ProductVariantModel

Please help its critical to what I am doing.


Hi azharmahmood,

Which version of nopCommerce do you use?
You can resolve (EngineContext.Current.Resolve) the product service in the view to get the product variants and then resolve the generic attribute service to get generic attribute. You will need to add @using Nop.Core.Infrastructure in the view.

Thanks

10 years ago

rmcsharry wrote:
Hi,

I have 1 category with about 100 products and 2 categories with zero products (still setting things up). There are 10 specification attributes.

When I enable NopAjaxFilters the page load times are terrible (sometimes 10 to 20 seconds).

You can see this in the screenshot I posted here:
http://tinypic.com/view.php?pic=14cz5uf&s=5#.UtA8HvRDtik

When I disable the filters, speeds are normal.

Cheers,
Richard


Hi Richard,

I guess you are using an older version of the plugin for 3.1. Can you check the dll version of the Ajax Filters plugin it should be something like 3.1.xxx.xxx. You can download the latest version and update the plugin. Then uninstall it and install it again. You can also check if stored procedures are supported on your nopCommerce installation. What is you database?
Please let us know how it goes!

Best Regards,
Nop-Templates.com Support Team

10 years ago

jkeeler wrote:
Do we need to upgrade to Nop 3.2 in order for this upgrade to work or can we keep our 3.1 install?


I didn't realize you were using nopcommerce 3.1. The fix was added in 3.2. If it is possible then I would advice you to upgrade to 3.2 as it contain a lot of improvements and bug fixes.

Thanks

10 years ago

Hi jkeeler,

The issue above is fixed and you can download and update the Anywhere Sliders plugin from our web site.

Thanks

10 years ago

joster wrote:
..as well as the productribbons issue I mentioned here:
http://www.nop-templates.com/boards/topic/564/bugs/page/2#3937


Please see the answer in the correct topic (no need to duplicate posts).

Thanks

Bugs
10 years ago

joster wrote:
Hello-

.....

Customer:  builtin@search_engine_record.com
Page URL:   http://www.myfootshop.com/productribbons/retrieveproductribbons


OK...firstly, shouldn't that URL be included in the robots.txt or otherwise denied to IUSR?
..and secondly...how can I make it stop!!!

Thanks-
Steve


Hi Steve,

The issue is caused by the search engines being too smart and trying to access some jdata- attributes in the html. They should follow only links but in nowadays search engines are quite aggressive. Putting the above in the robots.txt wouldn't help. The only solution is to move everything in the javascript files which we did. You need to update the Ribbons plugin to get the fix. Please clear your log after that and let us know if you still have any errors like this after the update.

Thanks