Home › Support Forums › Theme Support › Enlightenment › Custom menu in custom sidebar widget › Reply To: Custom menu in custom sidebar widget
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?