Close

Profile: nikola.dragiev

Avatar

User posts

New products
7 years ago

Hello,

In the edit page of each product in the administration you have a Mark as new checkbox. If you select that checkbox the product will appear as new product in the bottom part of the Home Page.

Bugs
7 years ago

Hello,

If I've understood you right, the problem is that the menu with the logo is sticking and is covering a large part of the screen on mobile device. We have included a setting, which gives you the opportunity to disable the stick of the logo on mobile devices. Just go to the Administration -> Plugins -> 7Sppikes Themes -> Nop Pavilion Themes -> Settings -> Additional settings and search for the Sticky Logo On Mobile Device checkbox. 

8 years ago

Hello,

The theme has been Released. If you would like to take a look at it please feel free to visit the theme page or the two demos.

8 years ago

Hello,

This information is stored in your database, so you will just have to run both upgrade scripts. To be 100% sure that you don't loose any information our advice is to backup the database before you start running the scripts. 

p.s. I see that you are upgrading from version 3.4 to version 3.7. Don't forget that you have to run first the upgrade scripts for 3.5, then for 3.6 and then for 3.7.

8 years ago

Hello,

This information is stored in your database, so you will just have to run both upgrade scripts. To be 100% sure that you don't loose any information our advice is to backup the database before you start running the scripts. 

Hello,

You can try adding this css code to your Custom Head Styles textfield(Administration -> Plugins -> 7Spikes Themes -> Nop Nitro Theme -> Settigns):

 .eu-cookie-bar-notification {
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  margin: 0;
  max-width: none;
  height: auto;
}
.eu-cookie-bar-notification .content {
  text-align: center;
}
.eu-cookie-bar-notification .content > * {
  display: inline-block;
  margin: 0 10px;
}

8 years ago

Hello,

To change the number of items to four for 768px and above you will have to replace the css code I provided you with to this one:

@media (min-width: 768px){

.home-page-category-grid .item-box, .sub-category-grid .item-box {
    width: 23.5%;
    margin: 0 0 2% 2%;
}
.home-page-category-grid .item-box:nth-child(2n+1), .sub-category-grid .item-box:nth-child(2n+1) {
    margin: 0 0 2% 2%;
    clear: none;
}
.home-page-category-grid .item-box:nth-child(3n+1), .sub-category-grid .item-box:nth-child(3n+1) {
    margin: 0 0 2% 2%;
    clear: none;
}
.home-page-category-grid .item-box:nth-child(4n+1), .sub-category-grid .item-box:nth-child(4n+1) {
    margin-left: 0;
    clear: both;
}

}

8 years ago

Hello,

I it possible for you to give us a livestore link for your website(if you want you can send it in a private message, so your website will not visible in the forum). This way we can investigate the problem and give you the best solution. 

8 years ago

Hello,

In my local machine the links are clickable, so the difference is maybe in some overlapping with the product thumbs. Try adding this css:

.nivo-caption {
  z-index: 103;
}


p.s. If it is still not clickable you can add a higher integer for the z-index. Just try not to use a very large number like 1000.

8 years ago

Hello,

You could try adding this css code to your Custom Head Styles textfield(it is located in Administration->Plugins->SevenSpikesThemes->NopNativeTheme->Settings):

.nivo-caption {
    top: 25%;
    width: auto !important;
    font-size: 19px;
    letter-spacing: 1.5px;
    color: #fff !important;
    background-color: rgba(34,34,34,.6) !important;
    height: 59px;
    padding: 15px 30px 15px 45px !important;
}


This can create a similar effect. If you want you can add this code also and create the white dash effect:

.nivo-caption:before {
    content: '';
    display: block;
    width: 28px;
    height: 4px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}