Forum Replies Created

Viewing 30 posts - 1 through 30 (of 34,988 total)
  • Author
    Posts
  • in reply to: No footer #1494051

    Hey h-i-m,
    Can you include a admin login for us to examine?

    Best regards,
    Mike

    Hi,
    Under WordPress > General Settings > Site Icon you had no image chosen, so I picked one for you which was your 512px by 512px png favicon. WordPress now shows that it is picked:
    fULwcUQ.png
    Then I changed your Enfold Theme Options > Favicon to your real favicon.ico from your root directory instead of the png image:
    fULQtWb.png
    I believe this should  help, now you need to try going to your Google Search Console and request that your site is crawled again, which may take a few days, once Google Search Console says it has been crawled, check again.

    Best regards,
    Mike

    Hi,
    On your /fuze-spolecnosti/ page, when I check your color section image picker your background image: fusion-new-3-scaled.jpg is not shown, only 52 images are available where in your media library you have 323 images. I copied it and uploaded it again in the color section image picker, and now it works.
    fUiCymJ.png
    I don’t know way all images do not show, I have not seen this before.

    Your Nginx Cache plugin also gives an error: Filesystem API could not be initialized.
    Not sure if that is a clue.

    Best regards,
    Mike

    in reply to: Create a second overlay menu #1494037

    Hey SurigliaStudio,
    When I test your site the “Taglie” button doesn’t create a mobile style flyout menu, I assume that you now have the plugin disabled, but I think that I understand. I have created a custom function that will create a mobile style overlay menu from a sticky button on the right using a image that you can choose:
    fUawEAX.md.png
    fUaOLwF.md.png
    and on mobile the overlay is about 95% of the screen.
    The function uses the Named Menus from your WordPress menus to show:
    fUaQF6B.md.png
    In Configuration there is a line to choose your menu image/icon and the default menu to show on all pages:
    fUcd32j.md.png
    and below you can add as many additional menus with an array of pages that they will show on:
    fUcFI4e.md.png
    The code also has all of the css built-in for styling if you want to adjust.
    Add this code to your child theme functions.php file, if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    fUcTO4R.jpg
    then add the above code and save.

    /**
     * Add Sticky Button with Fly-out Menu
     * Add this to your Enfold child theme's functions.php
     */
    
    function custom_sticky_menu_button() {
        // Configuration - Change these values as needed
        $button_image = '/wp-content/uploads/2026/01/menu.png'; // Update path to your PNG
        $menu_slug = 'sticky menu'; // Default menu slug - change as needed
        
        // Optional: Set different menu based on page ID
        $current_page_id = get_the_ID();
        // Example: Use different menu for specific pages
         if (in_array($current_page_id, array(1028, 1080, 1031, 1034))) {
            $menu_slug = 'sticky menu two';
         }
    	if (in_array($current_page_id, array(1376, 1331, 1277, 1283))) {
            $menu_slug = 'sticky menu three';
         }
        
        // Get the menu
        $menu_items = wp_get_nav_menu_items($menu_slug);
        
        if (!$menu_items) {
            return; // Exit if menu doesn't exist
        }
        ?>
        
        <!-- Sticky Button -->
        <div id="sticky-menu-btn" class="sticky-menu-button">
            " alt="Menu">
        </div>
        
        <!-- Fly-out Menu Overlay -->
        <div id="flyout-menu-overlay" class="flyout-menu-overlay">
            <div class="flyout-menu-close">×</div>
            <nav class="flyout-menu-content">
                <?php
                wp_nav_menu(array(
                    'menu' => $menu_slug,
                    'container' => false,
                    'menu_class' => 'flyout-nav-menu',
                    'fallback_cb' => false
                ));
                ?>
            </nav>
        </div>
        
        <style>
            /* Sticky Button Styles */
            .sticky-menu-button {
                position: fixed;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                width: 50px;
                height: 50px;
                border-radius: 50%;
                cursor: pointer;
                z-index: 9998;
                transition: opacity 0.3s ease;
                box-shadow: 0 2px 10px rgba(0,0,0,0.3);
                overflow: hidden;
            }
            
            .sticky-menu-button img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .sticky-menu-button.hidden {
                opacity: 0;
                pointer-events: none;
            }
            
            /* Fly-out Menu Overlay */
            .flyout-menu-overlay {
                position: fixed;
                top: 0;
                right: -100%;
                width: 25%;
                height: 100vh;
                background: #fff;
                z-index: 9999;
                transition: right 0.4s ease;
                box-shadow: -2px 0 10px rgba(0,0,0,0.2);
                overflow-y: auto;
            }
            
            .flyout-menu-overlay.active {
                right: 0;
            }
            
            /* Close Button */
            .flyout-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 36px;
                cursor: pointer;
                color: #333;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
                transition: color 0.3s ease;
            }
            
            .flyout-menu-close:hover {
                color: #000;
            }
            
            /* Menu Content */
            .flyout-menu-content {
                padding: 80px 30px 30px;
            }
            
            .flyout-nav-menu {
                list-style: none;
                margin: 0;
                padding: 0;
            }
            
            .flyout-nav-menu li {
                margin: 0 0 15px 0;
            }
            
            .flyout-nav-menu a {
                display: block;
                padding: 12px 0;
                color: #333;
                text-decoration: none;
                font-size: 16px;
                transition: color 0.3s ease;
                border-bottom: 1px solid #eee;
            }
            
            .flyout-nav-menu a:hover {
                color: #000;
            }
            
            /* Sub-menu styles */
            .flyout-nav-menu .sub-menu {
                list-style: none;
                margin: 10px 0 0 20px;
                padding: 0;
            }
            
            .flyout-nav-menu .sub-menu a {
                font-size: 14px;
                padding: 8px 0;
            }
            
            /* Mobile Styles */
            @media (max-width: 768px) {
                .flyout-menu-overlay {
                    width: 95%;
                }
            }
        </style>
        
        <script>
            (function() {
                var btn = document.getElementById('sticky-menu-btn');
                var overlay = document.getElementById('flyout-menu-overlay');
                var closeBtn = document.querySelector('.flyout-menu-close');
                
                // Open menu
                btn.addEventListener('click', function() {
                    overlay.classList.add('active');
                    btn.classList.add('hidden');
                    document.body.style.overflow = 'hidden'; // Prevent body scroll
                });
                
                // Close menu
                closeBtn.addEventListener('click', function() {
                    overlay.classList.remove('active');
                    btn.classList.remove('hidden');
                    document.body.style.overflow = ''; // Restore body scroll
                });
                
                // Close on overlay click outside menu
                overlay.addEventListener('click', function(e) {
                    if (e.target === overlay) {
                        overlay.classList.remove('active');
                        btn.classList.remove('hidden');
                        document.body.style.overflow = '';
                    }
                });
            })();
        </script>
        
        <?php
    }
    add_action('wp_footer', 'custom_sticky_menu_button');
    

    Adjust the image, menus, and page IDs to suit.

    Best regards,
    Mike

    Hey poberndoerfer,
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue,
    then you will see the Theme updated successfully message.
    After which you can go to your Theme Forest account and create a new Token for future automatic updates.

    Best regards,
    Mike

    in reply to: Upgrading Apache version #1493996

    Hey navindesigns,
    Please note that Apache is not the same as PHP.
    Since PHP v8.5 was released on November 20, 2025, I don’t believe it has been tested yet. My server does not support it yet. You may see deprecated warnings, but I don’t believe that it will crash your site. It may be best to test on a staging site first.

    Best regards,
    Mike

    in reply to: Footer #1493995

    Hi,
    Glad to hear that you have found a solution, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    Good news, to add shortcode use the Code Block element, hope it will work for you. 

    Best regards,
    Mike

    in reply to: HELP Not parsing in code block #1493818

    Hi,
    Well now you have placeholder  images showing, probably  not what you want :
    /images/placeholder.jpg
    You will need to rebuild  the page.
    I don’t see i’t as it as a thene issue, perhaps as a plugin  issue, we can check with with a admin loagin. You need to change the /images/placeholder.jpg to the real images.

    Best regards,
    Mike

    in reply to: Mon favicon ne s’affich plus dans les SERP #1493812

    Hi,
    For the icon that you manually upload to your root, ensure that it is a .ico and not larger than 32X32 If you use realfavicongenerator.net or favicon.io they will give you the full set of icons to add to your header via code.
    The point I was trying to point out was that while the other search engines showed your favicon, google might not show the larger size. Just a thought.

    Best regards,
    Mike

    in reply to: Videos (Youtube/Vimeo) no longer opening in lightbox #1493806

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Advanced Layout Builder Won’t Load #1493805

    Hey jonroot,
    I tested your about page, adding an element and then removing it with Yoast SEO active, then I deactivated it.
    I didn’t find a issue, please explain the steps to reproduce the issue.

    Best regards,
    Mike

    in reply to: Mon favicon ne s’affich plus dans les SERP #1493803

    Hey!
    I took another look and found that your favicon.ico is very large 512px-512px Google may want a smaller ico like 16px-16px, or 32px-32px, both are missing from your site. Try testing with this tool: realfavicongenerator.net/favicon-checker
    fkr7Cxt.md.png

    Best regards,
    Mike

    in reply to: Videos (Youtube/Vimeo) no longer opening in lightbox #1493801

    Hi,
    I looked at your css, and as long as you are still using the ihf-contact form and the pojo-a11y you should be fine, Enfold doesn’t change classes so it will be backward compatible.
    Shall we go ahead and close this thread?

    Best regards,
    Mike

    in reply to: Mon favicon ne s’affich plus dans les SERP #1493800

    Hi,
    The reindexing request can take a few days. I think that you have the favicon in the right place since it shows on your site and the other search engines.

    Best regards,
    Mike

    Hi,
    Thanks for your patience, I was very sick this week. Unfortunately I don’t know of any plugins that may help you, your best bet is to use the WooCommerce’s native variation handling in the default layout.

    Best regards,
    Mike

    in reply to: Mon favicon ne s’affich plus dans les SERP #1493796

    Hey Pierre,
    I see that the favicon is not showing in Google, but it does in others:
    fkeeHyG.md.png
    fkeUf2I.md.png
    so the favicon is working correctly, try going to your Google Search Console and request that your site is crawled again. 

    Best regards,
    Mike

    in reply to: HELP Not parsing in code block #1493795

    Hey finchkelsey,
    Your images are leading to a 404 error:
    fkeoOkQ.md.png
    Check the url of each image and compare with the actual image in your media library.

    Best regards,
    Mike

    in reply to: Filter is’t working on mobile #1493794

    Hi,
    Glad that Rikard could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Transparent Header For Mobile #1493793

    Hi,
    Try removing this part of the css above from the end:

    #top .header_color .av-hamburger-inner,
      #top .header_color .av-hamburger-inner::before,
      #top .header_color .av-hamburger-inner::after {
        background-color: var(--enfold-header-color-button-font);
      }

    and add this css:

    @media only screen and (max-width: 767px) {
        .responsive:not(.html_header_transparency) #top #main {
            padding-top: 80px !important;
        }
    }

    Best regards,
    Mike

    in reply to: Videos (Youtube/Vimeo) no longer opening in lightbox #1493792

    Hi,
    I checked your page: https://www.thomashenthorne.com/novato-home-prices-set-records/ and a couple of others in Edge, Firefox, Chrome & Brave, I also disabled the AD blocker for each and the top video opened in a lightbox and the cookie notice only showed once in each browser, even when reloading or viewing a different page. I’m on Windows, so if you are using a Mac try checking your AD blocker settings in your browser and in the system settings, if I recall correctly there is also a option there. I made no changes on your site since I could not reproduce logged in as a admin or logged out, or incognito mode.
    So I’m not sure why your cookie notice keeps showing for you, you might want to see if your browser has any extensions.

    Best regards,
    Mike

    in reply to: Videos (Youtube/Vimeo) no longer opening in lightbox #1493780

    Hi,
    Since this only occurs when logged in as a admin, can you provide an admin login for us to check?

    Best regards,
    Mike

    in reply to: Enfold fixed layout sidebar menu problems #1493635

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad that you have found a solution. If you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, unfortunately you would not be able to have a hybrid approach. If you check the test page in the thread that you linked to, the images to not change when an option is selected. If you use the built-in native WooCommerce variation images instead, this should work, but you could not customize the rest of the product page.
    If you only have one dropdown option, with the same number of images, like your “Column Radiators Raw Steel III Horizontal” then I have a working script, but it sounds like this won’t help you with all products, so you should try using the default native WooCommerce variation images instead.

    Best regards,
    Mike

    Hi,
    Thanks for the demos, I have a working script for the first product “Column Radiators Raw Steel III Horizontal” that contains only one dropdown options box. But your second page that has two dropdowns for color & size is not working because you don’t have enough  images for each possibility, your only image are for “Brushed Bronze” and none for “Polished Stainless Steel”.
    I’m not sure if this will work as the script may work better with one dropdown option per page. Can you have a different  page for each? The slides only have the classes “slide-3”, etc not the variation that you may achive using the WooCommerce variation images built into WooCommerce instead of using the Enfold slider that is not built for this.

    Best regards,
    Mike

    in reply to: Installation of the Enfold theme is not working #1493543

    Hi,
    You will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    after you choose the zip file and click install. If your webhost does not have the ZIP extension installed in your PHP, you will need to ask them to do have. Typically it is installed. If this does not help please include  a admin login so we can examine further.

    Best regards,
    Mike

    in reply to: special heading #1493511

    Hey JSPANAKOS,
    This is typically a conflict with a plugin, there are a couple of plugins that have caused this in the past. Try disabling all of your plugins and check again, the enable your plugins one at a time and cheek to find the conflict.

    Best regards,
    Mike

    in reply to: Slides won’t open in LayerSlider since the update #1493507

    Hi,
    Glad that you found the plugin causing the error. I don’t see anything in the LayerSlider release log suggesting that they know about this issue, I also don’t find any info about an error from Fluent Form abount this. Perhaps if you have a Fluent Form Pro license you could contact Fluent Form. Perhaps they know about this but it’s not publicly shared yet.

    Best regards,
    Mike

    in reply to: Slides won’t open in LayerSlider since the update #1493493

    Hi,
    OK thanks, when I disable all of your plugins the LayerSlider editor loads, please check and disable all, the enable one at a time to find the error. I see no errors in your console log. Please also note that you don’t need the plugin: Classic Editor this is a setting in the theme panel, I set it for you & disabled the plugin, but that is not the cause, so it is another plugin causing the error.

    Best regards,
    Mike

Viewing 30 posts - 1 through 30 (of 34,988 total)