Close

Profile: Boyko

Avatar

User posts

11 years ago

fakeplacebo wrote:
Hi there,

on the store, product page, if I click on "buy now" button without selecting a product attribute which is "is selected" it's opening a warning message box contains attribute name only.

for example, if I click on "buy now" button without selecting color attiribute, warning message box contains only "color" text.

so how could I'll be change this message box text to "please pick a color" or something like that?

Best Regards


Hi fakeplacebo,

If you are using the Ajax Cart plugin the message should contain "Please select ...". Probably you don't use the Ajax Cart plugin. If you can send us a link to your web site and to a specific product page so that we can take a look would be great.

Thanks

mtek wrote:
Hi ,
I try to use mega menu left side for categories . And i changed widget name then i see mega menu
left side but for apperaence how can i change to be like this .
http://peraport.nopdestek.com/content/images/thumbs/menu_1.png with normal and with pictures .



Hi mtek,

I think is all about making the right css changes to the menu, so that it looks like you want it to look like. I don't think you will need to change the markup of the Mega menu to achieve this but I am not 100% sure.

Thanks

Bugs
11 years ago

_andy1 wrote:

Is this fixed?


Yes, we have improved the loading of the images. Please update the plugin as described here.

Thanks

11 years ago

fakeplacebo wrote:
Hi there,

I made some custom changes with theme roller and dowloaded themeroller.css file

I deployed and copied in themes-->NeoFashion-->content-->css

but my Neo Fashion theme is still in defaults.

Could you tell me what I'm missing?

(Not that; today I'm getting errors while trying to download a new themeroller.css)

regards


Hi fakeplacebo,

Thank you for reporting this!
Now you can download the themeroller.css file. Simply add it in the correct folder and it should be fine. Please let me know if you still have any issues.

Best Regards,
Nop-Templates.com Support Team

Bugs
11 years ago

[email protected] wrote:
we have couple of bugs
1- javascript error on IE 8 as in the link below
http://im37.gulfup.com/HesF0.jpg

2- when converting to RTL interface we can't select check-boxes in the filter when using IE8.0


Hi [email protected],

Thank you for reporting these issues!

We will investigate and will let you know when we are done with the fix.

Thanks

Bugs
11 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

11 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

11 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

11 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