Forum Replies Created
-
AuthorPosts
-
August 3, 2019 at 9:27 am in reply to: [avia_hamburger_menu] Only one open toggle allowed (accordion mode) #1124336
Hello Guenni007,
i don‘t use the functions.php. I use a snippet plugin is better for Overview. I see you have a ohter situation.You have li.tutorials > ul.submenu > li > ul.submenu > li
I have li.fahrzeuge > ul.submenu > li
You must be adress the deeper submenu li seperate.
LG Basti
August 2, 2019 at 10:32 pm in reply to: [avia_hamburger_menu] Only one open toggle allowed (accordion mode) #1124280Hello Guenni007,
thx for Support i have build a fix :-)jQuery(document).ready(function( $ ){
$(‘body’).on( ‘click touch’, ‘.av-active-burger-items a’, function () {
$(this).parent(‘li’).siblings().removeClass(‘av-show-submenu’);
$(this).parent(‘li’).siblings().find(‘ul’).slideUp( “fast”, function() {
});
});
});August 2, 2019 at 8:07 am in reply to: [avia_hamburger_menu] Only one open toggle allowed (accordion mode) #1124093Hello Rikard, i create the new Site first offline. My Question to the Burger Menu is. You klick the first menu link and the Sub open. Then you klick on the second link and this sub is open. I need when i klick on second or after then links all other menu links with his submenu‘s are close. I would like to have only one link incl. Submenu open
May 14, 2019 at 6:19 pm in reply to: Avia Builder – Custom Page // css not Found // avia-builder-el.. usw. #1100722Hallo Günter,
das war es vielen DANKKKKKK
May 14, 2019 at 6:16 pm in reply to: Avia Builder – Custom Page // css not Found // avia-builder-el.. usw. #1100720Hallo Günter,
vielen Dank für deine Hilfe. :-)
Benutzen folgenden Script.
add_filter(‘avf_builder_boxes’, ‘add_builder_to_posttype’);
function add_builder_to_posttype($metabox)
{foreach($metabox as &$meta)
{
if($meta[‘id’] == ‘avia_builder’ || $meta[‘id’] == ‘avia_sc_parser’ || $meta[‘id’] == ‘layout’)
{
$meta[‘page’][] = ‘fahrzeuge’;
}
}return $metabox;
}LG Basti
-
AuthorPosts