Remove UberMenu [Column] in Pro Headers

Hey Christian,

Good suggestion.

The only problem with this is, that I want my Landmark (Archive title and subtitle) to:

A) Actually display (it doesn’t when using PRO header)
B) ONLY display on Category pages

Cheers

I see. How about using the Classic Header’s Mega Menu feature. See https://theme.co/apex/forum/t/features-megamenus/99

That way, you won’t need need UberMenu and it achieves similar effect to your current setup and it achieves what you want in mobile out of the box. No setting of options needed.

Thanks.

Hey Christian,

Thanks for the answer! This could be a solution.

If I use Header Pro and add a Landmark shortcode as Rad suggests above, would it be possible to only show the Landmark on category pages? For example, I obviously don’t want it on my frontpage

Hi There,

To show the landmark on the categroy pages only, please update the provided code of Rad to this:

add_shortcode('my_landmark', 'my_landmark');

function my_landmark ($atts) {
	if( is_archive() ){
		ob_start();

		x_get_view( 'integrity', '_landmark-header' );

		return ob_get_clean();
	}
}

For more information, please take a look at this:

https://developer.wordpress.org/reference/functions/is_category/

Hope it helps :slight_smile:

Hey, I’ve tried this, but it doesn’t work.

Update: I’ve bought ShiftNav (an extention to Ubermenu) to make a unique menu for mobile. It’s not ideal but until native X gets better features on this front, it’ll be my solution.

Still - Thanks a lot for the awesome help as always :grinning: Have a great day

Hi again,

ShiftNav is a good option however you can also checkout Superfly menu https://theme.co/apex/forum/t/extension-superfly/73 and for demos please see http://superfly.looks-awesome.com/

Cheers!

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