Close

Profile: Deni

Avatar

User posts

10 years ago

pdesignz wrote:
I am using Nop 3.3 and wanted to see if there was a way to have a combination of the mega menu styling. I like the categories with pictures option for my store product categories, but would prefer the single list option for all other menus. Is this possible, or would be one or the other and no option to combine.

thanks



Hello,

This behaviour can be easily achieved only by CSS.

I will provide you a sample CSS that can change the look of the manufacturers dropdown(Note that this is just a sample CSS and will not look good enough on all themes!).

.manufacturers .box {
  float: none;
  padding: 0;
  width: 100% !important;
}
.manufacturers .box > ul {
  display: none;
}
.manufacturers .title {
  border: none;
  padding: 0;
}


If you want similar complete functionality, you can suggest it to our user voice portal:

https://noptemplates.uservoice.com/forums/151226-nop-templates-com-products-feedback

Best Regards !

10 years ago

pdesignz wrote:
I would like to add some additional topics to the mega menu, especially sub-menu items contained within the About Us and adding additional parent level topics. Using NopCommerce 3.3

Thanks


Hello,

You can do this, but you have to be a little familiar with html and css.

If you want to have to have top level topics you have to go to this file:

~\Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\MegaMenu.cshtml

and find this helper: @helper RenderMegaMenu(bool isMegaMenuResponsive)

inside it, you can add your top level links and they can be as many as you want with the following structure:

<li>
       <a href="yourLinkToTopic">Your Topic Title</a>
</li>


To achieve About Us sub-menus you must be familiar with Razor and it is a customization that is out of our support line.


Best Regards !

10 years ago

ehubcap wrote:
Running Google PageSpeed insights metrics to improve my http://ehubcap.net site performance it flagged a warning as follow:
"Consider Fixing:
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Your page has 1 blocking script resources and 2 blocking CSS resources. This causes a delay in rendering your page.
None of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
Remove render-blocking JavaScript:
http://ehubcap.net/…mFFR0lejVCKoiYRAdoiror7VXF_PHOFqCmgyDwE1
Optimize CSS Delivery of the following:
https://fonts.googleapis.com/css?family=Open+Sans:400,300,700
http://ehubcap.net/…Z1H5ti-cY9WajlKPD-WxLNe6e6as8Hn-A9JRlVg1"

This seem to be a reference to the mobile mode of the responsive media queries bundling structure coded for the Theme.
What feasible solution can be achieve to solve this?
Google will penalize our ranking if we don't abide by this compliance guideline
Advise please
Jose
ehubcap



Hello,

The scores you get on the Google PageSpeed tests are really impressive. There are few sites that can get such high scores - 82/100 and 91/100.

The warnings that Google shows you are that the JavaScript and the CSS file are too big and this slows down the page. Google says that, because the files are bundled and they are bigger than its standard file size. But if you have all the javascript and CSS files separately this will be awful - you will have between 10 and 30 more requests to the server on each load - And it will not be faster.

There is no place for bothering! Even sites like facebook, google and youtube has lower page speed, so do not think that your score will affect your ranking badly.

Best Regards
and
keep the good work !

Bugs
10 years ago

hayco83 wrote:
Hello,

Thanks, I've downloaded and updated the MegaMenu plugin.

Still I've one issue however. It's when the number of Manufacturers is greater than "Maximum number of manufacturers" set in MegaMenu settings (with template set to "grid with pictures") -- I don't find the "View all manufacturers" link in the Manufacturers menu.




Hello,

Yes, when you are in categories with pictures template you have no view all manufacturers link, because it will not look pretty(there is no picture for all manufacturers). You have the link Manufacturers as a main link in the menu. It leads to the page All manufacturers.

Regards !

Bugs
10 years ago

hayco83 wrote:
Hi,

I've two bugs in Playground 3.3

1) in MegaMenu, when the number of categories is more than "Maximum number of categories in category item" I expect to see "View all categories" link as advised. But in fact this link is not shown

2) In MegaMenu, when I enable "Include topic:" under "Mega Menu Items Settings" -- the MegaMenuTopic is added to the Mega Menu, but when I hover on this topic its content is displayed which is fine. However clicking on the topic title doesn't do anything. I expect clicking on this topic should let me go to the topic page. For mobile users, they cannot access the topic page because clicking on the topic title does nothing.


Thanks


Hello,

I suppose you have not the latest version of the MegaMenu plug-in.

Also the 'view all' link will not be shown if the category template is set to 'Infinite Categories'.

I believe that when you update it, all your problems will disappear.

Best Regards !

10 years ago

fun123 wrote:
So, first time im having problem like this, but actually i have to use content before widget zone, and i cant, because megamenu is between master wrapper and content before zone. How can i solve this, you in your code hide header menu, and instead of using its div, you place another one that is not even in the header menu div, which makes megamenu under content before zone...


Hello,

There is no straightforward way to use the header menu div (on themes that are not ours). In our themes we replace the default menu with ours.
As you can see in the SupportedWidgetZones.xml file in the MegaMenu plug-in, the widget zone in which we place the MegaMenu in other themes is content_before. You can change this widget zone to whatever you want or you can create a new widget zone right after content_before and use it for the MegaMenu. Feel free to place the MegaMenu wherever you want.

Regards!

10 years ago

IvanSlater wrote:
The mini cart is ok. The problem is my topcartlink div.
I have made some customization. Can you help modify the ajaxcart.js to get it done?

Thanks!

<div id="topcartlink">
    <div class="cart-title"></div>
    <div class="cart-qty">
        <div class="text-wrapper">
            <a href="/cart"><span class="qty">3</span><span class="text">item(s)</span><br /><span class="total"><b>$ 35,70</b></span></a>
        </div>
     </div>
</div>



Hello,

I think your selectors are not correct. The Shopping Cart Menu Link Selector: setting must be ".header-links .cart-qty .qty".

You must match the selector in order to have everything working.

Unfortunately, we can not help you with modifying the javascript file.

Regards !

optimido wrote:
Sorted it, thanks.

Had used the view '_ColumnsOne.cshtml' with the @Html.Widget("home_page_top") widget. Split into another one and named it '_ColumnsOneHomepage.cshtml' and then put the @Html.Widget("home_page_top") widget in there only.

Thanks


We are glad that you have found a solution to your problem.
If you have any other problems, just contact us.

Regards!

10 years ago

IvanSlater wrote:
How can I update mini cart information after added product to the cart?

The mini cart is updated only if page is refreshed.

Thanks!



Hello,

One of the main functions of the Ajax Cart plug-in is to update the mini shopping cart. If it does not work there are two possible things causing it:

1. Please be sure that the selectors in the admin part match your mark-up. You can see them in the admin site > Plugins > Ajax Cart >Ajax Cart Selectors Settings tab.

2. Also be sure you have not any javascript errors.

Best Regards !

haik wrote:
Nevermind! :-)
I just found that you've already considered this need/want. In ....\Presentation\Nop.Web\Themes\Lighthouse\Views\Catalog\_ProductBox.cshtml
I simply uncommented the button on LN:68 and commented below button (and arg) to swap "add to cart" for "details"

Piece of cake... thanks to your good work!!!



Hello,

We are glad that you have found a solution. That is the right way to do it !

Regards!