Hello,
The password field was fine and working for quite some time but now it has disappeared. I disabled all the plugins to see if there was a conflict but that didn’t work. I also tried adding:
wp_enqueue_style( ‘dashicons’ );
To the functions.php page but that did work either.
I also tried:
add_action( ‘wp_enqueue_scripts’, ‘load_dashicons_front_end’ );
function load_dashicons_front_end() {
wp_enqueue_style( ‘dashicons’ );
}
But I get the error:
Your PHP code changes were rolled back due to an error on line 29 of file wp-content/themes/x-child/functions.php. Please fix and try saving again.
Cannot redeclare load_dashicons_front_end() (previously declared in wp-content/plugins/tco-under-construction/tco-under-construction.php:104)
Please help.