Viewing 30 results - 31 through 60 (of 7,463 total)
  • Author
    Search Results
  • #1485520

    Hey mosaic,

    Enfold is not responsible for what displayed in search engine result pages. If you have made recent changes, then you would have to wait for a few days at least, if not weeks. You could also ask the search engine in question to crawl your site again.

    Best regards,
    Rikard

    #1485459

    Hi,
    I have researched this and while there is a long technical explanation for why the WAVE test tool is flagging this, I found a solution in my research. Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function remove_link_from_search_icon_and_add_it_back_on_click() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function() {
        const searchLink = document.querySelector('#menu-item-search a');
        if (searchLink) {
            // Store the original href
            const originalHref = searchLink.getAttribute('href');
            // Remove the href on page load
            searchLink.removeAttribute('href');
            
            // Add click event to restore href
            searchLink.addEventListener('click', function() {
                if (!searchLink.getAttribute('href')) {
                    searchLink.setAttribute('href', originalHref);
                }
            });
        }
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'remove_link_from_search_icon_and_add_it_back_on_click', 99 );

    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:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the above code and save.
    I tested this on the WAVE Web Accessibility Evaluation Tool and it removed the error.

    Best regards,
    Mike

    #1485406

    Hi,

    Thank you for the update.

    What happens when you edit line 120 of the enfold\includes\config-enfold\functions-enfold.php file?

    $icon = avia_font_manager::get_frontend_icon( 'svg__search', false, [ 'aria-hidden' => 'true', 'title' => $title, 'desc' => $title ] );
    

    Try to set aria-hidden to false:

    $icon = avia_font_manager::get_frontend_icon( 'svg__search', false, [ 'aria-hidden' => 'false', 'title' => $title, 'desc' => $title ] );
    

    Or remove the attributes completely.

    $icon = avia_font_manager::get_frontend_icon( 'svg__search', false, [ ] );
    

    Let us know the result.

    Best regards,
    Ismael

    #1485352
    DianaLoola73
    Participant

    Dear Enfold Support Team,

    I’m working on making my website more accessible:
    https://www.schlosswirtschaft-schwaige.de
    I’m using the built-in search icon in the main menu (top right), enabled via the Enfold settings.
    However, accessibility tools (like WAVE) report two problems:
    – The search icon has no accessible label (aria-label or similar).
    – It’s also flagged as a “suspicious link”.
    Could you please tell me the best way to solve this so it meets accessibility standards (WCAG)?
    Thank you very much for your help!

    Best regards, Diana

    #1485207

    on default there are allready these lines : https://kriesi.at/themes/enfold/portfolio/

    maybe you set it to display: none ? search for selector .avia-menu-fx

    you then can influence by – f.e.:

    #top .header_color .avia-menu-fx {
      height: 4px
    }
    
    #top .header_color.av_header_transparency .menu-item a:hover .avia-menu-fx {
      background: red
    }
    
    #top .header_color:not(.av_header_transparency) .avia-menu-fx {
      background: green
    }
    bbarasa
    Participant

    I thought this would be simple for me to figure out, but it is not.

    My CSS skills are limited and when I view the code (in my browser) I can’t tell which classes I should use to format certain specific things.

    On this page:
    https://2p4twjkbl5.papa-view.com/

    I would like to have a black gradient behind the white text and also be able to format the text. I’ve tried a few CSS things which haven’t worked.

    I’ve searched the forum in as many ways as i can think of, have watched youtube videos about Enfold and of course started with Enfold documentation. Enfold is a great theme, but I cannot find a way to do these simple things.

    Any help or pointing me to resources would be appreciated.

    #1485143

    Hi Ismael

    This is my the Advanced Styling Menu setting:

    View post on imgur.com

    With the old Enfold, it works fine, the search icon appears correctly and the link works properly.
    In new versions of Enfold (7.x.x), however, the search icon is not displayed.

    Best regards,
    Oriano

    • This reply was modified 4 months, 4 weeks ago by orianos.
    #1485066
    orianos
    Participant

    After update Enfold, the Search Icon To Main Menu does not appear in a site with “Stretched Or Boxed Layout: Boxed Layout; Logo And Main Menu: Top Header”.

    Please see Private Content

    Best regards,
    Oriano

    #1485018
    Winston Wright
    Guest

    Hi, I am seeking to build a new website and I really like your Enfold themes.
    I just wanted to ask two questions;
    1.) it is possible for me to leave off/remove some of the sections on a page? If you look at the medical demo, and the law demo, when the page loads, they have statistics calculate, such as 25 Million $, Research Budget 255.000 Patients healed 212 Doctors working for you 125 Years of experience
    And I would like to remove that.
    And I would also like to remove Meet the Team/Team, as I do not have a team.
    Is this possible?
    2.) I would also like to use the following plugin for my site; ProfilePress profilepress.com it’s a word press plugin to allow people to come to the site and make a profile.
    Would Enfold allow this plugin?

    #1484899

    Hey syberknight-tb,
    Unfortunately, we don’t have an element that will achieve this for you in the theme, while there are many plugins that may work for you, when I check some of them they don’t quite match, but if you spend more time testing each one you may find one.
    I was able to create something that may work for you using javascript and HTML in a shortcode, on mobile it shows 1 1/2 team member cards with prev & next arrows and loop when you click to the end:
    Screen Shot 2025 05 31 at 9.41.31 AM
    on tablet it shows 2 1/2 cards:
    Screen Shot 2025 05 31 at 9.43.47 AM
    and on desktop it shows 3 1/2 cards:
    Screen Shot 2025 05 31 at 9.45.40 AM
    As is it holds 8 cards, you can add more or have less, you will need to edit the HTML to add your images and text, hopefully you will be able to do this:
    Screen Shot 2025 05 31 at 9.50.45 AM
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, 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:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the code below and save.

    function team_carousel_shortcode() {
        ob_start(); ?>
        
        <div class="carousel-container">
            <button id="prevBtn">←</button>
            <div class="carousel">
                <div class="carousel-track">
                    <!-- START: Team Members -->
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 1"><p>Member 1<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 2"><p>Member 2<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 3"><p>Member 3<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 4"><p>Member 4<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 5"><p>Member 5<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 6"><p>Member 6<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 7"><p>Member 7<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 8"><p>Member 8<br>A short bio for the team member</p></div>
            <!-- END: Team Members -->
                </div>
            </div>
            <button id="nextBtn">→</button>
        </div>
    
        <style>
        .carousel-container {
            position: relative;
            width: 80%;
            overflow: visible;
            margin: auto;
        }
    
        .carousel {
            overflow: hidden;
            width: 100%;
        }
    
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
    
        .card {
            box-sizing: border-box;
            padding: 10px;
            background: #e8e8e8;
            margin: 5px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
    
        @media only screen and (max-width: 767px) { 
            .card { flex: 0 0 62%; }
        }
    
        @media only screen and (min-width: 768px) and (max-width: 1800px) { 
            .card { flex: 0 0 38%; }
        }
    
        @media only screen and (min-width: 1801px) { 
            .card { flex: 0 0 28%; }
        }
    
        .card p {
            color: #000;
         }
    	.card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 100%;
        }
    
        #nextBtn, #prevBtn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #000;
            border: 2px solid #000;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }
    
        #prevBtn { left: -50px; }
        #nextBtn { right: -50px; }
        </style>
    
        <script>
        document.addEventListener('DOMContentLoaded', function () {
            const track = document.querySelector('.carousel-track');
            const cards = document.querySelectorAll('.card');
            const prevBtn = document.getElementById('prevBtn');
            const nextBtn = document.getElementById('nextBtn');
    
            let currentIndex = 0;
            let cardWidth = cards[0].offsetWidth + 20;
    
            function updateCarousel() {
                const shift = currentIndex * cardWidth;
                track.style.transform = translateX(-${shift}px);
            }
    
            function moveToNext() {
                currentIndex++;
                if (currentIndex >= cards.length) {
                    currentIndex = 0;
                }
                updateCarousel();
            }
    
            function moveToPrev() {
                currentIndex--;
                if (currentIndex < 0) {
                    currentIndex = cards.length - 1;
                }
                updateCarousel();
            }
    
            nextBtn.addEventListener('click', moveToNext);
            prevBtn.addEventListener('click', moveToPrev);
    
            window.addEventListener('resize', () => {
                cardWidth = cards[0].offsetWidth + 20;
                updateCarousel();
            });
        });
        </script>
    
        <?php
        return do_shortcode(ob_get_clean());
    }
    add_shortcode('team_carousel', 'team_carousel_shortcode');

    Then add this shortcode in a code block element on your page: [team_carousel]
    Feel free to adjust the colors in the css in the code.

    Best regards,
    Mike

    #1484538
    NicomIT
    Participant

    I am getting a flood of deprecation warnings in my error_log file and it is slowing down our server’s performance, especially noticeable when editing posts and pages.

    It appears the offending functions are:
    av_icon_char
    av_icon_class
    av_icon_string

    I cannot find information on what the correct replacements are. Is this something you can help me with?

    Here are some samples of how we are currently using these functions.

    av_icon_char
    $icon = av_icon_char( ‘search’ );

    av_icon_string
    $class = av_icon_class( ‘search’ );

    av_icon_string
    ‘ id=’scroll-top-link’ <?php echo av_icon_string(‘scrolltop’); ?>><span class=”avia_hidden_link_text”><?php _e(‘Scroll to top’, ‘avia_framework’);?></span>

    Here are some examples from the error_log file:

    [21-May-2025 18:26:12 UTC] PHP Deprecated: Function av_icon_char is deprecated since version 7.0! Use No longer used by Enfold instead. in /home/maritimetravel/public_html/wp-includes/functions.php on line 6121
    [21-May-2025 18:26:12 UTC] PHP Deprecated: Function av_icon_class is deprecated since version 7.0! Use No longer used by Enfold instead. in /home/maritimetravel/public_html/wp-includes/functions.php on line 6121
    [21-May-2025 18:26:12 UTC] PHP Deprecated: Function av_icon_char is deprecated since version 7.0! Use No longer used by Enfold instead. in /home/maritimetravel/public_html/wp-includes/functions.php on line 6121
    [21-May-2025 18:26:12 UTC] PHP Deprecated: Function av_icon_class is deprecated since version 7.0! Use No longer used by Enfold instead. in /home/maritimetravel/public_html/wp-includes/functions.php on line 6121

    Our error_log file grows about 200 MB per day.

    Can you please direct me on how we can update our child theme to address these deprecation warnings?

    #1484171
    webdesignphx
    Participant

    Hey Guys
    I get the message:
    Could not connect to Google Maps with this API Key.
    Troubleshooting:
    Check if you typed the key correctly.
    If you use the restriction setting on Google try to remove that, wait a few minutes for google to apply your changes and then check again if the key works here. If it does, you probably have a syntax error in your referrer url
    If none of this helps: deactivate all plugins and then check if the API works by using the button above. If thats the case then one of your plugins is interfering.

    I disabled all the plugins, and I also set up a new api key, I also unrestricted the key for a while, but then restricted it again.
    the google account is active and working. I have 50 other keys that don’t have any issues.

    I did a research and found that I can put the script:
    <script async defer
    src=”https://maps.googleapis.com/maps/api/js?key=YOURAPIKEY&callback=initMap”&gt;
    </script>
    directly into the body code.. I use perfmatters for this.. and it is working now. but there must be something else wrong why enfold won’t let me place it.
    My way is not as elegant as putting it into the google services page in enfold.
    Thanks so much for helping me.
    Tina

    • This topic was modified 5 months, 3 weeks ago by webdesignphx.

    Hi Ismael,

    The search element inclusion in the header worked out great. The full width menu shadow however didn’t turned out right, please see the shared link once more. The CSS snippet basically made the page full with (which indeed push the shadow from edge to edge. However I do would like to keep the container 1340px width and not force the website full screen.

    If you zoom out on the page you can see that the full width effect is kept. Is there a way to keep the website within the 1340px container but do keep the menu bar background effect (top shadow) full width? I will drop another Enfold project where this is the case (no custom header however)

    Kind Regards,
    S

    Hi,

    .main-title looks like a different font or font weight

    Looks like the title is set to use a lighter font weight instead of the default 400. Did you configure the Heading elements in the Enfold > Advanced Styling tab? You can also adjust it with this css:

    #top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1, #top #wrap_all .socket_color h1 {
        font-weight: 400;
    }

    Regarding the burger/mobile menu, try to edit the Main Menu (Icon) elements in the Advanced Styling panel, or use this css code:

    #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
        color: #ffffff;
        font-size: 18px;
        line-height: 1.8em;
    }
    
    .html_av-overlay-side #top #wrap_all div .av-burger-overlay-scroll #av-burger-menu-ul li:hover a, #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a:hover {
        background-color: #333366;
        color: #ffffff !important;
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hi Ismael,

    Thanks for your reply. I think point 1 got misunderstood a bit, this is not actually not related to the mobile menu but to the menu style of large screens. As you can see there is a slight top shadow on the menu bar. But the menu is limited to the with of the container. I would like that the drop-down shadow is shown to the full width of the page. Let me post an Enfold project in the private content to show what I mean.

    Regarding the search icon, I have already placed a fontawesom icon in the 3rd widget to illustrate the desired position of the search icon. So I would like to find out how to actually activate the search function from that position.

    The hamburger position on mobile worked out good by the way, thanks for that.

    Regards
    S

    Hey Enfoldfanatic,

    Thank you for the inquiry.

    1.) You can adjust this in the Enfold > Main Menu > Burger/Mobile Menu > Menu Overlay Style settings. Set it to Full Page Overlay Menu.

    2.) To align the menu with the logo on mobile view, add this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #header #header_main .container.av-logo-container .inner-container {
        display: flex;
      }
    
      .responsive #top #header #header_main .inner-container .main_menu {
        order: 2;
        flex-basis: auto;
        top: 20px;
      }
    }

    3.) Could you provide a screenshot showing where you’d like the search icon to display?

    Best regards,
    Ismael

    #1483377

    Topic: Missing dependencies

    in forum Enfold
    ldgservice
    Participant

    Good morning,
    I have been experiencing issues with my website running slowly, so I contacted my hosting provider, Aruba. They installed a plugin called “Query Monitor,” and according to the plugin’s report, there appear to be missing dependencies among the Enfold theme’s stylesheets.
    Below are the messages from the report.
    I remain confident in your support and assistance.
    Thank you.

    “Dipendenze mancanti avia-module-audioplayer http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-blog http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-postslider http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-button http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-buttonrow http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-button-fullwidth http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-catalogue http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/catalogue/catalogue.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-comments http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-contact http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-slideshow http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css avia-layout (mancante) avia-module-gallery-hor, avia-module-slideshow-contentpartner, avia-module-slideshow-feature-image, avia-module-slideshow-fullscreen, avia-module-slideshow-fullsize 7.1
    Dipendenze mancanti avia-module-slideshow-contentpartner http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-countdown http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-dynamic-field http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/dynamic_field/dynamic_field.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-gallery http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-gallery-hor http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-maps http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-gridrow http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-heading http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-rotator http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-hr http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-icon http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-icon-circles http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-iconbox http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-icongrid http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-iconlist http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-image http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-image-diff http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_diff/image_diff.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-hotspot http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-sc-lottie-animation http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/lottie_animation/lottie_animation.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-magazine http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-masonry http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-siteloader http://www.ldgservice.it wp-content/themes/enfold/css/avia-snippet-site-preloader.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-menu http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-notification http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-numbers http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-portfolio http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-post-metadata http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-progress-bar http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-promobox http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-sc-search http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-slideshow-accordion http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-slideshow-feature-image http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-slideshow-fullsize http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-slideshow-fullscreen http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-slideshow-ls http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-social http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-tabsection http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-table http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-tabs http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-team http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-testimonials http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-timeline http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-toggles http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-video http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css avia-layout (mancante)”

    Enfoldfanatic
    Participant

    Hi guys,

    With support of this particular article https://kriesi.at/documentation/enfold/example-of-logo-left-widgets-right-menu-below/#toggle-id-2 I was able to build up the desired header- menu structure including 3 widgets in the header area and the menubar shown below.

    I’m trying to achieve some minor modification on which I haven’t been successful until now. I would like to:

    – Ensure the menu has a full width so that the created drop shows has a full width stretch over the screen (but off course keep the menu items within the container
    – Ensure that the hamburger menu is on the same level – row as the logo in case of smaller viewports. Currently it jumps under the logo on a new row
    – I would like to “move” the search function into the 3rd widget and not show it on the right side of the last menu item. However I could find the html/ shortcode to locate the actual search function in the 3rd widget.

    I’ll paste the URL in the private content.

    Thanks for your support!

    Kind regards,
    S

    #1483301

    Yes, that CSS is there but whatever is changed on it affects both the navigation bar search box and the content custom search widget. Below is the CSS for the home page content custom search widget. Is anything is this customization affecting the navigation search box? It was working correctly for several years up until the latest version of Enfold. I don’t know what changed, but rolling back to previous versions of Enfold in a staging area corrects it.

    #chsearchbox {
    position: relative;
    background-color: transparent!important;
    margin-top: -15px;
    z-index: 55;
    border: none!important;
    }
    #search-3 #s {
    left: 35px;
    content: url(‘https://riseandshine.childrensnational.org/wp-content/uploads/2017/07/ch-search-icon.png&#8217;);
    width: 85%;
    margin: -32px auto !important;
    padding: 41px;
    border: none!important;
    box-shadow: 0px 5px 15px 0px #cccccc;
    }
    #search-3 .avia-font-entypo-fontello {
    background-image: url(https://riseandshine.childrensnational.org/wp-content/uploads/2017/07/ch-search-icon.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    background-color: transparent!important;
    width: 67px!important;
    }
    #search-3 #searchform #searchsubmit {
    _font-size: 2.5em; /*set the size of the magnifying icon*/
    font-size: 1.5em;
    color: transparent;
    }
    #search-3 input[type=”text”] {
    font-size: 30px; /*set the size of the search box input font*/
    }
    #search-3 .button {
    left: 95px;
    }
    #searchsubmit .avia-font-entypo-fontello {
    display: none!important;
    }

    #1482197
    GWS
    Participant

    Hi,
    I’m following up on a similar topic I started about the search widget: https://kriesi.at/support/topic/search-widget-no-longer-working-correctly-since-update-to-enfold-7/

    I couldn’t respond to the topic earlier, but I appreciate your help with the custom search box widget. The CSS you provided works perfectly for the custom search widget located below the layerslider on the homepage. However, it also affected the search icon on the navigation menu bar. Instead of displaying the default SVG image for the navbar search box, it’s showing the custom widget’s image. Moreover, the search icon is misaligned within the text box entry area. When I attempt to modify the CSS for the navbar search box, it inadvertently changes the search icon in the page content widget. While the custom search widget is in great shape now, we need to restore the default SVG image and its position for the navbar search widget.

    Could you guide me on restoring the SVG image to the navbar search box without it impacting the custom search widget in the homepage content area?

    #1482158

    In reply to: Search icon

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    #top .menu-item-search-dropdown > a.avia-svg-icon svg:first-child {
      z-index: 0;
    }

    Best regards,
    Rikard

    #1481842

    Thanks, Mike. I searched more on your support and found this helpful. “Enfold 4.7.4 has an option to disable the unique timestamp generation for the css and JavaScript merged files and so there will not be as many entries it the wp_options table.”

    I have the same issue. On my marketing website where the search icon/nav menu is over a photo, I can see the icon. But on my real estate website the menu bar is black and there’s a spot for the search icon, but it is not visible. Both are using Enfold version 7.1. I have other sites with nav menu bars where you cannot see the search icon. Yes, under Enfold, Main Menu I HAVE checked the box to APEND Search Icon to Main Menu. On all my sites.

    #1481328
    manurimini
    Participant

    Sorry. I messed up with the custom CSS. The new search icon is working perfectly. You can close this thread.
    I am very sorry to have wasted your time
    Best Regards
    Manu

    • This topic was modified 6 months, 3 weeks ago by manurimini.
    • This topic was modified 6 months, 3 weeks ago by manurimini.
    #1481296

    Topic: SEO Mystery

    in forum Enfold
    Ad-Min747
    Participant

    HI,
    I know it’s not your core business but after several trial with Yoast, XML Sitemaps and finally Enfold SEO feature, the website I work on isn’t appearing on any Search engine… In WP settings, to box allowing search engine to index is OK.

    The website is : http://www.springen-conseil.fr.

    Do you have any ideas?

    It would help.

    Best

    #1480993

    Topic: Custom divider

    in forum Enfold
    Brugmedia
    Participant

    Hello,

    i want te make something like the picure in the link. I have tried te use the custom svg divider en other options in enfold en searched over the internet for a solution but haven’t found anything. I want half an background color under a layout element. See for my idea:
    https://brugmedia.nl/wp-content/uploads/2025/04/Screen.png

    Is something like this possible in enfold?

    Guenni007
    Participant

    on an older post there is no working solution for it.
    https://kriesi.at/support/topic/change-color-body-style-on-one-page/
    If I look at the differences in the DOM, I notice that it essentially depends on the html classes: html_stretched, html_boxed and html_av-framed-box. These classes are set in the header.php according to the settings of the Enfold options. ( html_stretched, html_boxed and html_av-framed-box ) on body they are set without html_ )
    There are some filters – but nothing could bring the solution. (see old topic).

    A child theme header.php, on the other hand, is quickly created because a file of that name in the child theme root directory is automatically used instead of the parent theme file.

    If you only want to use the framed layout for a specific page, it is easier to use the reverse method – set the framed layout setting globally and change it to boxed or stretched for all other pages.

    Long story short. Upload to your child-theme route directory a header.php copy and edit it.
    search for that line ( around line 26) :

    $style = $avia_config['box_class'];
    

    if you set the stretched layout – and want to have for a specifc page a boxed layout –
    or you have set the boxed layout and want only one page to be in stretched layout – replace it by:

    if (is_page(array(27))) { 
    	$style = 'boxed'; // or 'stretched'
    } else {
    	$style = $avia_config['box_class'];
    }

    now – as mentioned above it is not easy to get for only some pages a framed layout. So here we go the other way :
    Set on Enfold options page a framed layout as global setting – and change the layout to all others that are not that page:

    if (!is_page(array(27))) { 
    	$style = 'stretched';
    } else {
    	$style = $avia_config['box_class'];
    }
    

    now every page now is stretched except the page 27

    see here example page : https://clean.webers-testseite.de/impressum/ this page is framed – all others are stretched.

    #1480611

    In reply to: Sticky element

    Hi,

    Thank you for the update.

    Instead of placing the search widget inside a Color Section, try inserting it directly into the header using a widget or widget area. Please refer to this documentation for more info.

    https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    This is the html of the search element, which can be placed inside a Text widget: https://pastebin.com/K8x7qu9g

    Best regards,
    Ismael

    Marc Bijl
    Participant

    When I change the css file of my child theme, these changes do not show up at the website.

    After searching long, long time, it seems my website loads an old version of the css file. In the source code I see this one being loaded:
    /wp-content/themes/enfold-child/style.css?ver=7.1

    The content of this file, when viewed through the browser, is not the same as the file I’m editing through ftp and a code editor at:
    /wp-content/themes/enfold-child/style.css

    I’ve been trying hard to find out how to load the right css. For example I’ve deleled browser caches, turned off caching plugin, and also set Enfold Performance settings at:

    – Turn off css compression/merging
    – Turn on delete old css and js files

    Nothing seemed to help. Finally asked chatgpt which said:

    “It seems that the ?ver=7.1 in the URL of your style.css file is added to indicate the version of the file, which is usually done for caching purposes. If you want the CSS to load without the version parameter, there are several ways to do this, depending on how the version parameter is added. Here are a few possible solutions:”

    One of the solutions was adding this code:

    function custom_enqueue_styles() {
        wp_enqueue_style( 'enfold-child-style', get_stylesheet_directory_uri() . '/style.css', array(), false, 'all' );
    }
    add_action( 'wp_enqueue_scripts', 'custom_enqueue_styles' );

    That seems to do the trick!

    What is happening here?
    How can I get this fixed without adding the extra code?

    Using Google, I see quite some people having issues withc css changes not being visible due to Enfold settings.

    Please let me know how all his stuff works, and how I can turn it off or set it in such a way that it just works?

    #1480193
    comkapi
    Participant

    Hello,
    the MCE icon tool (in the shape of a magic wand) to insert a shortcode in text element no longer appears in my custom layout.
    i use it to display ACF custom fields data, like in documentation.

    With console i see a JS error in admin, I searched and it comes from the fact that the shortcode use the field label of ACF but it’s the field name which is given now, example for a company name :
    previously with field name : {acf_field_6745a0c4478f3:Nom_entreprise}
    today with field label instead : {acf_field_6745a0c4478f3:Nom de l’entreprise}
    And in French the apostrophe in the label value of the field brakes some Avia js array and prevents the display of the MCE icon tool …

    i fixed it by removing apostrophe in the ACF label field
    This appears to be due to a recent update, but is it an Enfold update or an ACF update? i don’t know

    Maybe it can help others

    Regards

Viewing 30 results - 31 through 60 (of 7,463 total)