Close

Profile: Stefan

Avatar

User posts

9 years ago

Hi again,

The css you are referring to comes from the color presets functionality in the theme. There is a less plugin that can be found in Plugins\SevenSpikes.Theme.Lavella\Styles\Less\preset.less. In this file you will see the css selectors that are used to generate this css with the hex code of the color selected from the admin -> plugins -> 7spikes themes -> nop lavella theme -> settings option. 

So basically when you save your color from the admin of the plugin, it uses the selected hex code to generate the css with the selectors and the hex code and injects this css in the head, so that you can see the theme with the selected color.

Hope it is clearer now.

Please let me know if you need any further help and information.

arueda wrote:
Hi,

I am facing an error. I've configured products with "allowable quantities" : 1,6,12. After activating "Nop Ajax Cart" I can't add these items to my cart: Warning Popup message: "Allowed quantities: 1, 6, 12"

What can I do? Thanks!


Hi arueda,

So if you have configured "allowed quantities" to be 1, 6, 12 you will be able to add this product only with these given quantities. 

Please note that if you have previously added any quantity of this product to the cart and try to add it again, the quantity from this product from your shopping cart will be added to the quantity you are trying to add to the shopping cart and if it is not 1, 6 or 12, you will receive this error. This is because you should not be able to have different quantity from this product in the cart than the allowed ones.

Hope that helps.

9 years ago

gloriagloria wrote:
Hi, I see that in new version 3.70 that HomePageLRightBannerTop, do not see in responsive version on smartphone, why? In version 3.60 HomePageLRightBannerTop in column like other images, thanks.


Hi Gloria,

Can you please double check whether the "Hide second slider on home page on mobile displays" option is not checked in your admin -> plugins -> 7Spikes themes -> nop brooklyn theme -> settings menu.

If it is unchecked and still cannot see the slider on mobile, please send us a link so that we can investigate the issue.

Looking forward to your reply.

Missing info
9 years ago

ornlud wrote:
Hello and thanks for your reply

Added your code to the css file with no change.
I guess this is something to ponder on during easter time.

Best regards
Orn


Hi again,

I figured out what the problem is. Until we fix it you can disable the "Picture Thumbs in a Carousel" setting from the Cloud Zoom plugin administration and everything should be fine.

We will let you know when the fix is ready so that you can integrate it.

Thanks for the feedback.

Missing info
9 years ago

Hi Ornlud,

I think there is some issue with the jcarousel on the product page. Would it be possible to add the following in the very end of the Plugins\SevenSpikes.Nop.Plugins.JCarousel\Themes\Native\Content\JCarousel.css file:

.jcarousel-list.jcarousel-list-horizontal {
    width: 20000em !important;
}


Please let us know whether this will fix the issue.

Looking forward to your reply.

9 years ago

ornlud wrote:
Hi
Ribbons are not showing in related products.

WAT DO?

Sorry for /b/ language.

Page is www.fikus.is


Hi ornlud,

By default, the ribbons are hidden as the related products are smaller than the other product boxes and it conflicts may occur due to this fact. But you can show them following the instructions:

Open your Plugins\SevenSpikes.Nop.Plugins.ProductRibbons\Themes\Native\Content\Ribbons.css file and edit it as shown below:

Change the piece of code below 

.home-page-listbox .product-ribbon,
.related-products-grid .product-ribbon{
    display: none;
}

to be like this one:

.home-page-listbox .product-ribbon {
    display: none;
}

Hope that helps.

9 years ago

Hi again,

Thanks for the reply. If you have been using the default slider, that is why the transparent nav bar is different because in the theme there is a logic for the place of the slider and applying different classes so that a different styling is applied.

Please let us know if you need any further help or information.

Category form
9 years ago

Hi Juson,

Unfortunately, what you need with the different position of the sublist depending on its parent could not be achieved fairly easily. It can be done only with a custom javascript logic that will not be straightforward to do, so I would suggest to leave it as it is. If you have a fairly equal number of categories and subcategories, there will be no need of such logic. However if you want to give it a try and write your own js logic, you can do this in the Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Scripts\MegaMenu.min.js file.

I am really glad that nopCommerce is gaining its customers in Korea and hope to see much more websites built on top of nopCommerce and using our products.

Thanks again and keep up the good work.

Regards,
Stefan

9 years ago

RROR1 wrote:
Our company bought your "Traction" theme based on the demo.

We were a bit disappointed to see the installed theme not have the same CSS as the demo.

Could you please provide the CSS we can add to give us the transparent nav bar, that is sitting over the slider images as it is in the demo? 


Hi RROR1,

The theme that you can download from your My Downloads section is exactly the same theme with its styling that you can see on the demo. All other visual appearance of the theme can be achieved via the administration and configuration of the theme. For example the transparent nav bar over the slider will be displayed when you create a slider and map it to the "home_page_main_slider" widget zone. Have you done this? As you know by default the theme does not come with the sample data from the theme demo. If you need the theme demo database backup in order to restore it locally for testing purposes and seeing how it is configured, please submit a ticket and we can send you a link to the backup file.

Hope that helps.

Category form
9 years ago

Hi Juson,

Unfortunately, the example you have provided is quite a custom one, so it cannot be achieved with the Nop Mega Menu plugin to be the same.

The closest you can do is use the CSS from below so that you can fix the sublist to start from the same position. Just set in your mega menu settings to use the Infinite Sublist category template and uncheck the Show categories in a single menu. Then just add the following CSS at the very end of the following file:

Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Themes\DefaultClean\Content\MegaMenu.css

add the code from below:

@media (min-width: 1001px) {

    .mega-menu .sublist li {
        position: static;
    }

    .mega-menu .sublist li a {
        position: static;
    }

    .mega-menu .sublist-wrap {
        height: 500px;  
    }

    .mega-menu .sublist-wrap .sublist-wrap {
         top: 0;
    }
}


where the height of the sublist is determined by the height: 500px property which you can change to suits your needs.

Hope that helps.