Forum Replies Created

Viewing 30 posts - 31 through 60 (of 66,864 total)
  • Author
    Posts
  • in reply to: Difference between a Template and a Custom Element #1491496

    Hi,

    Thank you for the update.

    You may need to update the EN version of the CET as well. If you can provide the login details in the private field, we’ll take a closer look.

    Best regards,
    Ismael

    in reply to: Homepage Not Full Width #1491495

    Hi,

    Thank you for the inquiry.

    Looks like the merged stylesheets and scripts are not loading in the Firefox browser. Have you tried temporarily disabling the cache plugin and the Enfold > Performance > File Compression settings?

    Best regards,
    Ismael

    Hey AgenturLanzinger,

    Thank you for the inquiry.

    Adjusting the background position a bit should help. Please try to add this css code:

    .responsive #top #wrap_all .av-flex-cells .no_margin {
        background-position: 50% 100%;
    }

    Result:

    Screenshot-2025-11-19-at-1-18-31-PM

    Best regards,
    Ismael

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

    Hi,

    Thank you for the info.

    Looks like the script is not working as intended so we removed it. Unfortunately, we didn’t find any other solution to prevent the slides’ background images from loading when the slider is not visible. You may need to remove the other sliders and rely on the responsive images if you’re using the Fullwidth Easy Slider, or manually apply different background images to the slides for different screen sizes using css. Example:

    /* mobile */
    @media (max-width: 767px) {
        .avia-fullscreen-slider .avia-slideshow > ul > li:nth-child(1) {
            background-image: url("/path/to/slide1-mobile.jpg") !important;
        }
        .avia-fullscreen-slider .avia-slideshow > ul > li:nth-child(2) {
            background-image: url("/path/to/slide2-mobile.jpg") !important;
        }
        .avia-fullscreen-slider .avia-slideshow > ul > li:nth-child(3) {
            background-image: url("/path/to/slide3-mobile.jpg") !important;
        }
    }
    
    /* tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .avia-fullscreen-slider .avia-slideshow > ul > li:nth-child(1) {
            background-image: url("/path/to/slide1-tablet.jpg") !important;
        }
        .avia-fullscreen-slider .avia-slideshow > ul > li:nth-child(2) {
            background-image: url("/path/to/slide2-tablet.jpg") !important;
        }
        .avia-fullscreen-slider .avia-slideshow > ul > li:nth-child(3) {
            background-image: url("/path/to/slide3-tablet.jpg") !important;
        }
    }
    
    

    Best regards,
    Ismael

    in reply to: Enfold Header Font Size and Position #1491491

    Hi,

    The font size of the heading elements for different screen sizes can also be adjusted in Enfold > General Styling > Typography as shown in the screenshot below.

    Screenshot-2025-11-19-at-12-41-59-PM

    Best regards,
    Ismael

    in reply to: How do I get the font size on the mobile version smaller? #1491490

    Hey placeit53591,

    Thank you for the inquiry.

    The sizes of the headings can be adjusted in the Enfold > General Styling > Typography panel. You can also define different sizes for different screen widths.

    Screenshot-2025-11-19-at-12-41-59-PM

    Best regards,
    Ismael

    in reply to: Enfold Header Font Size and Position #1491489

    Hey kurson,

    Thank you for the inquiry.

    Which specific heading element are you trying to edit? You should be able to configure it in the Advanced Styling panel, but make sure to disable the Enfold > Performance > File Compression settings or toggle them again afterward. If you’re using the Special Heading element, the font and color options can also be configured in the Styling tab. Please check the screenshot below.

    Screenshot-2025-11-19-at-12-36-43-PM

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: CSS – Cache / Refesh issues #1491444

    Hey jimmiemoreland,

    Thank you for the inquiry.

    If you have already enabled the compression options in the WP Rocket plugin or through your hosting provider, you need to disable the theme’s compression option found in Enfold > Performance panel. Enabling both options is redundant and could cause caching issues. We recommend disabling the caching and compression options while editing the site, and enable them again once the site is fully configured and ready to go live.

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Reusable Content / Repeatable Content #1491443
    in reply to: Difference between a Template and a Custom Element #1491442

    Hey Angelo,

    Thank you for the inquiry.

    However, I discovered that if you change anything in a Custom Element that has already been used, the change is not propagated to the pages where the element has been used.

    On the Custom Element Templates, you have the option to lock certain element options. When an option is locked, you won’t be able to adjust it on the instance, and when this locked option is updated in the original source, it will be propagated to every instance. However, unlocked options can be changed on every instance of the CET and are unique to each instance, so when this particular option is updated in the original source, every instance will retain its own value. In that case, if you need a global element that can be updated from a single source and doesn’t need to look different or contain different content on certain pages, make sure to lock all the options.

    On the other hand, if you need to create a global layout that can be updated from a single source and contains multiple elements, including Custom Element Templates, use the Custom Layout feature.

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Problem with GTranslate in mobile menue #1491440

    Hey walhai,

    Thank you for the update.

    The theme doesn’t natively support the translation plugin, but you can try this script in the functions.php file to move the translation flags inside the mobile menu.

    add_action('wp_footer', function() {
        ?>
        <script>
        jQuery(function($) {
            function moveGTranslate() {
                if ($(window).width() <= 768) {
                    var targetLi = $('.menu-item-3651.av-active-burger-items');
                    if (!targetLi.find('.gtranslate_wrapper').length) {
                        var gtranslate = $('.gtranslate_wrapper');
                        if (gtranslate.length && targetLi.length) {
                            gtranslate.appendTo(targetLi);
                        }
                    }
                }
            }
    
            moveGTranslate();
    
            $(window).on('resize', moveGTranslate);
        });
        </script>
        <?php
    }, 999);
    

    Best regards,
    Ismael

    in reply to: Hamburger menu icon left, logo centered, search icon right #1491439

    Hi,

    Thank you for the update.

    Please look for this css rule:

    .html_header_top #top .av_logo_right .logo {
      right: calc(50% + -35.5px);
    }
    

    Replace it with:

    .html_header_top #top .av_logo_right .logo {
        right: 50%;
        transform: translateX(50%);
    }

    Best regards,
    Ismael

    in reply to: customizing featured image slider #1491438

    Hi,

    Unfortunately, it’s not possible to display this info solely with css. The data has to be included in the template, only then can you style or update the layout with css. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: CSS files are always deleted #1491437

    Hi,

    4) Save the changes. The CSS files should not be deleted, correct? Now check the folder again: https://i.imgur.com/NTTBKLb.png

    This is normal since the theme actually deletes all css files when the theme options are saved, regardless of whether they’re expired or not. This ensures that the custom styles or post css reflect any changes made in the theme options. When we mentioned the css files are actually “not deleted”, we meant that they still exist in the database and will be regenerated on the frontend once the site or page is revisited.

    5) The link now redirects to a 404: https://app.site.com/wp-content/uploads/dynamic_avia/avia_posts_css/post-25947.css

    This is true, but only because you haven’t visited the page or post yet or utilize the updated timestamp as mentioned above. Once the page or post is revisited, the theme automatically generates the post css files again with the updated changes before displaying the page.

    6) On a live site, the CSS does not get regenerated because caching systems serve a cached page and prevent the request from reaching Enfold so it can regenerate the CSS. This is problematic because the CSS should not have been deleted in the first place.

    When we tested this in the staging site, we didn’t see any styling issues, even when the cache plugin was activated. As long as the styles of the site are preserved, we don’t see any issues here. If you can provide access to the live site, we’ll check it further.

    Best regards,
    Ismael

    in reply to: Anzeige von Beiträge auf Kategorien #1491436

    Hi,

    Thank you for following up.

    Yes, the code should also activate the grid layout for the tag pages. If you need to activate the sidebar, try including this filter.

    function avf_avia_layout_filter_mod( $layout, $post_id ) {
    
        if ( is_singular('post') || is_category() || is_tag() ) {
            $layout['current'] = $layout['sidebar_right'];
            $layout['current']['main'] = 'sidebar_right';
        }
    
        return $layout;
    }
    add_filter('avia_layout_filter', 'avf_avia_layout_filter_mod', 10, 2);
    

    You will have to edit the sidebar widgets in the Appearance > Widgets panel.

    Best regards,
    Ismael

    in reply to: Log in #1491435

    Hey Carla Garrett,

    Thank you for the inquiry.

    Are you trying to log in to your Themeforest account? Please check the documentation for more info on how to download your items.

    https://help.market.envato.com/hc/en-us/articles/202501014-How-to-download-your-items

    If you need to generate a private token for the theme, please check this documentation.

    https://kriesi.at/documentation/enfold/theme-registration/

    For any account-related inquiries, we recommend reaching out to the Themeforest or Envato team.

    https://www.envato.com/contact/

    Let us know if you more questions.

    Best regards,
    Ismael

    in reply to: Anywhere also problems with the Smashballoon Lite widget? #1491434

    Hey mbosse99,

    Thank you for the inquiry.

    We cannot find the instagram widget in your site. Please create a test page, then provide the login details in the private field so we can check the issue further — screenshots will also help.

    Best regards,
    Ismael

    in reply to: Custom Forum Page #1491433

    Hi,

    You’re welcome! To help you get started with the theme, please check out the documentation.

    https://kriesi.at/documentation/enfold/

    Let us know if you any further questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Homepage Not Full Width #1491432

    Hey John,

    Thank you for the inquiry.

    We tried logging in, but the provided account seems to be invalid. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Just bought it – but can’t install?? #1491431

    Hi,

    Thank you for the inquiry.

    You need to extract the enfold.zip file from the initial package and upload that file to your WordPress installation. Please check this documentation for more information.

    https://kriesi.at/documentation/enfold/install-enfold-theme/

    We also recommend activating a child theme.

    https://kriesi.at/documentation/enfold/child-theme/

    If you have any further questions, please let us know.

    Best regards,
    Ismael

    in reply to: Content slider issue (solved) #1491430

    Hey koomo,

    Thank you for the inquiry.

    If you need to remove the arrow below the images, please add this css code:

    #top .avia-smallarrow-slider .avia-content-slider-inner .avia-slideshow-arrows {
        display: none;
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: CSS files are always deleted #1491390

    Hi,

    The post css files are not actually deleted; the timestamp of the post css file is just updated, so you won’t be able to access the same file without updating or using the correct timestamp. We tested this again on the test page and didn’t find any changes to the element with the custom styling. Do you see any styling issues on the page after resaving the theme options? We posted the post css file of the test page in the private field, with and without its timestamp.

    We did notice that the post css file has a “ver” prefix on the query parameter in its timestamp. This is not the case on our installation. Do you have any idea why it’s prefixed? Is this a custom modification?

    https://app.site.com/wp-content/uploads/dynamic_avia/avia_posts_css/post-25947.css?ver=ver-1763353330

    Best regards,
    Ismael

    in reply to: instagram icon beside navigation in normal colours #1491389

    Hi,

    Thank you for the update.

    If you want to revert to using the default icon, please remove the previous modifications, then add this css code to enlarge the instagram icon and adjust the color:

    #top #wrap_all .social_bookmarks .social_bookmarks_instagram a {
        background: linear-gradient(44deg, #ef1a88, #e6683c, #fa991f, #ee166c, #bc1888);
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 50px !important;
        width: 100%;
        height: 100%;
        line-height: 80px;
    }
    
    .responsive #top #header .main_menu .social_bookmarks {
        margin-top: -40px !important;
        overflow: visible;
    }

    Screenshot-2025-11-17-at-12-56-53-PM

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1491388

    Hi,

    Please feel free to open another thread if you have additional questions. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Custom Forum Page #1491386

    Hey Manuel,

    Thank you for the inquiry.

    You need to install bbPress either before or after importing the demo. Please check the link below:

    https://wordpress.org/plugins/bbpress/

    Best regards,
    Ismael

    in reply to: TABS #1491385

    Hi,

    Please feel free to open another thread if you need additional assistance. We’ll close this one for now. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: price span not showing #1491384

    Hi,

    can it just be with a static price range under the title?

    That should be possible — simply remove this block of code from the functions.php file:

     
    $('.variations_form').on('show_variation', function(event, variation){
                    $priceContainer.css('opacity', 0);
                    setTimeout(function(){
                        $priceContainer.html(variation.price_html).css('opacity', 1);
                    }, 100);
                });
    

    Best regards,
    Ismael

    in reply to: Anzeige von Beiträge auf Kategorien #1491383

    Hi,

    Thank you for the update.

    You can add the code using plugins like Code Snippets so it will not get removed after a theme update, or activate a child theme.

    https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

    in reply to: Hamburger menu icon left, logo centered, search icon right #1491382

    Hi,

    Thank you for the inquiry.

    If you need the logo centered and the burger menu on the left, try setting the Enfold > Header > Header Layout > Menu and Logo Position to Logo right, Menu left. Then add the following css code to move the logo from the right to the center.

    .html_header_top #top .av_logo_right .logo {
      right: calc(50% + -35.5px);
    }
    
    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all #header_main .main_menu {
        left: 0;
        right: auto;
      }
    
      .html_header_top #top .av_logo_right #header_main .logo {
        position: relative;
        left: 50%;
        right: auto;
        margin-left: -41.5px;
        margin-right: 0;
      }
    }

    Best regards,
    Ismael

    in reply to: customizing featured image slider #1491381

    Hey Gianluca,

    Thank you for the inquiry.

    There’s no built-in option for this, but you can try editing the enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.php file, and look for the slide_html function. Let us know if you need more info.

    Best regards,
    Ismael

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