convert image To DataURL

var globalDataUrl = “”; function convertToDataURL(url, callback) { var xhr = new XMLHttpRequest(); xhr.onload = function () { var reader = new FileReader(); reader.onloadend = function () { globalDataUrl = reader.result; // Stocke le Data URL dans la...

Product attributes to body class

/*Product attributes to body class*/ function add_product_attributes_to_body( $classes ) { if ( is_product() ) { $product = wc_get_product(); $attributes = $product->get_attributes(); foreach ( $attributes as $attribute ) { $attribute_name = $attribute->get_name();...

Product Delivery class on body class

/* Classe de livrasion as body class */ function add_delivery_class_to_body( $classes ) { if ( is_product() ) { $product = wc_get_product(); $shipp = $product->get_shipping_class(); $classes[] = $shipp; } return $classes; } add_filter( ‘body_class’,...

Divi mobile menu style

/***************** MEOBILE MENU *****************/ .mobile_menu_bar::before { color: #ffffff !important; } /* Text left of hamburger in the Theme Builder */ .et_mobile_nav_menu:before { content: ‘MENU’; position: absolute; right: 40px; margin-top:5px;...