Forum Replies Created

Viewing 30 posts - 31 through 60 (of 66,793 total)
  • Author
    Posts
  • in reply to: Hamburger menu icon left, logo centered, search icon right #1491152

    Hi,

    Thank you for the inquiry.

    Did you remove the search icon? Please enable it again so we can check it properly. A screenshot would also be helpful.

    Best regards,
    Ismael

    Hey,

    Thank you for the update.

    1. Yes, this is the maximum number of columns. If you need more, you can always use the code or text block element to manually create your own html.

    2. Please create a test page, open a new thread, and provide the login details in the private field.

    3-4. Simply add the [nolink] placeholder in the **Enfold > Footer > Copyright** field.

    5. Please open a dedicated thread and provide a screenshot.

    6. Make sure caching and compression are off, or temporarily disable the **Enfold > Performance > File Compression** settings.

    7. Would you mind providing screenshot of the “stacking columns”? You can use image platforms like imgbb or imgur for the screenshot. 

    8. It’s possible that there is a heading configuration in the Enfold > Advanced Styling panel, or that they are Special Heading elements with  their own configurations.

    It usually takes a bit of time to get used to the theme, and you might have missed some options, so we recommend reviewing the documentation. For other inquiries, please open a dedicated thread.

    If you would like to proceed with a refund, you may contact ThemeForest.

    Thank you.

    Best regards,
    Ismael

    in reply to: Next/Previous Post within same Category #1491150

    Hi,

    Thank you for the inquiry.

    Please provide the login details in the private field so we can check this properly. Did you select the Loop post navigation option in Enfold > Blog Layout > Single Post Navigation settings? Looping will not work correctly when same_category is enabled. Try to set the Single Post Navigation to the first option (Enable post navigation).

    Best regards,
    Ismael

    in reply to: Boxed content in grid row with fullwidth background #1491149

    Hi,

    Thank you for the update.

    We didn’t find any grid row elements on the test page. If you need to limit the width of the cells inside a grid row to 1400px, you can use the following css code. You may need to replace the selector #av-layout-grid-1 with your custom css class or element ID.

    #av-layout-grid-1 {
      width: 100%;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    #av-layout-grid-1 > .av-gridrow-cell {
      flex: 0 0 25%;
      max-width: 350px;
      box-sizing: border-box;
    }
    
    #av-layout-grid-1 .flex_cell_inner {
      margin: 0 auto;
    }
    
    @media (max-width: 768px) {
      #av-layout-grid-1 > .av-gridrow-cell {
        flex: 0 0 100%;
        max-width: none;
      }
    }

    This should work for a grid row with 4 cells. Make sure to adjust the width values in this css rule based on the number of cells in the grid.

    #av-layout-grid-1 > .av-gridrow-cell {
      flex: 0 0 25%;
      max-width: 350px;
      box-sizing: border-box;
    }
    

    Best regards,
    Ismael

    in reply to: Modify filter to alter srcset #1491148

    Hi,

    Thank you for the inquiry.

    We may need to view the site again to properly check the issue. Please create a test page and provide the URL in the private field.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Did you add this css code somewhere?

    .js_active .woocommerce-tabs .panel {
        display: none;
    }

    Try to override it with this css code:

    .js_active .woocommerce-tabs .panel {
        display: block;
    }

    Please make sure to temporarily disable the cache and compression plugin (Autoptimize) while testing the site.’

    Clip: https://streamable.com/ih23g6

    Best regards,
    Ismael

    in reply to: Color section video black background #1491146

    Hey agenturwendt,

    Thank you for the inquiry.

    Looks like you have successfully adjusted the background of the slides using this css code:

    #top .av-video-slide .avia-slide-wrap, #top .av-video-slide iframe {
        background: #fdf1e3 !important;
    }

    Let us know if you need any additional assistance.

    Best regards,
    Ismael

    in reply to: Product slider only showing Capital text #1491145

    Hi,

    Thank you for the inquiry.

    Try to add this css code to adjust the product title in the slider.

    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
        text-transform: capitalize;
    }

    Screenshot-2025-11-11-at-9-36-17-AM

    Best regards,
    Ismael

    in reply to: Klick auf Button öffnet Formular in Modal/Lightbox #1491094

    Hey felix_frank,

    Thank you for the inquiry.

    Unfortunately, it’s not possible to use a custom layout as a shortcode (av_layout_template) outside of the builder. You may need to copy the html generated by the layout shortcode and use it instead of the custom layout shortcode.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    1.) You can open threads using the form on this page: https://kriesi.at/support/forum/enfold/#new-post

    2.) The default image style is set globally by the theme. If you need to adjust a specific image, you can do so using the Image element in the builder or by applying custom css in the Quick CSS field.

    3.) It’s possible that the sidebar is enabled for that particular page. Make sure the page is set to full width by adjusting Layout > Sidebar Settings to “No Sidebar”.

    If you have any other questions, please open a separate thread for each inquiry. Longer threads can get hard to follow, tend to go off topic and make it tricky for other users to find solutions. Keeping each thread focused on its original question helps us track what’s been resolved and makes it easier for everyone to find answers to similar issues.

    To learn more about the theme, please check out the documentation: https://kriesi.at/documentation/enfold/

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1491091

    Hi,

    Thank you for the info.

    It seems to be working as expected. We created a test page, added a focus keyword “test”, and then added an image with both an alt and title attribute containing the word “test”. Make sure that the alt and title attributes of the images you add to the page contain one of the focus keywords (see private field).

    Screenshot-2025-11-10-at-10-56-14-AM

    Best regards,
    Ismael

    in reply to: Blog Overview – Image left, copy right #1491090

    Hi,

    Did you regenerate the thumbnails using the plugins suggested above? You could also try re-uploading the featured images.

    Best regards,
    Ismael

    in reply to: Disable Lightbox on mobile #1491089

    Hi,

    Thank you for the inquiry.

    You can use the following css code to disable all lightbox elements on smaller screens.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .lightbox,
      .lightbox a,
      .lightbox img {
        pointer-events: none !important;
      }
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We cannot reproduce the issue with the search field or the details tab. The search field remains visible at all times, and the details tab is also visible on page load. If the tab is being deactivated on load, try adding this script in the functions.php file:

    add_action('wp_footer', function() {
        ?>
        <script type="text/javascript">
        document.addEventListener('DOMContentLoaded', function() {
            var activeTab = document.querySelector('#top div div.product .woocommerce-tabs ul.tabs li.active a');
    
            if (activeTab) {
                activeTab.click();
            }
        });
        </script>
        <?php
    }, 999);

    Best regards,
    Ismael

    in reply to: Blog Custom Layout #1491087

    Hey Gianluca,

    Thank you for the inquiry

    You can use the Blog Posts element and select which category to display under Content > Select Entries > Content To Display | Which Categories Should Be Used For The Blog. To adjust the blog layout or style, look for the Blog Style settings. Please refer to the screenshot below.

    Screenshot-2025-11-10-at-10-29-32-AM

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: PageSpeed and Site Loading Hidden Elements #1491086

    Hi,

    Thank you for the inquiry.

    You can try this script in the functions.php file to deactivate slides that are not visible on the current screen size.

    https://pastebin.com/RKdaXj6s

    add_action('wp_footer', function() { ?>
        <script>
        document.addEventListener("DOMContentLoaded", function() {
            const sliders = document.querySelectorAll(".avia-slideshow");
    
            function activateVisibleSlider() {
                sliders.forEach(slider => {
                    const isVisible = slider.offsetParent !== null;
                    const slides = slider.querySelectorAll("li[data-img-url]");
    
                    slides.forEach(slide => {
                        const bgUrl = slide.getAttribute("data-img-url");
                        if (isVisible) {
                            slide.style.backgroundImage = <code>url(&quot;${bgUrl}&quot;)</code>;
                        } else {
                            slide.style.backgroundImage = "none";
                        }
                    });
                });
            }
    
            activateVisibleSlider();
    
            let resizeTimer;
            window.addEventListener("resize", () => {
                clearTimeout(resizeTimer);
                resizeTimer = setTimeout(activateVisibleSlider, 200);
            });
        });
        </script>
    <?php }, 999);

    Best regards,
    Ismael

    in reply to: Scroll position 50% #1491084

    Hi,

    Thank you for the inquiry.

    The script seems to be working correctly when we checked it.

    Screenshot-2025-11-10-at-10-00-35-AM

    Best regards,
    Ismael

    in reply to: Add icons to a fullwidth submenu #1491082

    Hey Angelo,

    Thank you for the inquiry.

    Are you using the default translation editor? Please provide the login details in the private field so we can check the issue properly.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    This is not working because only the navigation arrows are enabled. Try to edit the slider element and make sure that the Styling > Navigation Controls > Slider Navigation Elements is set to Navigation arrows and dots. Let us know the result.

    Best regards,
    Ismael

    in reply to: fold/unfold disable on mobile #1490901

    Hi,

    We adjusted the script slightly and added a condition so it only applies when the screen width is equal to or less than 767px. Please edit the functions.php file and replace the script with this code:

    add_action('wp_footer', function() {
        ?>
        <script>
        jQuery(document).ready(function($) {
            if (window.innerWidth <= 767) {
                $(".avia-fold-unfold-section").each(function() {
                    var $section = $(this);
                    var $container = $section.find(".av-fold-unfold-container");
    
                    if ($container.length) {
                        $container.css({
                            "max-height": "none",
                            "transition": "none"
                        }).removeClass("folded").addClass("unfolded");
                    }
    
                    var $buttonWrapper = $section.find(".av-fold-button-wrapper");
    
                    if ($buttonWrapper.length) {
                        $buttonWrapper.css("display", "none");
                    }
                });
            }
        });
        </script>
        <?php
    }, 999);
    

    Best regards,
    Ismael

    Hey mntsrvcs,

    Thank you for the inquiry.

    This is possible, but you will need to directly modify the includes > loop-search.php file. Please check the links below for more info.

    https://kriesi.at/support/topic/add-featured-image-to-search-results/#post-249161
    https://kriesi.at/support/topic/change-layout-search-results/#post-1359284

    Best regards,
    Ismael

    in reply to: Woocommerce Produkte ausblenden #1490887

    Hi,

    Thank you for the inquiry.

    The code is supposed to fix the hidden product issue on the search page. If this is not working, we may need to view and access the site to check the issue further. Please provide examples of the hidden products that are not supposed to display on the search page, then include the login details in the private field.

    Best regards,
    Ismael

    in reply to: Blog Overview – Image left, copy right #1490886

    Hi,

    Thank you for the update.

    Try to add this code to the functions.php file to adjust the size of the thumbnails used in posts.

    function avf_modify_thumb_size_mod( $size_array ) {
        $size_array['entry_without_sidebar'] = array('width' => 9999, 'height' => 9999);
        $size_array['entry_with_sidebar'] = array('width' => 9999, 'height' => 9999);
        return $size_array;
    }
    add_filter( 'avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1 );

    After adding the filter, make sure to create a site backup, then use one of the following plugins to regenerate the thumbnails.

    https://wordpress.org/plugins/regenerate-thumbnails/
    https://wordpress.org/plugins/regenerate-thumbnails-advanced/

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1490885

    Hi,

    Thank you for the update.

    The site requires an additional .htaccess authentication. We tried using the login details provided above, but they didn’t work. Please include the complete credentials in the private field.

    Best regards,
    Ismael

    in reply to: fold/unfold disable on mobile #1490801

    Hi,

    The filter we recommended was placed in the style.css file instead of the functions.php file. We removed it and added the following script instead. The text will still display with a slight delay, but the transition should now be disabled.

    add_action('wp_footer', function() {
        ?>
        <script>
        jQuery(document).ready(function($) {
            $(".avia-fold-unfold-section").each(function() {
                var $section = $(this);
                var $container = $section.find(".av-fold-unfold-container");
    
                if ($container.length) {
                    $container.css({
                        "max-height": "none",
                        "transition": "none"
                    }).removeClass("folded").addClass("unfolded");
                }
    
                var $buttonWrapper = $section.find(".av-fold-button-wrapper");
    
                if ($buttonWrapper.length) {
                    $buttonWrapper.css("display", "none");
                }
            });
        });
        </script>
        <?php
    }, 999);
    
    

    We also edited the modification in the Quick CSS field.

    @media only screen and (max-width: 768px) {
      .av-fold-unfold-container {
        max-height: none !important;
        transition: none !important;
        opacity: 1 !important;
      }
    
      .avia-fold-unfold-section .av-fold-button-wrapper,
      .av-fold-button-container {
        display: none !important;
      }
    
      #top .avia-fold-unfold-section .av-fold-unfold-container:after {
        display: none !important;
      }
    
      .avia-fold-init,
      .avia-fold-init-done {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Delay on opening mega menu #1490799

    Hi,

    No problem! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Portfolio Anzeige nur eine Kategorie #1490796

    Hi,

    Great! Glad to know that you’ve found a working solution. Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the screenshot.

    Did you add this css code?

    .responsive .fullsize .grid-col-4 .grid-image {
        height: 215px;
    }

    This limits the height of the grid items. Try to remove this css code or override it with the following css rule:

    .responsive .fullsize .grid-col-4 .grid-image {
        height: auto !important;
    }
    

    Screenshot-2025-10-31-at-2-14-45-PM

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Content slider with image and text on the right #1490793

    Hey steviger,

    Thank you for the inquiry.

    You can continue using the Content Slider element. Add the following html in the editor:

    
    <div class="av-flex-container">
    <div class="av-image-column">
        <img src="http://site.com/image.jpeg" alt="Sample Image" /></div>
    <div class="av-text-column">
    <h2>Title Here</h2>
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vel urna at sapien tempor dictum.
    
    </div>
    </div>
    

    Then add this css code to create a container with two columns, an image on the left and a title with text on the right.

    
    .av-flex-container {
      display: flex;
      width: 100%;
      height: 400px;
      flex-wrap: wrap;
    }
    
    .av-image-column {
      flex: 1;
      position: relative;
      overflow: hidden;
    }
    
    .av-image-column img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .av-text-column {
      flex: 1;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #f5f5f5;
    }
    
    @media (max-width: 768px) {
      .av-flex-container {
        flex-direction: column;
        height: auto;
      }
    
      .av-image-column,
      .av-text-column {
        flex: 1 1 100%;
        height: auto;
      }
    
      .av-image-column img {
        height: 250px;
      }
    
      .av-text-column {
        padding: 20px;
      }
    }

    Screenshot-2025-10-31-at-1-59-55-PM

    Best regards,
    Ismael

    in reply to: Adding navigation per category for Portfolio Entires #1490791

    Hey milkrow,

    Thank you for the inquiry.

    You can add this filter to the functions.php file to limit post navigation to items within the same category. However, please note that this will also disable looping and will only work if each portfolio item belongs to a single category.

    add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings)
    {
        $settings['same_category'] = true;
        return $settings;
    }

    Best regards,
    Ismael

Viewing 30 posts - 31 through 60 (of 66,793 total)