Close

Profile: Deni

Avatar

User posts

9 years ago

Oakstone wrote:
I want to create custom menu items that are editable in the admin area. This way we do not need update code when users want to add items. I've added a widget zone in SupportWidgetZones.xml and added the zone in MegaMenu.cshtml. I've created the widget and it appears in the menu.

The issue is the that tinymce autocorrects the HTML. For example
<li><a href="mylink">my link text</a></li>
is converted to
<ul>
li><a href="mylink">my link text</a></li>
</ul>

Any thoughts on how to turn off the autocorrect or how to add a widget as a menu item correctly?

Thanks.



Hello,

This is how the TinyMce works and we can not avoid it.

I suggest you to use another tag, then a <li> and style it with the same properties.

Another variant is to call the new widgets inside the <li> tag and in the editor must have only a link. For example:

<li>@Html.Widget("my_custom_link")</li>


I hope that helped you.

Best Regards,
Mladen Staykov

9 years ago

bariskd wrote:
Hi,

I added picture property to vendors. However, the mega menu plugin will not show in the photos. How can i solve this problem ?


Hello,

Unfortunately, the MegaMenu vendors does not show picture. If you want this functionality, please suggest it in our user voice portal.

Best Regards !

Slider store
9 years ago

gnikspam wrote:
I have two stores. Slide shows on two stores. I chose the topic stores only one.


Hello,

I suppose you use old version of the Anywhere Sliders plug-in. Please update it to the latest version.
If you use the latest version, please write to our support email, providing us a link and credentials to your website.

Best Regards !

aswaaq wrote:
please check the link below

http://themes.electronics.nop-templates.com/producttag/7/tablet

on this theme page filters (view as/display/sorting) are working fine.

i want the page filter styles on this page..


On the product tag page the "view as/display/sorting" dropdowns are the default from the nopCommerce, so you need to style them on your own.

aswaaq wrote:
Hi There,

Ajax page filters not showing on producttag page.

AjaxFilters.css is not loading on this page. please let us know how to solve this issue

thanks



Hello,

The Ajax Filters plug-in works only on Category page, Manufacturer page and Vendor page.

Best Regards !

9 years ago

hkreklame wrote:
Is there a way to differ the placement of the mega menu? I would like it to appear inside a different div.


The MegaMenu is placed in the widget zone specified in this file: ~\Plugins\SevenSpikes.Nop.Plugins.MegaMenu\SupportedWidgetZones.xml. You can change this widget zone:

<WidgetZone>content_before</WidgetZone>


to whatever you want.

For example you can add a new widget zone to your code and set the MegaMenu to use it.
Or you can just find where this widget zone is called and wrap it in a element by your choice.


If you use our theme, then you can just go to _Root.cshtml file and you will find logic like this:


        @{
            var menu = @Html.Widget("theme_header_menu");
        }

            <div class="header-menu">
                @if (MvcHtmlString.IsNullOrEmpty(menu))
                {
                    @Html.Action("TopMenu", "Catalog")
                }
                else
                {
                    @menu
                }
            </div>


Now you can take all this logic and move it wherever you want.

Hope that helped you!

Best Regards !

Bugs
9 years ago

yarik wrote:
May be it's valid by http://validator.w3.org/ , but if you open a firebug with net tab or fiddler you will see that src="#" cause for extra requests to the same page
and as result page load is very slow
Take a look  for a screen  please
http://snag.gy/4gN6M.jpg

Yarik


Hello,

Yes, you are almost right. We have two more requests, but because browsers make asynchronous requests for each element, these two requests do not slow so much. We will change the src to be some base64 transparent image.

Thanks you for reporting this !

9 years ago

We have replied you here: http://www.nop-templates.com/boards/topic/209/bugs/page/6#6275.

P.S.
Please, do not duplicate topics for one and the same problem.

Regards !

Bugs
9 years ago

yarik wrote:
MegaMenu Plugin Load twice the page some time more

src="#" can't be #



Hello,

The MegaMenu plugin uses lazy loading for the images - that means we load all images in the MegaMenu with ajax. The MegaMenu loads only once on page call and when you hover it, the thumbs in it load.

You can see that img src="#" is valid html, by validating this code on  http://validator.w3.org/ :

<!DOCTYPE html>
<html>
<head>
<title>Nop Motion Responsive Theme Demo Store</title>
</head>
<body>
<img class="lazy" src="#" alt="image" />
</body>
</html>


Best Regards !

9 years ago

tleeman wrote:
In some areas like Featured Products, Best Sellers, Categories, and Manufacturers pages of the Lighthouse, Alfresco, and Alicante themes, a mouse hover over a product produces the short description text to roll into the product window as an overlay from either a vertical (Lighthouse / Alfresco themes) or a horizontal (Alicante theme) direction.  Can the direction of this feature be changed or disabled?  What files would have to be modified to allow this flexibility?  I have the Alfresco theme and nopCommerce version 3.20, thanks.


Hello,

To make these changes you have to be familiar with CSS. Before you start editing the styles, it is good idea to back-up your files. You must make changes to this file: ~\Themes\Alfresco\Content\css\styles.css , find this rule: .item-box .details. Edit it and the rules for the elements inside .item-box .details.

If you want to change the item-boxes in the JCarousel you have to change the JCarousel CSS file.

Hope that helped you !