CSS – WOO Pag. Singolo Prodotto Woo (CLOUD attivo)(vecchio)

/* 1.0 TI WISH BOTTONE singolo prodotto */ /* 1.0 TI WISH BOTTONE singolo prodotto _____________*/ .th-box-wish-boxelemento{height:10px; } .th-wish-peferiti-shortcode p { display: none; } .th-wish-peferiti-shortcode .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before { font-size: 50px; top: -15px; left: 0; margin: 0; padding: 0; } .th-wish-peferiti-shortcode…Continue reading

Nav scroll colour change

jQuery(document).ready(function(){ jQuery(window).scroll(function() { var scroll = jQuery(window).scrollTop(); if (scroll >= 100) { jQuery(“.pa-header”).addClass(“pa-fixed-header”); } else{ jQuery(“.pa-header”).removeClass(“pa-fixed-header”); } }); });Continue reading

MFP > Frontend Utilities

add_filter(‘the_title’, ‘the_title_trim’); function the_title_trim($title) { $findthese = array( ‘#Protected:#’, ‘#Private:#’ ); $replacewith = array( ”, // What to replace “Protected:” with ” // What to replace “Private:” with ); $title = preg_replace($findthese, $replacewith, $title); return $title; } function do_accordion($title, $content,…Continue reading