Close

Profile: Deni

Avatar

User posts

10 years ago

jacqh wrote:
Has this issue been resolved? One of our customers has noticed this as well and are asking us to fix this.


Hi,

Yes, this issue has been fixed in the middle of July. You can update your products.

Tool Tips
10 years ago

ActionVictoria wrote:
Hi all,
Does anyone know how to remove the tool tips from the mega menu?
I don't think they are necessary..

Thanks
Shelley


Hello,

Actually the 'tooltips' are the titles of the links, which are highly recommended to exists, because they are indirectly improving the SEO.

We do not recommend to remove them. Anyway, if you want, you can open each view in this folder and remove the title attributes: \Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu.

10 years ago

Ferrycy wrote:
Is there a documentation on how to integrate Store Locator? Documentation section of this website seems to not have any link to any docs.

Thank you!


Hello,

The documentation is still under construction.


Generally, in the administration you should choose where your stores are situated and insert some information like working hours, contact information and pictures.

If the plugin is enabled as widget a link will appear in the main menu, leading to the page All Shops. This page contains a list of all physical shops with their main picture and short description. Also it contains a map with all shops showed on it.

If you have any other questions, do not hesitate to ask here.

10 years ago

linkxperts wrote:
The slider in the Allure theme is sizing along with the page width.
Can I disable that?

I want to keep the images in the slide the same height at all times.

Thanks,
Marcel


Hello,

Keep in mind that this feature is made on purpose, because when you look the site on a mobile device the viewport of the device can be for example 400x500px. Then the slider will take the whole screen and will be really annoying for the user to see it.

Anyway, you can achieve the fixed height by finding this rule:

.nivoSlider img {
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: none;
}


Inside this file:

\Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Styles\nivo\themes\nivo-slider.css

Now just edit the rule to look like this (you may edit the height by your taste):

.nivoSlider img {
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: none;
  width: auto !important;
  height: 450px !important;
/* edit the height */
}


I should say it once again: we do not recommend this, because it will ruin the mobile users experience.

10 years ago

radoslavy wrote:
Hello guys,
Is there a way that I can show my Jcarousel products in category of my choice ?


Hello,

Unfortunately, there is no such functionality in the JCarousel plug-in.

Still, there is something that can be done, but it is not highly recommended:

Lets say you use this widget zone: "categorydetails_top"

Inside the file(check if it is overridden in the theme folder): Views/Catalog/CategoryTemplate.ProductsInGridOrLines.cshtml

find this line:

@Html.Widget("categorydetails_top", Model.Id)


and replace it with these:

@{
  var categoryIds = new List<int> { 2, 3, 4 }; // Inside the curly brackets you can list all category IDs, comma separated

  if (categoryIds.Contains(Model.Id))
  {
    @Html.Widget("categorydetails_top", Model.Id)
  }
}

ehubcap wrote:
Thank you Deni, I was waiting for you answer.
I also was guessing... this will be hard.. and indeed it is.
I already had edited the code at
~Themes/Motion/Views/Shared/_Root.Head.cshtml
because obviously there is where it reside and is parsed first, however the the whole
~Themes/Motion/Content/css/styles.css
file... oh boy!
Well on the bright side, if this fix the bug, it will be worthwhile

Thank you again Deni, good effort, good job
Jose


Well,

Don`t worry, you do not need to change the whole styles.css, just add this peace of code:

.android23 #goToTop {
    display: none !important;
}

ehubcap wrote:
Thank you Deni; question:
Will this fix require updating the Theme, pluging packages or just the megamenu plugin?


Hello,

You must update these files:

~Themes/Motion/Content/css/styles.css
~Themes/Motion/Content/css/mobile-only.css
~Themes/Motion/Content/scripts/Motion.js
~Themes/Motion/Views/Shared/_Root.Head.cshtml

Best Regards !

ehubcap wrote:
Thank you for responding support.
•  I tried the sites on every major browser, Opera, Yahoo, Google, same result, the nav wrapper menu is stuck to the viewport, it appear as soon as you open the site url, furthermore, tapping the back link doesn’t work either.
•  I checked the demo themes out Nop-Templates site, same issue there
•  Flipped the device to landscape, not helping
For comparison I tested http://www.CARID.com and the site works flawlessly on same said android HTC incredible.
I concluding that somehow there is a bug in the theme views that need to be corrected
What’s your take?
Advise
Thank you
Jose
Ehubcap.com


Hello,

The problem with MegaMenu in Android 2.3.x was fixed and you can update your themes.

Best Regards!

10 years ago

Lucrasoft wrote:
Hey Deni,

I just enabled the CategoryMenuTemplate.WithPictures but I can't get it to work. How am I able to show the categories inside the root category instead of the root category itself?

Thanks in advance.


Hello,

I didn`t quite understand your question.

In the template with pictures you have the main category and next to it you have the first subcategories shown as links.

Please try explaining further, also mention is the setting Show categories in a single menu on/off.

10 years ago

lacorne wrote:
Hello,
On the home page slideshow in ArtFactory theme.
I would like to customize the anywhere slider “Nivo” slider to be define with a specific width.
Currently it is set at 100% in the ArtFactory theme, tacking the full width of the screen.
Could you give me some pointers where to do the customization?
Thank you,


Hello,

You must change the CSS for the slider by going to this file: ~\Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\ArtFactory\Content\nivo\nivo.css

Then you must find this rule (it is supposed to be in the beginning of the file):

.slider-wrapper {
    position: relative;
    z-index: 1;
    margin: 0 0 30px;
}


and change it this way for example:

.slider-wrapper {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  max-width: 1300px; /* YOU CAN CHANGE THIS WIDTH BY YOUR TASTE */
}


That is all you need !

Best Regards.