NextGEN Pro [Ecommerce] – Hide the extra “Add to cart” button when selling DIgital Download items only.

jQuery(document).ready(function() { function executeJS() { if (jQuery(‘#ngg_category_digital_downloads_header’).length > 0 && jQuery(‘#ngg_category_digital_downloads_header’).parent().siblings(‘h3’).length === 0) { jQuery(‘#ngg_update_cart_btn’).hide(); }} jQuery(document).on(‘ajaxComplete’, function(event, xhr, settings) { if (settings.url.indexOf(‘GetSidebarData’) !== -1) { executeJS(); // Execute the JS snippet when the XHR is completed } }); if…Continue reading

Envira – hide the browser’s tooltips while hovering over images

var $j = jQuery.noConflict(); $j(document).ready(function() { $j(“.envira-gallery-item a img”).mouseenter(function() { var title = $j(this).attr(“title”); $j(this).attr(“save_title”, title); $j(this).attr(“title”, “”); }) .mouseleave(function() { var title = $j(this).attr(“save_title”); $j(this).attr(“title”, title); }) .click(function() { var title = $j(this).attr(“save_title”); $j(this).attr(“title”, title); }); });Continue reading

CSS fix for Envira lightbox small image size in landscape mode

@media only screen and (orientation: landscape) { .envirabox-slide .envirabox-image-wrap{ width: auto !important; height: calc(100vh – 20px) !important; transform: translate(calc(100vh – 20px), 10px) !important; } .envirabox-image, .envirabox-spaceball{ width: auto !important; height: 350px !important; }}Continue reading

Replace Sol navigation icons with FA

.soliloquy-container .soliloquy-prev:before { content: “\f053”; /* FontAwesome icon for left arrow */ font-family: “Font Awesome 5 Free”; font-weight: 900; font-size: xx-large; color: red !important; } .soliloquy-container .soliloquy-next:before { content: “\f054”; /* FontAwesome icon for right arrow */ font-family: “Font Awesome…Continue reading

Learningsuite and umsatz , automagency Page CSS | IKB 020

/* Author: Sumaiya , Clickup Doc Link:https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-12075 */ /* Des: This CSS is added to add the line height on gradient button */ .learn-suite-gradient-button{ line-height:20px!important; } /* completed */ /* Des: This CSS is added to add line height to…Continue reading