Close

Bugs

botman86
8 years ago
#9424 Quote
Avatar
  • 5
I've send to you my user & password (as you asked to me) , but i've received only the automatic response.
iliyan.tanev
8 years ago
#9426 Quote
Avatar
  • Moderator
  • 347
Hi,

Did you send your credentials as a response to the ticket or as a response to the notification email ? 

We do not track the notification email it is simply used to make the tracking of your ticket easier for you. You need to respond to the ticket itself from our ticketing system.
When you go to My tickets from your account in nop-templates you should see your ticket.
Regards,
Iliyan Tanev
Nop-Templates Dev Team
botman86
8 years ago
#9427 Quote
Avatar
  • 5
Yes I replied by mail notification, sorry. Now I 've replied to the ticket itself.

I hope you can solve the issue.

Thanks in advance

bye!
infiniti
8 years ago
#10220 Quote
Avatar
  • 10
When I reduce the size of the browser the logo comes over other things when site is in mobile mode. 

Also when I hover over the categories they are always behind the social media links and footer.

You can visit http://thesylphstore.com
Peter.Zhekov
8 years ago
#10226 Quote
Avatar
  • Moderator
  • 104
infiniti wrote:
When I reduce the size of the browser the logo comes over other things when site is in mobile mode. 

Also when I hover over the categories they are always behind the social media links and footer.

You can visit http://thesylphstore.com


Hi there,
Thank you for your report. It will helps us to improve the theme.
Please add the following styles in the your theme 'Custom head styles':
This will solve both problems with the theme logo in mobile resolution and for the mega menu categories:

@media all and (max-width: 1000px) {
.header.normal .header-logo {
    left: 0;
    position: absolute;
    top: 100%;
}
.header-logo a img {
    max-height: 100px;
    max-width: 100%;
}
}

@media all and (min-width: 1001px) {
.master-wrapper-page{
    overflow:visible;
}
.master-wrapper-page:after {
    content: '';
    display: block;
    clear: both;
}
}
Regards,
Peter Zhekov
Nop-Templates.com
infiniti
8 years ago
#10230 Quote
Avatar
  • 10
Thank you Peter for your response, it solved both the problems. One more thing is that my category names are long so the box in the mega menu is cutting the letters at the end of a long name instead it should wrap the text if the name is long. Also is there a way that the pictures are not shown in the menu and only categories are shown in the grid.
Peter.Zhekov
8 years ago
#10237 Quote
Avatar
  • Moderator
  • 104
infiniti wrote:
Thank you Peter for your response, it solved both the problems. One more thing is that my category names are long so the box in the mega menu is cutting the letters at the end of a long name instead it should wrap the text if the name is long. Also is there a way that the pictures are not shown in the menu and only categories are shown in the grid.


Hi there,

This can solve the issue with the long word if you add this styles below. Please add the styles in the custom head styles.

.header.normal .mega-menu .dropdown.categories.fullWidth .box .title a {
    word-wrap: break-word;
}

There is just one small disadvantage, that this style breaks the word incorrectly (you can have only one letter in new line, which is not correct).
Unfortunately there is no other way to solve this problem.

If you want to remove the images, you should add the following code in the custom head styles (in case you want it back, just delete or comment the code).

@media all and (min-width: 1001px) {

.header.normal .mega-menu .dropdown.categories.fullWidth .box .picture {
display: none;
}
.header.normal .mega-menu .dropdown.categories.fullWidth .box::after {
display: none;
}
.header.normal .mega-menu .dropdown.categories.fullWidth .box {
margin: 0 5px 10px;
width: 228px;
}
}
Now this code will hide the images in the categories and it will provide little more space for the title and categories.
Regards,
Peter Zhekov
Nop-Templates.com
objecta
8 years ago
#10465 Quote
Avatar
  • 14
Hi

In the _ProductBox view there is a image anchor tag as shown below, but the link does not work. The same anchor tag is also i the _ProductListBox, and here the link is working fine when the product list is shown on the page.

<div class="product-item @hoverEffectClass" data-productid="@Model.Id">
    <div class="picture">
        <a href="@Url.RouteUrl("Product", new { SeName = Model.SeName })" title="@Model.DefaultPictureModel.Title">

Is there any setting that controls this link or should this work on the _ProductBox view also?

Best regards
Objecta Data
Denmark
            <img alt="@Model.DefaultPictureModel.AlternateText" src="@Model.DefaultPictureModel.ImageUrl" title="@Model.DefaultPictureModel.Title" />
        </a>

Stefan
8 years ago
#10467 Quote
Avatar
  • Moderator
  • 157
Hi,

By design when you hover over the product, there is an overlay displayed showing that the image becomes not clickable and the buttons are displayed in the center of the product box. The name of the product remains clickable though. If you think is it confusing for the customers, we can change that so that the overlay is still clickable.

Thanks in advance.
Best Regards,

Stefan Hristov
Nop-Templates.com
objecta
8 years ago
#10468 Quote
Avatar
  • 14
Our customer is wondering why there is a diffrence between the behavior on viewmode=list and viewmode=grid. So it would prefer that the image is clickeble on both view modes mif it's possible.

Best regards
Objecta Data
Denmark