ceroni
Forum Replies Created
-
Amazing, now it’s working perfectly!!
Tks, your plugin is the best! ??it’s not working on Safari and Edge Browser
The button is appear on the corner of the page, like on the screenshot ??
These are the website and screenshot:
https://tinypic.com/r/14t5tmv/9
https://www.studiolaylavilela.comit’s still not working ??
Yes I tried!!
I inserted this code line in my function.php with ‘data-micromodal-close’ attribute explicity in the array
add_filter( ‘wp_kses_allowed_html’, function ( $html ) {
$html[‘button’] = array(
‘disabled’ => true,
‘name’ => true,
‘type’ => true,
‘value’ => true,
‘aria-describedby’ => true,
‘aria-details’ => true,
‘aria-label’ => true,
‘aria-labelledby’ => true,
‘aria-hidden’ => true,
‘class’ => true,
‘id’ => true,
‘style’ => true,
‘title’ => true,
‘role’ => true,
‘data-micromodal-close’ => true,
);
return $html;
} );is it right?