Close

Profile: Deni

Avatar

User posts

Bugs
10 years ago

tomerza wrote:
I have problem to add product on category page and home page if the product has attributes.

http://www.newpangourmet.co.il/%D7%A7%D7%95%D7%A6%D7%A6%D7%99%D7%9D-%D7%95%D7%9E%D7%A2%D7%91%D7%93%D7%99-%D7%9E%D7%96%D7%95%D7%9F

when i try to add product it has an javascript error:
Uncaught ReferenceError: priceValForDynUpd_1925 is not defined 



Hi, 

Please ensure you have this setting checked: Configuration > Settings > Catalog Settings > Enable dynamic price update. For further technical assistance, please submit a ticket in our ticketing system.

10 years ago

Hi, 

I am not sure that the sliders can handle SWF format, because it is Flash content. Anything that is considered image format, can be used.

NOTE: nopCommerce does not support animated GIFs.

nopmstr2014 wrote:
Hi Everyone,
For one specification attribute we have hundreds of specification attribute options.
When viewed in browser filtering looks fine , but when viewed in mobile the specification attribute option list is too long so it hard to navigate.
Are there any settings or ccs code change we can make ajax filtering look better for mobile version?

Thanks in advance



Hi,

This was discussed already here. In addition to this I should mention that if you want both product specifications and product attributes to have max height, use this code (It is up to you to set the max height value):


.specificationFilterPanel7Spikes ul,
.attributeFilterPanel7Spikes ul
{
  max-height: 300px;
  overflow: auto;
}

10 years ago

BlueMed wrote:
Dear Support Team,


I have totally 6 category,I want to show 3 categories per row on top menu with pictires. how can i Do that. Right now it is showing 4 categories on first row of Top Menu, and 2 categories on second row
Top Menu.

Regards,
Ela
BlueMed Development Team


Hello,

There is a hidden setting about this: go to the administration, click Configuration > Settings > All Settings(Advanced) and now search for this key megamenusettings.numberofcategoriesperrow. Edit this setting to become 3.

I hope that helped you.

10 years ago

yogesh wrote:
Hi Team,

One more question related with this,that how should i add FAQ link to menu.

I saw the mega-menu setting as well but there is no option for FAQ.

Please help me for this question.

Thanks

Regards,
Yogesh D.


Hello,

You should go to this file: \Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\MegaMenu.cshtml. Inside it you will find function:

@helper RenderMegaMenu(bool isMegaMenuResponsive)
{
          // some LIs are built here.
}

Somewhere inside this helper add this row:

<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("faqSeName") })">@T("FAQresource")</a></li>

Now just replace the SeName and the resource with yours and everything should work.

10 years ago

[email protected] wrote:
I have the menu configured to show the vendors and have 2 entered in NOP but on the public store the drop down does not show.  I added some trace comments in the plugin and when it goes to print the drop down the count is 0 vendors but i have 2 that are active.  Is there a bug with vendors?  Using 3.4.

Thanks


Hello,

The Mega Menu plugin takes under consideration and the setting in Configuration > Settings > Vendor Settings - Number of vendors to display. It should be set to more than zero.

10 years ago

ratheeshel wrote:
Hi,

I have purchased the Nop ArtFactory theme few days back. I would like to know if you can guide me to achieve a fixed header which stays there when you scroll down the page?

E.g: Nop Motion Responsive theme. You have the functionality here perfectly implemented as i needed. The headers stays on the top even if you scroll down.


Hello,

You can just add this CSS to your Custom Head Styles:

@media all and (min-width: 1001px) {
  .header-menu.stick {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin-top: 0;
    background: #fff;
    border-bottom: 1px solid #999;
    box-shadow: 0px 0px 10px 0px #888;
  }
}

Bugs
10 years ago

Hello,

I suppose you use old version of the theme. This was fixed on the 2nd of September. Now the code looks like this:

if (!string.IsNullOrWhiteSpace(Request.UserAgent) && Request.UserAgent.IndexOf("Android 2.", StringComparison.InvariantCultureIgnoreCase) > 0)
    {
        isAndroid23Class = "android23";
    }

10 years ago

Hello,

The MegaMenu plugin uses the standard caching in the nop. When you edit a topic you should clear the cache in order to have the MegaMenu updated. You do not need to restart the application. I just tested it and it works perfectly.

ehubcap wrote:
The issue reappears on Nop Traction Responsive Theme, can you look at and let me know when a solution will available


Hi,

Have you tried reproduce the bug on our demo site ?

I have tested it and it works. Maybe you are using old version of the theme. The issue has been fixed in the middle of August. So, please update your theme and see if the problem still exists.