hello, id like to put a menu in tne top bar content header area, or a menu at the top of the site. do you have a short code or suggested plug in?
Hi Joshua,
Thanks for writing in.
You can use Ubermenu plugin and add its shortcode to your topbar content.
If you’re on Pro header, simply add a text element with your Ubermenu shortcode. And follow this if you’re on X default header.
- Please add this code to your child theme’s functions.php
add_filter( 'x_option_x_topbar_content', 'x_enable_topbar_shortcode', 20 );
function x_enable_topbar_shortcode( $content ) {
return is_admin() ? $content : do_shortcode( $content );
}
- Then add your Ubermenu shortcode to your X header’s topbar content
Thanks!
thank you kindly
Glad we were able to help
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.