Hello there
I’m having an issue with the under construction plugin, I’ve seen in another posts that this is a theme bug, and the temporary solution is adding this code on the child theme functions.php
Option 1
wp_enqueue_style( ‘dashicons’ );
Option 2
add_action( ‘wp_enqueue_scripts’, ‘load_dashicons_front_end’ );
function load_dashicons_front_end() {
wp_enqueue_style( ‘dashicons’ );
}
Both codes do not work on my end, it shows only the key icon, but the password field is missing, and I need the client to be able to see the site updates.
I’m not using any cache plugin and I’ve already cleared the browsers cache. Tested on Safari, Firefox and Chrome, both mobile and desktop versions
Can you please help me on this?
Thank you!