Forum Replies Created

Viewing 30 posts - 2,101 through 2,130 (of 34,549 total)
  • Author
    Posts
  • Hi,
    We have not heard back from you, perhaps you have sorted this out? Shall we close this thread then?

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461934

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    It would be easier to see a test page, I assume this is what you want:
    Enfold Support 6283
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-fullwidth-slider .avia-caption-title:after {
        content: "";
        background: #fff;
        position: absolute;
        bottom: 0;
        left: 46%;
        height: 2px;
        width: 100px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Adjust the color to suit, after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Fullwidth Submenu – Onepage Dotsmenu #1461863

    Hi,
    Ok then, does it have to have the exact shape as above, or can it be square?
    I guess you could use a background image for the shape, but it might be a challenge if you change the number of menu items in the future.
    A square shape would be easier since that is the shape of the element.
    To use css to add a background color, add the color to the dotsmenu previous css like this:

    #top .dotsmenu {
        background-color: red;
    }

    and then adjust the previous dotsmenu width css to suit.

    Best regards,
    Mike

    Hi,
    Glad Guenni007 could help, thank you Guenni007, shall we close this thread then?

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461861

    Hi,
    When I check your H tags & your menu items they all look to be Rift4 is this what you mean?
    I see you are using a font plugin that I have not used, I recommend using the theme setting to upload custom fonts Enfold Theme Options ▸ Import/Export ▸ Custom Font Manager and then change the menu font in the theme setting Enfold Theme Options ▸ Advanced Styling ▸ Menu items
    Please see our documentation here.

    Best regards,
    Mike

    in reply to: Socket menue on left side #1461859

    Hi,
    To move your footer items back to within the content width, remove max-width: 100%; from the css above:
    Enfold Support 6281
    to remove the line add this css:

    #socket.container_wrap {
        border-top-style: none;
        border-top-width: 0;
    }

    Best regards,
    Mike

    Hey albertgarduno,
    Please link to your page so we can examine and help with the css, I understand that the white line is 100px wide, but how tall? Will this be on all pages or just the one that you link to?

    Best regards,
    Mike

    in reply to: Fullwidth Submenu – Onepage Dotsmenu #1461792

    Hi,
    In your example:
    Enfold Support 6279
    each icon links to a different pages, the dots menu above links to different section on the same page, are you still going to use it like this, for links on the same page?

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461790

    Hi,
    When I checked your site the code above had been removed, I added it back again and now it is working.
    The font-family looks to be the same for all of the menu items, I adjusted the color of the sub-menu items to match the parent in case that is what you meant.

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461709

    Hi,
    Thanks for the login, I found that the setting Menu Icon Submenu Items ▸ Display submenu items on click should be set, I did this for you:
    Enfold Support 6275
    Now the multiple dropdowns work:
    Enfold Support 6277
    but for some of your top menu items like Beelden you need to change it to a # and add the link below, otherwise clicking it will only open the sub-menu and not go to the page, The same way Collectie is.

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461646

    Hi,
    I believe that I have found a solution to change the sidebar header menu to have multiple dropdowns like the burger menu,
    Enfold Support 6271
    for example this is the first dropdown after a click:
    Enfold Support 6267
    this is the second level after click:
    Enfold Support 6269
    please note that both the “first level” and “second level” menu items are not links to pages, so a click will open the sub-menu:
    Enfold Support 6273
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function change_sidebar_menu_to_burger_menu_dropdown() { ?>
      <script>
    document.addEventListener("DOMContentLoaded", function() {
        var screenWidth = window.innerWidth;
        if (screenWidth >= 768) {
            if (document.documentElement.classList.contains("html_header_sidebar")) {
                const aviaMenu = document.getElementById("avia-menu");
                if (aviaMenu) {
                    aviaMenu.id = "av-burger-menu-ul";
                    aviaMenu.classList.remove("av-main-nav");
                    aviaMenu.classList.remove("menu");
                }
                const menuItems = document.querySelectorAll("#av-burger-menu-ul .menu-item");
    
                menuItems.forEach(function(item) {
                    item.classList.add("av-active-burger-items");
                    item.classList.remove("menu-item");
                });
                const menuItemsWithChildren = document.querySelectorAll("#av-burger-menu-ul .menu-item-has-children");
    
                menuItemsWithChildren.forEach(function(item) {
                    item.classList.add("av-width-submenu");
                    //item.classList.remove("menu-item-has-children");
    
                    const dropdownAva = item.querySelector(".menu-item-has-children.av-width-submenu .avia-menu-text");
                    if (dropdownAva) {
                        const dropdownAvailable = document.createElement("span");
                        dropdownAvailable.classList.add("dropdown_available");
                        dropdownAva.insertAdjacentElement('afterend', dropdownAvailable);
                    }
                    const dropdownSpan = item.querySelector(".menu-item-has-children.av-width-submenu .dropdown_available");
                    if (dropdownSpan) {
                        const submenuIndicator = document.createElement("span");
                        submenuIndicator.classList.add("av-submenu-indicator");
                        dropdownSpan.insertAdjacentElement('afterend', submenuIndicator);
                    }
                });
    
                const style = document.createElement('style');
                style.innerHTML = `
                    #top #av-burger-menu-ul {
                        width: 300px;
                        padding: 0px 30px;
                    }
                    .main_menu ul:first-child>li a {
                        height: 50px;
                        line-height: 50px;
                    }
                `;
                document.head.appendChild(style);
            }
        }
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'change_sidebar_menu_to_burger_menu_dropdown', 99 );

    Please disable any previous snippets from this thread.

    Best regards,
    Mike

    in reply to: Custom Fonts #1461644

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: HEAD request for .webm and .ogv fallbacks #1461643

    Hi,
    Thanks for the feedback, I’m glad you were able to investigate this further, but unfortunately I don’t know what else we can do to help with this, as we can’t reproduce this and from your explanation it sounds like a red-herring, as you say.
    We will go ahead and close this as you pointed out, but feel free to open a new thread if you find new information that will help us reproduce this.
    Thank you for your understanding and using Enfold.

    Best regards,
    Mike

    in reply to: Custom Fonts #1461562

    Hi,
    For iPad it looks like “calibri-cursiv-bold-new” is showing in the DOM, check your Enfold Theme Options ▸ Advanced Styling for the H1 heading and see if that font is selected. If you have more than one H1 style selected the one at the bottom may have the most specifically.

    Best regards,
    Mike

    in reply to: Custom Fonts #1461557

    Hi,
    Your css for the headings doesn’t have the enough specifically, I would recommend this:

    @media only screen and (max-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    #top #wrap_all .all_colors h1, 
    #top #wrap_all .all_colors h2, 
    #top #wrap_all .all_colors h3, 
    #top #wrap_all .all_colors h4, 
    #top #wrap_all .all_colors h5, 
    #top #wrap_all .all_colors h6 {
      font-family: 'Open-Sans', sans-serif;
    font-style: italic; 
    }
    }

    plain h1, h2, h3, h4, h5, h6 is not enough to override the theme.
    As for Safari it can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    I doubt that this is what you are experiencing right now, but please keep this in mind

    Best regards,
    Mike

    in reply to: Theme editor is vanished #1461555

    Hey leloux,
    Please include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: swap widgets in footer on mobile #1461554

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    	#top .av-burger-menu-main.menu-item-avia-special {
    		    left: -40%;
    }
    .html_visible_cart .cart_dropdown {
        right: 4%;
        z-index: 999 !important;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Please provide a admin login so we can take a look.

    Best regards,
    Mike

    in reply to: 2 time click on left side bar menu #1461550

    Hi,
    This is because of the script that was added, please see this thread.

    Best regards,
    Mike

    Hi,
    You will need to disable the mega menu so the mega menu doesn’t show to the right and have the click issue.
    If you want to use the menu with the script and have the menu items open below then you can use the script.
    If you don’t like how the script works then you can remove it.
    There is not need to open a new thread for a 2 times drop down menu, you already have this one open.
    Unfortunately there I don’t find a solution, since this menu structure is not a option in the theme and seems to be more involved than I first thought, I recommend opening a feature request so the Dev Team can review adding this as a option.
    Since this is a duplicate thread it would be easier to keep all of the commentscomments in one thread

    Best regards,
    Mike

    Hi,
    The Dev Team has reviewed this and points out that the js file is loaded by WP and only links to the distributed file ../wp-includes/js/dist/vendor/wp-polyfill.js
    Enfold doesn’t hotlink to the polyfill.io site, so we will have to wait for WP to apply a patch for this issue as there are a lot of dependencies on wp-polyfill for the block editor and react js.
    We will close this thread, but the issue is open here if you wish to comment, thank you for your understanding and using Enfold.

    Best regards,
    Mike

    in reply to: Custom Fonts #1461544

    Hi,
    Thank you for the link to your site, I see the in inspector for Safari the font that is showing says it is “calibri” while it doesn’t look correct, and I can’t find any conflicts.
    When I text in Chrome & Firefox on the Mac the correct “calibri” is shown. As I researched online I see a lot of posts for “Safari not showing calibri font” as this seems to be a issue that others are having.
    I have asked the rest of the team if they have any ideas, Thank you for your patience.

    Best regards,
    Mike

    in reply to: swap widgets in footer on mobile #1461540

    Hey Munford,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
      #footer > .container {
      display: flex; 
      flex-wrap: wrap; 
      }
      #footer > .container .av_one_third.first {
          order: 3; 
      }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Possible to deactivate ALB for Author? #1461539

    Hey Ad-Min747,
    I assume that your user is not admin, so see the theme option at Enfold Theme Options ▸ Layout Builder ▸ Lock Advanced Layout Builder
    This removes the ability to move or delete existing template builder elements, or add new ones, for everyone who is not an administrator.
    Another option might be this function in your child theme functions.php file in Appearance ▸ Editor to hide the ALB button from anyone that is not admin.

    add_action('admin_head', function() {
    	if( !current_user_can('activate_plugins') ){
                ?>
                 <style>#avia-builder-button{ display: none; } </style>
                <?php
            }
    });

    Best regards,
    Mike

    in reply to: Socket menue on left side #1461537

    Hi,
    Your screenshot looks like the socket is full width, but your site is smaller, so I recommend making the area full width and making the font smaller so there is enough room.

    .responsive #socket > .container {
        max-width: 100%;
        font-size: 18px;
    }
    #socket .copyright {
        float: right;
        padding-left: 20px;
        line-height: 24px;
    }

    and then move the “title” on the right side over some in the css for it, currently you have:

    #footer-title {
        font-size: 38px;
        font-family: zen-kaku-gothic-new;
        color: #000;
        font-weight: bold;
        float: right;
        top: -38px;
        position: relative;
        left: -15%;
    }

    change to:

    #footer-title {
        font-size: 38px;
        font-family: zen-kaku-gothic-new;
        color: #000;
        font-weight: bold;
        float: right;
        top: -38px;
        position: relative;
        left: -5%;
    }

    Best regards,
    Mike

    in reply to: HEAD request for .webm and .ogv fallbacks #1461536

    Hi,
    Thank you for your patience, I have tried to reproduce this error with a self-hosted mp4 on my test site and I checked my Apache log, but unfortunately I only see the .mp4 video file type and the .jpg thumbnail for the .mp4
    I tried to create a function to add to your child theme functions.php to change this anyways, I can’t confirm that it will work for you, but adding it didn’t brake my video element, so please give this a try and see if it helps.

    if (!function_exists('custom_avia_html5_video_embed')) {
        function custom_avia_html5_video_embed( $video, $image = '', $types = array( 'mp4' => 'type="video/mp4"' ), $attributes = array( 'autoplay' => 0, 'loop' => 1, 'preload' => '', 'muted' => '', 'controls' => ''  ) ) {
            $html5_files = array();
            $path = $video;
    
            if( ! empty( $video ) && is_array( $video ) )
            {
                $html5_files = array_filter($video, function($ext) {
                    return $ext === 'mp4';
                }, ARRAY_FILTER_USE_KEY);
                $path = reset( $html5_files );
            }
    
            $path_split = array();
            preg_match( "!^(.+?)(?:\\.([^.]+))?$!", $path, $path_split );
    
            $output = '';
            if( isset( $path_split[1] ) )
            {
                if( ! $image && avia_is_200( $path_split[1] . '.jpg' ) )
                {
                    $image = 'poster="' . $path_split[1] . '.jpg"'; // poster image isn't accepted by the player currently, waiting for bugfix
                }
                else if( $image )
                {
                    $image = 'poster="' . $image . '"';
                }
    
                $autoplay = $attributes['autoplay'] == 1 ? 'autoplay' : '';
    
                if( ! empty( $autoplay ) )
                {
                    $autoplay = apply_filters( 'avf_html5_autoplay_mobile', "{$autoplay} playsinline", $video, $attributes );
                }
    
                $loop = $attributes['loop'] == 1 ? 'loop' : '';
                $muted = $attributes['muted'] == 1 ? 'muted' : '';
                $controls = $attributes['controls'] == 1 ? 'controls' : '';
    
                if( ! empty( $attributes['preload'] ) )
                {
                    $metadata = 'preload="' . $attributes['preload'] . '"';
                }
                else
                {
                    $metadata = $attributes['loop'] == 1 ? 'preload="metadata"' : 'preload="auto"';
                }
    
                $uid = 'player_' . get_the_ID() . '_' . mt_rand() . '_' . mt_rand();
    
                $output .= "<video class='avia_video' {$image} {$autoplay} {$loop} {$metadata} {$muted} {$controls} id='{$uid}'>";
    
                if( empty( $html5_files ) )
                {
                    if( $path_split[2] == 'mp4' || avia_is_200( $path_split[1] . '.mp4' ) )
                    {
                        $output .= '<source src="' . $path_split[1] . '.mp4" type="video/mp4" />';
                    }
                }
                else
                {
                    foreach( $html5_files as $ext => $source )
                    {
                        $html_type = ! empty( $types[ $ext ] ) ? $types[ $ext ] : '';
                        $output .= "<source src='{$source}' {$html_type} />";
                    }
                }
    
                $output .= '</video>';
            }
    
            return $output;
        }
    }
    
    // Remove the original function and replace it with the custom function
    remove_action('avia_html5_video_embed', 'avia_html5_video_embed');
    add_action('avia_html5_video_embed', 'custom_avia_html5_video_embed');
    

    If this doesn’t help try to modify the function-set-avia-frontend.php starting at line 960 to match the above and see if manually changing it helps.
    If it does then great, but the the function-set-avia-frontend.php file can not be overwritten in a child theme so after each update you will need to modify, I’m hoping the above will work for you in your child theme functions.php file.

    Best regards,
    Mike

    in reply to: Socket menue on left side #1461532

    Hey Jak73,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #socket > .container {
    	display: flex;
      flex-direction: row-reverse;
      justify-content: flex-end;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461531

    Hi,
    Please see this thread that I offered to change sub menu items in sidebar menu to drop down, and from this they are asking to create a second level drop down like in the mobile menu.

    Best regards,
    Mike

    Hey leloux,
    It is because you are using a custom script that I posted for you in another thread.because you wanted a drop down menu, I see now you have created a mega menu, this will not work, so you must disable it.
    Please see the last thread that you opened.
    I recommend removing the script and open a Feature Request for the drop down menu as in your last thread.

    Best regards,
    Mike

Viewing 30 posts - 2,101 through 2,130 (of 34,549 total)