WooCommerce Change “$0.00” to “Free”

/** * Snippet Name: WooCommerce Change “$0.00” to “Free” * Snippet Author: ecommercehints.com */ add_filter( ‘woocommerce_get_price_html’, ‘ecommercehints_change_zero_price_display’, 10, 2 ); function ecommercehints_change_zero_price_display( $price, $product ) { if (empty($product->get_price()) || $product->get_price() == 0) { // If price is not entered or…Continue reading

Elementor Essentials [CSS]

/**************************************************/ /* override Elementor Hello link settings */ /**************************************************/ a { background-color: transparent; text-decoration: none; color: inherit; } /*******************************************************/ /* Remove unnecessary space after paragraphs and lists */ /*******************************************************/ .elementor-widget-text-editor p:last-child, .textwidget p:last-child, ul { margin-bottom:0px;} /********************************/ /* Remove Cookiebot…Continue reading

CSS to prevent copy and paste on Frontend of website

* { -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Safari */ -khtml-user-select: none; /* Konqueror HTML */ -moz-user-select: none; /* Old versions of Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently supported…Continue reading