Forum Replies Created

Viewing 30 posts - 1 through 30 (of 67,591 total)
  • Author
    Posts
  • in reply to: Open Sans font looks condensed #1497003

    Hi,

    Thank you for the update.

    Try to go to Enfold > Advanced Styling, select the body or heading element, and set the font weight to 400 or 500. If the condensed look persists after that, you can also add this to your custom css:

    
    #top p, #top h1, #top h2, #top h3, #top h4, #top h5, #top h6 {
        font-weight: 500;
    }
    

    Please make sure to purge the cache before testing. Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: LIVE SITE issue with video in Safari #1497002

    Hi,

    Thank you for the update.

    Since you’re on the latest Safari with no extensions and the video still isn’t loading, it’s worth checking if it’s the actual browser in your device that has the issue.Could you try uninstalling and reinstalling Safari from scratch with default settings? Sometimes a corrupted browser profile or cached data can cause media errors like the one you’re seeing.

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Buttons for the Accordion Slider #1497001

    Hi,

    Sorry for the confusion. There is no built-in button option for the Accordion Slider slides. However, you can apply a link to each slide via the slide settings under Advanced > Link Settings > Image Link, which will make the entire image clickable.

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: General CSS / Advanced Styling not responding #1496997

    Hey imagestudios,

    Thank you for the inquiry.

    This looks like a caching issue where old css files are being served instead of the newly generated ones. Please go to Enfold > Performance, disable the File Compression settings, then scroll to the bottom of the same panel and enable the “Delete Old CSS And JS Files?” option. Save the settings and check the frontend again.

    If you’re also using a third-party caching plugin, please make sure to purge the cache before testing.

    Let us know if the issue persists.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Since the outdated template files are located in your child theme, those were likely created by a previous developer as custom overrides for Woocommerce. Updating them is outside the scope of our support, so we’d recommend reaching out to the developer who created those files and asking them to update the templates to match the current version of Woocommerce.

    If you have any other theme-related questions, we’re happy to help.

    Best regards,
    Ismael

    in reply to: Center page on mobile phone #1496995

    Hey Erwin,

    Thank you for the inquiry.

    It looks like the custom css you have for the .content element is missing a media query reset for smaller screens. The padding and margin values are overriding the responsive styles on mobile. Try adding this below your existing rule:

    
    @media only screen and (max-width: 767px) {
        .content {
            margin-top: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
    }
    

    You can add this to Enfold > General Styling > Quick CSS. Please make sure to purge the cache before testing.

    Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: Enfold Settings for Popup Trigger by Image Click #1496994

    Thank you for the update.

    Try leaving the “Link To” field completely blank instead — no value at all. This should be the default value if you don’t need the element to trigger a section jump or execute a redirect to a different page.

    Let us know if that works.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Good news on the child theme setup –it looks correct. Regarding the Performance settings, the two dropdowns you set to “disabled” are the right ones, so that part is fine.

    For the pre-filtering not working yet, the most likely cause is that the masonry js initializes before the sort button click fires, or the category slug in the URL doesn’t exactly match the slug assigned to the sort button. Could you share the site URL and the exact link you’re testing with? Also, please share login details in the private field and let us know the exact category slug you’re using. We’ll take a look directly.

    To answer your child theme question — once the child theme is activated, the parent Enfold theme still needs to stay installed and active in the background. Updates to the parent theme will still apply normally, and any modifications you’ve made in the child theme (like the script in functions.php) will be preserved. Please check this documentation for more details:

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

    One important note: once the child theme is activated, go to Enfold > Import/Export and use the “Import Settings From Parent Theme” option just once, so all your existing theme options carry over. Do this before making any changes in the child theme options. Also, please make sure to create a full site backup before making any of these changes, and set up a test page to verify things before going live.

    Best regards,
    Ismael

    in reply to: Buttons for the Accordion Slider #1496992

    Hey mjrielly,

    Thank you for the inquiry.

    There is no Accordion Slider element in the Advanced Layout Builder, but you can use the Easy Slider element to build custom slide content, which does allow you to include buttons and other elements inside each slide.

    Please check the documentation below for more info on how to set it up:

    https://kriesi.at/documentation/enfold/easy-slider/

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: Mega menu sorting alfabetically #1496968

    Hey Erwin,

    Thank you for the inquiry.

    Unfortunately, there’s no built-in option in Enfold to sort mega menu items alphabetically. The menu items need to be reordered manually by dragging and dropping them in Appearance > Menus. If you’d like this to happen automatically, it would require a custom solution that hooks into the menu rendering, which falls outside the scope of our support.

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: LIVE SITE issue with video in Safari #1496967

    Hi,

    Thank you for the update.

    Since the video plays fine on mobile and we can also reproduce it working on Safari on our end, this is likely not a theme issue. It could be a browser extension or a specific browser setting on your client’s machine that’s blocking the video. Please make sure your client is using the latest version of Safari, then try testing on a clean Safari profile with extensions disabled to confirm.

    Let us know the result.

    Best regards,
    Ismael

    Hey Niky67,

    Thank you for the inquiry.

    This is a known compatibility issue between Enfold and WordPress 6.9.x, where wp-admin now surfaces notices for styles/scripts enqueued with unregistered dependencies. We have a fix you can add via a code snippets plugin or directly in the child theme’s functions.php file:

    
    add_action( 'admin_enqueue_scripts', function() {
    
        if ( ! wp_style_is( 'avia-layout', 'registered' ) ) {
            wp_register_style( 'avia-layout', false );
        }
    
        if ( ! wp_style_is( 'avia-shortcodes', 'registered' ) ) {
            wp_register_style( 'avia-shortcodes', false );
        }
    
        if ( ! wp_script_is( 'avia-shortcodes', 'registered' ) ) {
            wp_register_script( 'avia-shortcodes', false );
        }
    
        if ( ! wp_script_is( 'avia_element_js', 'registered' ) ) {
            wp_register_script( 'avia_element_js', false );
        }
    
    }, 1 );
    

    This pre-registers the dependency handles before Enfold’s modules try to enqueue against them, which stops the notices. A proper fix will be included in an upcoming theme update as well.

    Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: Comments: Guests not remembered? #1496965

    Hey MORTULGAAH,

    Thank you for the inquiry.

    Wordpress includes a “Save my name, email, and website in this browser for the next time I comment.” checkbox on the comment form by default. If it’s not showing up, it’s likely been disabled somewhere.

    Please check if the option is enabled under Settings > Discussion > “Show comments cookies opt-in checkbox, allowing comment author cookies to be set” in your WordPress admin.

    Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: Open Sans font looks condensed #1496963

    Hey spitsdesign,

    Thank you for the inquiry.

    The site is loading the opensans_semicondensed font, not the regular opensans. Please make sure to download the regular OpenSans font and upload it, then delete the current semicondensed font. Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: MCP server #1496962

    Hey Sean,

    Thank you for the inquiry.

    This feature is not yet available in Enfold. You’ll find more info about the theme on the documentation page. While the theme doesn’t integrate with AI systems yet, it has an Advanced Layout Builder, comprehensive Theme Options, Custom Element Templates, Custom Layouts and Dynamic Content, which can all be utilized to easily create advanced websites.

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

    If you have any more questions, feel free to create an account in the forum and open a new thread.

    Best regards,
    Ismael

    in reply to: Problem with big thumbnails in masonry #1496961

    Hey Erwin,

    Thank you for the inquiry.

    The no-scaling option is really meant for cases where you need pixel-perfect originals, so 800kb thumbnails with 100 posts will definitely cause performance issues. The best approach here is to resize your images before uploading them to WordPress. For a masonry gallery, images don’t need to be wider than 1200px or so, and at that size you can usually get them well under 150kb without any visible quality loss.

    After resizing, run them through a compression tool like TinyPNG or Squoosh before uploading. If you’ve already uploaded the originals, a plugin like Imagify or ShortPixel can bulk-compress your existing media library.

    For the gallery setting itself, you can then switch back to one of the standard cropping options in the masonry element, which will let WordPress serve correctly sized thumbnails automatically.

    https://tinypng.com
    https://squoosh.app

    Let us know if you have more questions.

    Best regards,
    Ismael

    Hey frankkremer,

    Thank you for the inquiry.

    This is possible with a small script. The masonry sort buttons have a class pattern like .branding_sort_button, and we can trigger a click on the right one based on a url query parameter.

    Add this to your child theme’s functions.php:

    
    function ava_activate_sort_button() {
    	if( empty( $_GET['psort'] ) ) return;
    	$sort = sanitize_key( $_GET['psort'] );
    	?>
    	<script>
    	(function($){
    		$(document).ready(function() {
    			$('.' + '<?php echo $sort; ?>' + '_sort_button').trigger('click');
    		});
    	})(jQuery);
    	</script>
    	<?php
    }
    add_action( 'wp_footer', 'ava_activate_sort_button' );
    

    Then on your homepage, link to your portfolio page with the category slug as the query parameter, for example:

    https://yoursite.com/portfolio/?psort=branding

    When the page loads, the js will trigger a click on the matching sort button, filtering the masonry to that category automatically. The other sort options remain available so visitors can still browse freely.

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: section disappears when updating. #1496959

    Hey tonyiatridis,

    Thank you for the inquiry.

    It’s very possible that there are invalid html tags in the content. Please review the content and make sure all html tags are closed properly. Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: Enfold Settings for Popup Trigger by Image Click #1496958

    Hey Lance,

    Thank you for the inquiry.

    This is actually more of a Hustle Pro question than an Enfold one, but we can help clarify the Enfold side of things.

    For your image in the classic editor, enter .parking in the “Image CSS class” field. That will add the class to the img tag itself, which gives Hustle Pro a valid css selector to target. The “Link CSS class” field applies to the wrapping anchor tag, which would also work as a selector, but using the image class is the more straightforward choice here.

    Adding the class in that field is sufficient to create the selector. You don’t need to do anything else on the Enfold/Wordpress side. Just make sure the class you enter in Hustle Pro’s trigger field matches exactly, including the dot prefix (i.e. .parking).

    For the “Link To” setting, if you don’t actually want the image to navigate anywhere on click, you can set it to a custom URL and use # as the value. That prevents any navigation while still allowing the click event that Hustle Pro listens for.

    For further details on configuring Hustle Pro’s trigger settings, please refer to their documentation.

    https://wpmudev.com/docs/wpmu-dev-plugins/hustle/

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: LIVE SITE issue with video in Safari #1496923

    Hi,

    Thank you for the update.

    The video played fine on Safari when we checked. Have you tried testing it on a different device?

    BrmO0bt.md.png

    Best regards,
    Ismael

    in reply to: Issue with quick css #1496922

    Hi,

    It’s probably cached, or you’re using a zoomed-in browser. Please feel free to open another thread if you encounter more issues or have any questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: LIVE SITE issue with video in Safari #1496913

    Hey Munford,

    Thank you for the inquiry.

    Only muted videos are allowed to autoplay on most major browsers, including Chrome. You’ll find this information here.

    Chrome’s autoplay policies are simple:

    Muted autoplay is always allowed.
    Autoplay with sound is allowed if:
    The user has interacted with the domain (click, tap, etc.).
    On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously played video with sound.
    The user has added the site to their home screen on mobile or installed the PWA on desktop.
    Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.

    https://developer.chrome.com/blog/autoplay/

    Unfortunately, there is no way to override this policy on our end. You’ll have to mute the videos in order for them to play automatically on page load.

    Best regards,
    Ismael

    in reply to: Not registered dependencies for Enfold css and js #1496912

    Hi

    Thank you for the information.

    This is actually the same fix that we proposed above. Please check: https://kriesi.at/support/topic/not-registered-dependencies-for-enfold-css-and-js/#post-1495756

    Let us know if this resolves the issue for you so we can confirm the fix.

    Cheers!
    Ismael

    in reply to: Enfold: Mobile Friendly #1496911

    Hey dnweil,

    Thank you for the inquiry.

    If you’re using the Advanced Layout Builder, each element, especially Text or Heading elements, has a Styling > Font Sizes option which can be adjusted for different screen sizes.

    Br7N074.md.png

    There is also an Element Visibility setting in the Advanced > Responsive panel which can be used to toggle the visibility of an element for different screen sizes. For cases where element options are not enough, you can always add css modifications.

    Best regards,
    Ismael

    in reply to: Icon box change icon to picture #1496910

    Hey Stretchspot,

    Thank you for the inquiry.

    There is no option to use an Image in an Iconbox element, but you can replicate the box using combinations of elements. Add a Column element, insert an Image element inside, add a Text Block for the description, then a Button element if you need a call-to-action element. Let us know if this works for you.

    Best regards,
    Ismael

    in reply to: on mobile phones jump to selection from sidebar menu #1496901

    Hey christina495,

    Thank you for the inquiry.

    Looks like you’re using a third-party plugin for the filter. We recommend reaching out to the plugin developer for additional assistance. In the meantime, you could try this script to set it to automaticall scroll to the product section after clicking any of the category items.

    add_action( 'wp_footer', function() {
        if ( ! function_exists( 'is_woocommerce' ) || ! is_woocommerce() ) return;
        ?>
        <script>
        jQuery(document).ready(function($) {
            var $products = $('main.template-shop');
    
            if (sessionStorage.getItem('av_scroll_products') && $products.length) {
                sessionStorage.removeItem('av_scroll_products');
    
                setTimeout(function() {
                    $('html, body').animate({ scrollTop: $products.offset().top - 20 }, 400);
                }, 200);
            }
    
            $(document).on('click', '.sidebar .bellows-target', function(e) {
                if (window.innerWidth >= 990) return;
                if ($(e.target).closest('.bellows-subtoggle').length) return;
    
                sessionStorage.setItem('av_scroll_products', '1');
            });
        });
        </script>
        <?php
    }, 20 );
    
    

    Let us know the result.

    Best regards,
    Ismael

    in reply to: limit headline rotator cycles #1496853

    Hey laptophobo,

    Thank you for the inquiry.

    This is possible, but you may need to directly modify the themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js file. Unfortunately, this type of request is beyond the scope of support.

    Best regards,
    Ismael

    in reply to: Remove excessive space #1496852

    Hi,

    We adjusted the modifications. The first row of the masonry gallery should now be clickable on both desktop and mobile view. The 3-column section should not be covering the masonry gallery on smaller screens. Please make sure to purge the cache before checking.

    Best regards,
    Ismael

    in reply to: Images not aligned. #1496851

    Hi,

    Thank you for the inquiry.

    Please add this css code to adjust the width of the images on mobile view.

    @media (max-width: 768px) {
      .avia-image-container.avia-align-center .avia-image-container-inner {
        width: 100%;
      }
    
      .avia-image-container .avia-image-overlay-wrap,
      .avia-image-container .avia_image {
        transition: all 0.7s;
        width: 100%;
      }
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Theme-Update, Dynamic Content and Custom Templates #1496850

    Hey Levi Gahl,

    Thank you for the inquiry.

    The custom templates don’t support repeater fields at the moment. There is no option to assign a custom layout to an archive page, but you could create a custom page for a specific archive page and do a 301 redirect manually or with the help of a plugin.

    Unfortunately, we won’t be able to help you trace back modifications that have been done in the parent theme. These modifications should have been done in the child theme. You’ll need to take note or create a record of the modified files, upload the latest version of the theme, then add the modifications back. We recommend doing all modifications in the child theme in the future.

    Best regards,
    Ismael

Viewing 30 posts - 1 through 30 (of 67,591 total)