Reply To: Custom menu in custom sidebar widget

#20016
Daniel Tara
Keymaster

You can add this code to your child theme’s functions.php file to remove support for schema markup:

add_action( 'after_setup_theme', 'enlightenment_child_setup', 50 );

function enlightenment_child_setup() {
	remove_theme_support( 'enlightenment-schema-markup' );
}

Although I doubt the missing hyphen is caused by schema markup. Can you post a link to your page?