Hi There,
How can we export Ubermenu segments to Elementor?
It’s a big complicated menu and we don’t want to start from scratch as we want to switch to Elementor’s Menu
Thanks
Hi @DC-Team,
Thanks for reaching out.
I’m not sure what you’re trying to achieve but please check this https://github.com/elementor/elementor/issues/3131
It’s more likely integration between Elementor and Ubermenu. You may contact Elementor author as well if there is a workaround.
Thanks!
sorry this link doesn’t help: If you can’t assist with elementor can you assist in exporting Ubermenu segments to WP? We want to turn off Ubermenu and not lose all the work done on the segments
Hi @DC-Team,
You can only export Ubermenu’s configuration which can be used to another Ubermenu.
It’s also no use to export it since you’re turning off Ubermenu where it’s needed to be imported to. But if you’re referring to exporting as segment back to standard menu items, it’s not possible and I can’t find any relevant feature to Ubermenu’s documentation. Plus, Ubermenu only uses the existing menus.
Thanks!
Thanks, so we’ are trying to use Uber Menu in Elementor and all seems fine except for the logo that doesn’t display…
This is what I found in Elementor about the issue: T_he display of the logo depends on your theme. Elementor follows the coding standards of WordPress set by its official Codex. If your theme does not use the default function of WordPress which calls the custom-logo, it won’t be displayed: https://codex.wordpress.org/Theme_Logo
Hi @DC-Team,
In this case, please setup a child theme then add the following code under functions.php
file locates in your child theme:
function theme_prefix_setup() {
add_theme_support( 'custom-logo', array(
'height' => 100,
'width' => 400,
'flex-width' => true,
) );
}
add_action( 'after_setup_theme', 'theme_prefix_setup' );
After that you can add your custom logo under Customize > Site Identity > Logo
:
Let us know how it goes!
It works : ) Thanks @thai for the super quick response
Are there any issues that this fix may cause?
Hi @DC-Team,
There shouldn’t be a problem, and our theme doesn’t use that feature as it uses it’s own Theme Options logo or builder images.
Thanks!
Great : ) Thanks again
You’re welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.