Icons in Menu not showing up correctly

Hi there,

we have icons in the menu that are showing up as squares instead of the actual icons (we want the arrow_double_down). Can you help?
Thanks in advance

Best regards

Wanda

Hello Wanda,

Thanks for writing in! None of the icons is showing because you may have added this code:

.x-navbar .desktop .x-nav li>a>span:after {
    font-family: "" !important;
}

Please remove that css block and your issue should be resolved. By the way, as I am inspecting the page, I noticed that there is a JS error. It appears that you have added a PHP code in the custom JS section which will not work. Please remove this PHP code in the custom JS section:

<?php

/*
 * Possible solution for Single Event page 404 errors where the WP_Query has an attachment set
 * IMPORTANT: Flush permalinks after pasting this code: http://tri.be/support/documentation/troubleshooting-404-errors/
 */
function tribe_attachment_404_fix () {
	if (class_exists('TribeEvents')) {
		remove_action( 'init', array( TribeEvents::instance(), 'init' ), 10 );
		add_action( 'init', array( TribeEvents::instance(), 'init' ), 1 );
	}
}

add_action( 'after_setup_theme', 'tribe_attachment_404_fix' );

If you have the intention of using this code, the only way to make this code work is to add the code in your child theme’s functions.php file. Please go to Apperance > Editor and find the functions.php file on the right side.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.