Forum Replies Created

Viewing 30 posts - 61 through 90 (of 35,056 total)
  • Author
    Posts
  • in reply to: “SOLD” image or text over some gallery images #1494267

    Hi,
    I believe Ismael’s solution is for the masonry items (posts) were a custom field can be added, but you want to use masonry gallery images where the custom field is not an option.
    Instead try this function in your child theme functions.php:

    /**
     * Add SOLD overlay to specific masonry gallery items based on the data-av-masonry-item attribute
     */
    function add_sold_overlay_to_masonry_gallery() {
        // Define which masonry items should show as SOLD
        $sold_items = array(973, 866, 865);
        
        // Convert to JavaScript array
        $sold_items_js = json_encode($sold_items);
        ?>
        <script>
        jQuery(document).ready(function($) {
            // Items to mark as sold
            var soldItems = <?php echo $sold_items_js; ?>;
            
            // Add sold-item class to each specified masonry item
            soldItems.forEach(function(itemId) {
                $('.av-masonry-gallery .av-masonry-entry[data-av-masonry-item="' + itemId + '"]').addClass('sold-item');
            });
        });
        </script>
        
        <style>
        /* SOLD overlay styles */
        .av-masonry-entry.sold-item {
            position: relative;
        }
    
        .av-masonry-entry.sold-item::before {
            content: "SOLD";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 0, 0, 0.85);
            color: white;
            font-size: 24px;
            font-weight: bold;
            padding: 10px 30px;
            z-index: 10;
            letter-spacing: 2px;
            border: 3px solid white;
        }
    
        .av-masonry-entry.sold-item::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0);
            z-index: 9;
        }
        </style>
        <?php
    }
    add_action('wp_footer', 'add_sold_overlay_to_masonry_gallery');

    At the top of the function define which masonry items should show as SOLD in this line:

    $sold_items = array(973, 866, 865);

    these are the media library attachment IDs
    f6RZUyN.png
    this is the result:
    f6RmCAl.png

    Best regards,
    Mike

    in reply to: buy theme #1494266

    Hey Alex,
    The theme can only be purchased here: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
    When I check Envato offers credit cards:
    f6uZUa2.png

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494263

    Hi,
    I checked again, but I’m still blocked by Cloudflare.

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494230

    Hi,
    Unfortunately I was blocked again. My IPv4 has not changed but my IPv6 changes with each reboot, try whitelisting my IPv4.

    Best regards,
    Mike

    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: WooCommerce Features not working #1494197

    Hi,
    Thanks, but I don’t see the “Temporary Login Without Password” link today, perhaps you removed it? I also don’t see a admin login. Please add one of these so I can login and check.

    Best regards,
    Mike

    in reply to: Create a second overlay menu #1494142

    Hi,
    Thanks

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494141

    Hi,
    I’m in the USA but I was also blocked by Cloudflare. I added my IP below, but unfortunately I believe that it changes sometimes. Using the “Temporary Login Without Password” plugin would be best, I’m not sure why Cloudflare would block using it. But white list my IP and lets hope that it works.
    As far as the sidebar being below the product, this is where Woocommerce places it.

    Best regards,
    Mike

    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

Viewing 30 posts - 61 through 90 (of 35,056 total)