Viewing 30 results - 31 through 60 (of 7,467 total)
  • Author
    Search Results
  • WPDESIGNER
    Participant

    Hello Enfold Support Team,

    I am trying to change the default cropped size of my featured images on single blog posts to a proper 16:9 aspect ratio, so that my 1280x720px images are displayed in full without any cropping.

    I have tried two different PHP-based methods based on my research, but neither has worked on my local server environment (so caching should not be the issue).

    Method 1: Modifying Existing Sizes

    First, I tried to modify the existing theme sizes using the avf_modify_thumb_size filter. This was the code I used in my child theme’s functions.php (respectively in a Code Snippet Plugin):

    function enfold_definitive_image_ratio_fix( $size_array ) {
        $size_array['entry_without_sidebar'] = array('width' => 1210, 'height' => 681);
        $size_array['entry_with_sidebar'] = array('width' => 845, 'height' => 475);
        return $size_array;
    }
    add_filter( 'avf_modify_thumb_size', 'enfold_definitive_image_ratio_fix', 10, 1 );

    When this code is active, the “Regenerate Thumbnails” page still shows the old default dimensions (e.g., 1210×423), so the filter does not seem to be applying correctly.

    Method 2: Registering a New Size and Forcing its Use

    As an alternative, I also tried registering a brand new 16:9 image size (custom-16-9-hero) and then used the avf_post_featured_image_size filter to force the theme to use it. Here is the code for that attempt:

    function enfold_add_custom_image_sizes() {
        add_image_size( 'custom-16-9-hero', 1280, 720, true );
    }
    add_action( 'after_setup_theme', 'enfold_add_custom_image_sizes' );
    
    function enfold_use_custom_featured_image_size( $size ) {
        if ( is_singular('post') ) {
            return 'custom-16-9-hero';
        }
        return $size;
    }
    add_filter( 'avf_post_featured_image_size', 'enfold_use_custom_featured_image_size', 10, 1 );

    With this method, the “Regenerate Thumbnails” plugin does show my new custom-16-9-hero – 1280 x 720 size and creates the files correctly after regenerating. However, the theme’s single post template still ignores the filter and continues to display the old default cropped image.

    My question is:

    In the latest version of Enfold, what is the definitive and correct method to ensure the featured image on a single post page is displayed at a custom 16:9 ratio?

    Thank you very much for your help.

    Kind regards,
    David

    #1485950
    jugalbandi3
    Participant

    Hi,

    We observed duplicate id-attributes in the mobile menu (hamburger-menu), similar to what is described in

    This came up when trying to check and optimize website-compatiblity for screenreaders. Nodes of the main menu are copied over to the hamburger-menu. svg-icons (for the search) contain id-attributes which simply get duplicated – but obviously need to be transformed to become unique again.

    A modification of this copy-behaviour would for example be possible in
    wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js
    in function normalize_layout().

    Quick-and-dirty code for those replacements:
    There was:
    var menu2 = $(‘#header .main_menu’).clone(true),
    ul = menu2.find(‘ul.av-main-nav’),
    id = ul.attr(‘id’);

    We then added lines to search for the corresponding nodes in the HTML with jQuery and make replacements for all hits. ‘-hamburger’ is appended to the IDs.

    var toChange;
    toChange = menu2.find(‘[id^=av-svg-desc-‘);
    toChange.each(function() {
    $(this).attr(‘id’, $(this).attr(‘id’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[id^=av-svg-title-‘);
    toChange.each(function() {
    $(this).attr(‘id’, $(this).attr(‘id’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[aria-labelledby^=av-svg-title-‘);
    toChange.each(function() {
    $(this).attr(‘aria-labelledby’, $(this).attr(‘aria-labelledby’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[aria-describedby^=av-svg-desc-‘);
    toChange.each(function() {
    $(this).attr(‘aria-describedby’, $(this).attr(‘aria-describedby’) + ‘-hamburger’);
    });

    It’s quite an edge case, but could potentially irritate a screen reader.

    #1485615

    Hi,

    However, I believe there may have been a misunderstanding regarding the issue. The problem is not with the icon itself or its aria-hidden attribute, but with the structure and function of the link that wraps the icon.

    If we’re not mistaken, the issue occurs because the SVG icon includes the aria-hidden attribute, which makes it unreadable to accessibility tools. As a result, the parent link is marked as “suspicious” since the icon is hidden and the link lacks any accessible text or description. The span avia_hidden_link_text, which contains the word “Search” also has its display property set to none, making it inaccessible to screen readers as well.

    Removing the aria-hidden attribute from the SVG icon or adjusting the visibility of the avia_hidden_link_text should help.

    #top .avia_hidden_link_text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        border: 0;
    }

    You can also try editing the enfold/includes/config-enfold/functions-enfold.php, around line 125, change the text “Search” to “Click here to search”.

    $items .=			'<span class="avia_hidden_link_text">' . __( 'Click Here to Search', 'avia_framework' ) . '</span>';
    

    According to https://wave.webaim.org/, screen readers tend to better interpret buttons or links when it contains more descriptive text.

    View post on imgur.com

    If this doesn’t help, you can always try the suggestions above.

    Let us know the result.

    Best regards,
    Ismael

    #1485564

    by the way – it is nice to have an embedded tab navigation now on Enfold – but to prevent that mouse events do show the focus setting – it might be better to go to the focus-visible or focus-within setting. These rulesets do not influence the click or hover states of links / buttons etc.

    f.e. :

    
    #menu-item-search a.avia-svg-icon:focus {
      outline: none !important;
    }
    #menu-item-search a.avia-svg-icon:focus-visible > svg {
      outline: 3px solid red !important;
      outline-offset: 5px;
    }

    now we got the ugly outline by navigation with mouse !
    you can see here a manually set tab navigation with only focus-visible settings. Click a link to see that the states are not influenced.
    https://guenterweber.com/

    #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 5 months, 3 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 6 months, 2 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 7 months, 2 weeks ago by manurimini.
    • This topic was modified 7 months, 2 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?

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