Icon not shown in Dropdown menus in Twenty Seventeen Theme

It’s not images, its fontawesome icons, and the fontawesome library is not being called. so you can add the below code to your theme functions.php add_action( ‘wp_enqueue_scripts’, ‘enqueue_load_fa’ ); function enqueue_load_fa() { wp_enqueue_style( ‘load-fa’, ‘https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css’ ); } thats how the current icons for the menus will be showing.

Footer navigation menu

you can add new menu from WordPress admin on this https://de.ferberg.com/wp-admin/nav-menus.php?action=edit&menu=0 and then you need to call this menu where you’re calling your footer menu.

How to automatically set a Template Page Name next to a page in menu screen such as WooCommerce pages, front page, or posts page in wordpress?

Use the display_post_states hook: function custom_display_post_states( $states, $post ) { if ( ‘Services’ === $post->post_title ) { $post_states[‘custom-content’] = ‘Services Page’; } return $post_states; } add_filter( ‘display_post_states’, ‘custom_display_post_states’, 10, 2 ); or you can do by ID if ( 1 === $post->ID) { $post_states[‘custom-content’] = ‘Services Page’; } To check if page has template: function … Read more

Submenu items not working anymore

You’re right, this is odd behavior. I’m curious, what would happen if you added an anchor link directly on the ‘On the Block’ page (ie, #play)? Not suggesting this as a solution, just trying to establish whether anchor links will work on the page if not included as part of the navigation.