Close

Profile: IvanStoyanov

Avatar

User posts

11 years ago

chenos7 wrote:
Hi,

I would like to know how to create the same look and feel like the demo fashion store.

Can someone please help (guide) me to configure my store to have a look the same as the fashion demo store?

Thank you,
Chen



Hi Chen,

Please read our online documentation for the Fashion theme http://www.nop-templates.com/Help/NopFashionTheme/Version_2_8/readme.html

Ivan Stoyanov

bubli wrote:
Hi,
I noticed that page load time with Nop Ajax Cart enabled is much longer then it was before so I did some investigation. I found out that the reason is calling GetAddProductToCartAjaxButton action method through AJAX for every product listed on the page. One call takes ~80ms and is performed in serial for all products, resulting in ~1 sec page load lag for catalog page with 12 products (my default).
Result of this call is pretty simple HTML with few input tags, so I'm assuming it can be called using Html.Action (thus saving client <-> server roundtrips) or even better rendered using Html.Partial (saving also ASP.NET MVC request overhead).

Exactly the same problem appears in product details page with multiple variants - NopAjaxCart/GetAddProductVariantToCartAjaxButton action method is called count_of_variants_times

This can give us major performance and UX gain ;-)

Thanks!
Marek



Hi bubli,

Can you send us an email to support (at) nop-temolates.com. We have made the ajax call that is replacing the buttons to be async, so there should not be page load lag. We will send you the new .js file.

Due to the widget integration of the Nop Ajax Cart plugin, it is not possible to use Html.Action. And because the Nop Ajax Cart is making some calculations before replacing the default "Add to cart" button it is not possible to use Html.Partial.

Ivan Stoyanov

11 years ago

shayt wrote:
hi,
the direction solved,
but now there are two problems -
1. there is an empty space (because the float is left instead of right)
2. when you press on the right arrow, i don't see cycle of the products like i declared

Thanks,
Shay


Hi,

Replace the following code:

bool supportRtl = EngineContext.Current.Resolve<IWorkContext>().WorkingLanguage.Rtl;
    if (supportRtl)
    {
        Html.AppendCssFileParts("~/Plugins/SevenSpikes.Nop.Plugins.JCarousel/Themes/" + Model.Theme + "/Skins/skin.rtl.css");
    }
supportRtl = false;


with:

bool supportRtl = false;


Ivan Stoyanov

11 years ago

shayt wrote:
if you look at http://demos.nop-templates.com/
when you press on the right arrow, the items goes to the left
i want it to be also on my site (which is RTL theme), currently it goes to the right.



Hi shayt,

To do this you need to go to /Plugins/SevenSpikes.Nop.Plugins.JCarousel/Views/JCarousel/JCarousel.cshtml In the view find the following code:

bool supportRtl = EngineContext.Current.Resolve<IWorkContext>().WorkingLanguage.Rtl;
    if (supportRtl)
    {
        Html.AppendCssFileParts("~/Plugins/SevenSpikes.Nop.Plugins.JCarousel/Themes/" + Model.Theme + "/Skins/skin.rtl.css");
    }


add the following line right after the code (line 24-25):

supportRtl = false;


Ivan Stoyanov

11 years ago

rvbob wrote:
Just downloaded classic theme with plug-ins on my local computer

Theme has 2 columns not 3, how do i change themes to 3 columns?

If i place plug-ins in plug-in folder site will not load (error messages galore)  where do i put plugins when using local computer.  


Hi rvbob,

The nopClassic theme is a 3 column theme not 2. You can see that on our demo store here. Just select the nopClassic theme from the dropdown in the upper left corner.

If you are using the source code version of nopCommerce you need to extract the plugins in the /Presentation/Nop.Web/Plugins/ folder. If you are using the no source code version you need to extract the plugins in the /Plugins/ folder.

Ivan Stoyanov

11 years ago

jdyer wrote:
2.70

I have a category that is only visible to registered shoppers. When browsing (guest) to the store I do not see the category from the megamenu - perfect. After logging in, the category shows as expected - perfect. When I log out, the category continues to show -bug?- but there is no response clicking on the category. The category under ACL continues to show when I'm a guest on the store even after I close my browser and open it again... clear temp files...

It only seems to correct itself if I make some modification to the plugin (like turning it off and back on).


Hi jdyer,

This is happening, because the model for the Mega Menu is cached. After changing the ACL ,you can click on the Clear Cache button in the administration to clear the cache of your website and the problem will be solved. Unfortunately we are not able to do this automatically, because nopCommerce is missing this functionality, yet.

Ivan Stoyanov

Bug in IE7
11 years ago

alextretij wrote:
In NivoSlider.cshtml

You must delete comma after randomStart: false.

Your code

                 pauseOnHover: @Model.Settings.PauseOnHover.ToString().ToLower(), // Stop animation while hovering
                manualAdvance: false, // Force manual transitions
                prevText: '@Model.Settings.PrevText', // Prev directionNav text
                nextText: '@Model.Settings.NextText', // Next directionNav text
                randomStart: false, // Start on a random slide
            });
        });            
    </script>

in IE7 is not working

Change code such
                 pauseOnHover: @Model.Settings.PauseOnHover.ToString().ToLower(), // Stop animation while hovering
                manualAdvance: false, // Force manual transitions
                prevText: '@Model.Settings.PrevText', // Prev directionNav text
                nextText: '@Model.Settings.NextText', // Next directionNav text
                randomStart: false // Start on a random slide  Del Comma
            });
        });            
    </script>



Hi alextretij,

Thank you for reporting this problem.

We fixed it.

Ivan Stoyanov

Lokesh wrote:
Hi Ivan Stoyanov,
Thanks for your reply...I have one more doubt regarding plugins.
With Nop Classic Theme package i got 7 plugins...but, i don't want all those, among them i want only two plugins.so, if i install only two plugins will it works fine or need to install all the plugins.....


Hi Lokesh,

The plugins are independent from one another, so they can work separately. The only plugin that they are depending one is the Core plugin. So the Core plugin should always be installed if you want to use any of our plugins. As for the other plugins, you can uninstall any of them and the others will work.

Ivan Stoyanov

Lokesh wrote:
Hi,
I am using Nop Classic Theme in my nopcommerce 2.8 version.I installed it successfully. each and everything is fine, but sometimes while i am running my website i got a message "you are using trail version of nopmegamenu"........could you please tell me how to solve this problem


Hi Lokesh,

Thank you for choosing our products.

This message appears, because you are running a trial version of the Nop Mega Menu plugin. The Nop Classic theme comes with the trial version of our Nop Ultimate Plugin Collection and when you install the theme you also install the plugins. When you are running a trial versions of our plugins a trial message will appear. I recommend that you buy the plugins. As you can see the plugins greatly improve the look and feel of nopCommerce. Also you will get an outstanding support, constant improvement with new features and bug fixes and support for future versions of nopCommerce.

To remove the message you can either purchase the plugins, disable or uninstall them.

Have a wonderful day.

Ivan Stoyanov

Lokesh wrote:
Hi,
    I was installed nop classic theme..now i want to  display the logos of manufacturers under menu which is like in demo.
can any one suggest me plz......


Hi Lokesh,

You can not display the logos of the manufacturers with the Nop Categories Header Menu plugin. To do this you need to use the Nop Mega Menu plugin. You should have a trial version of the plugin with the nopClassic theme.

For more information, please refer to our online documentation.

Ivan Stoyanov