Close

Profile: Boyko

Avatar

User posts

12 years ago

cicciuzzo wrote:
How can I put related products in a tab?

I created a tab active in a category of products and vorreri than inside it shows the products are related ... how can I do??

hi



Hi cicciuzzo,

You need to modify the view of the Tabs and add a new tab with the related products.
Edit this file Plugins\SevenSpikes.Nop.Plugins.NopQuickTabs\Views\ProductTab\_ProductTabs.cshtml and add the code below on line 206.

@{
                    var relatedProducts = Html.Action("RelatedProducts", "Catalog", new {productId = Model.ProductId});
                    divs.Add(new KeyValuePair<string, string>("tabs-rp", relatedProducts.ToString()));
                    <li><a href="#tabs-rp">Related Products</a>
                    </li>
                }  


This code will add a new tab with the related products.
Please note that you should NOT have Ajax enabled in the tabs.

Hope this helps!

mstuart wrote:

Hi mstuart,

In which theme did you test?
Thanks

I first noticed it on my custom theme.  However, I observed the same issue when I browsed to the Nop Ajax Filters demo page. http://demos.nop-templates.com/monitors

Using Google Chrome - Version 30.0.1599.69 m


Hi mstuart,

I just played with the filters on our demo and I can see the ajax loader. Our demo is quite fast but you can still see it for nearly a second. Actually the ajax filter is a gif that always spins, so it is no possible that it is not spinning but rather it is not shown in your theme. Please check the css of the ajax filters for your custom theme to see if you haven't accidentally broken it.

Thanks

Bugs
12 years ago

domenico.neri wrote:
Hi, it seems your plugin doesn't check categories ACL settings.

I'm using 3.1 version of it.

Can you help me please?


Hi domenico.neri,

Yes, the Nop Categories Header Menu doesn't check ACL.
If you want full ACL support you should use the Nop Mega Menu plugin.

Best Regards,
Nop-Templates.com Support Team

mstuart wrote:
I'm testing the Nop Ajax Filters in IE, Google Chrome, Mozilla Firefox, etc and noticed that the AjaxLoader.gif is not animated (does not spin) in Google Chrome browser.


Hi mstuart,

In which theme did you test?

Thanks

12 years ago

olallaskibum wrote:
I love the theme, but if you use the colored squares option for selecting a color, every category that contains that product will cause the ajax filtering plugin to throw an error.


Hi olallaskibum,

Could you please update the Ajax Filters plugin as we fixed a few issues with the color squares, so this might have already been fixed?
Simply follow the instructions here. You could also uninstall and then install the Ajax Filters again. Actually we are going to add some new features to the Ajax Filters plugin today, so you can do that later today.

Please let me know if you still have this error after the update.

Best Regards,
Nop-Templates.com Support Team

brischt wrote:
Hi,

last night, I upgraded my nopCommerce installation from v3.0 to v3.1 and also upgraded to the latest responsive Fashion theme.
Everything seems to work well, except I noticed that on mobile devices, the MegaMenu is not being rendered (which, of course, makes the mobile site unusable for the customers as they cannot browse the store).

I have seen this happening on a WP8 phone (Lumia 925) and an iPhone 4, both in landscape and portrait mode.

Does anybody have an idea what's going wrong with the MegaMenu?

Thanks,

Roland


Hi Rolan,

You need to go in the administration and then go to Plugins -> Mega Menu -> Settings.
Then check the "Enable Responsive Menu:" checkbox and save the changes.

Thanks

brischt wrote:
Hi,

I was just wondering whether there is any way to make an Anywhere Slider scale down the images in a responsive theme so that the whole pictures are displayed on devices with smaller screens instead of only a part of the image?

Thanks,

Roland


Hi Roland,

The Nivo slider in the Anywhere Sliders plugin is responsive, while the 2D Slider is not. You should use the Nivo slider if you want it to be responsive.
You can check our responsive theme demos to see that the Nivo sliders properly resizes the images.

Thanks

12 years ago

manishak79 wrote:
hi Boyko,

As you suggested i update my theme and  plugins now Currency dropdown is working properly but other things are mess now on home page product with big images are appear also filter is not working now. is there any other changes i have to do?

thanks


HI manishak79,

If you have updated properly as described in the article and you haven't made any modifications then you should be fine.
Just clear your browser cache as the updated styles to be properly loaded.
You need to uninstall and then install the Ajax Filters plugin again as we made an improvement to the plugin that requires it to be uninstalled and installed again.

Please let me know if everything is working fine then.

Thanks

12 years ago

cicciuzzo wrote:
I saw how to associate a tab to a specific product ...

but how do I customize the content for each specific product? For example if I bind a data sheet of the product to the product drill, this data sheet is different from one product to another ..

is possible to customize this content?
hi


Hi cicciuzzo,

You need to create a new tab for each product and then customize each tab separately.

Thanks

Hi CISParts,

I don't think your error is caused by the changes you have described. As if you use the ShopAll theme then the ProductTemplate.xxx files are loaded from the Themes\ShopAll folder and not directly from the Views folder as you have shown. You should have done something else that causes this error.

P.S: Isn't the error because you are trying to open the product template file in the browser? VS usually tries to open the same Razor view file you are editing when you start debugging but these files could not be accessed via web they are used by the MVC framework only.

Hope this helps!

Best Regards,
Nop-Templates.com Support Team