Forum Replies Created
-
AuthorPosts
-
Hi,
1.) The changes in the Advanced Styling panel aren’t taking effect because of an invalid css code in the Quick CSS field:
/* REMOVE HEADER LINE */ #top .av_header_with_border.av_header_transparency #header_main { border: none;
The second css rule was not closed correctly -— it was missing a curly brace. We have corrected this. You can also adjust the default menu color in Enfold > General Styling > Logo Area > Logo Area Font Color.
2.) We manually removed the space from the shortcodes again. Unfortunately, we are not yet sure why it’s behaving like this. Let us know if the issue occurs again.
Best regards,
IsmaelApril 4, 2025 at 6:20 am in reply to: After adding Captcha V3, we get “Token to validate form already expired.” #1480754Hey!
Please note that persistent object cache is different from the cache created by the W3 Total Cache plugin. You will need to ask your hosting provider to disable this feature. Please disable the object cache temporarily while we are testing the site.
Best regards,
IsmaelHi,
Have you tried adjusting the Styling > Background Colors of the Color Section on the Service page? You can use this css code to adjust the background of all Color Section elements on the page.
.page-id-7009 .avia-section { background-color: white; background-image: unset; color: #000; }
After adjusting the background, you will need to edit the elements inside the color section and manually adjust the color settings.
Best regards,
IsmaelHi,
This is not possible, unfortunately. Autoplay is only allowed on muted videos.
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
Best regards,
IsmaelHey tsays,
Thank you for the inquiry.
The issue is caused by this css code, which limits the height of all second Color Sections on the site.
#av_section_2 { height: 75vh!important; min-height: 600px!important; display: flex!important; flex-direction: column!important; justify-content: center!important; position: relative!important; overflow: hidden!important; }
Please remove the css or adjust it so that it only applies to specific elements on the page.
— https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
IsmaelHey jnightingale,
Thank you for the inquiry.
You can directly override the header.php file in your child theme or insert widgets into the header area. Another option is to enable the settings in Enfold > Header > Extra Elements > Header Phone Number/Extra Info. Please refer to the documentation for more info.
— https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHey mattb1169,
Thank you for the inquiry.
Did you set the Row Margins > Custom Top and Bottom Margin of the column element to -205px? Please make sure to adjust the value using the dedicated fields for mobile view.
Best regards,
IsmaelApril 4, 2025 at 5:33 am in reply to: Importing Additional Enfold Demo Pages into published Enfold WordPress Site #1480748Hey Dana2225,
Thank you for the inquiry.
You will need to import the demo in Enfold > Demo Import. Please note that this will override the current theme options and insert the demo pages. We recommend creating a backup before proceeding.
Best regards,
IsmaelHi,
Yes, you can add conditions to the widget area snippet:
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { if ( is_page( 'contact-us' ) ) { return; } dynamic_sidebar( 'header' ); }
Just replace “contact-us” with the slug or ID of the page, or use an array of IDs if you need to exclude multiple pages.
— https://developer.wordpress.org/reference/functions/is_page/
Best regards,
IsmaelHey sitadi,
Thank you for the inquiry.
The site contains an older version of the theme. Please update to version 7.1 via FTP, then enter the name or slug “communes” in Enfold > Layout Builder > Activate Your Custom Post Types For ALB. This will enable the Advanced Layout Builder for the custom post type Communes.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
— https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-typeBest regards,
IsmaelHi,
Try to remove this css code:
.av-masonry-container { background: red; }
And keep (https://kriesi.at/support/topic/background-colour-of-masonry-alb-element/#post-1480699). The Colors > Custom Background Color should be applied to the entire masonry element after removing it. You can also try this css code:
#top .av-masonry.av-m04fp9di-542ac160671eb8fd749f26843e3e2910 { background-color: brown; }
Best regards,
IsmaelHey!
This should also help:
.av-large-gap.av-masonry:after { content: " "; visibility: hidden; display: block; height: 0; clear: both; }
Cheers!
IsmaelHey Tim,
Thank you for the inquiry.
Have you tried moving the element inside a Color Section and applying a background color? If you need the section container to be full-width, you can make this modification.
— https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width
You can also target the inner av-masonry-container.
.av-masonry-container { background: red; }
Best regards,
IsmaelHi,
Glad to know this has been resolved! Thanks to @Guenni0007. Feel free to open another thread if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
We added the changes in the functions.php file to prevent the scroll. Regarding the sender form, please contact the plugin developers.
function inline_popup_enabler(){ ?> <script> (function($){ $(window).on('load', function() { $('.inline_popup').addClass('no-scroll'); $('.inline_popup').magnificPopup({ type: 'inline', midClick: true, callbacks: { beforeOpen: function () { $('body').css("overflow-y", "hidden"); }, close: function() { $('body').css("overflow-y", "auto"); }, open: function() { (function (s, e, n, d, er) { s['Sender'] = er; s[er] = s[er] || function () { (s[er].q = s[er].q || []).push(arguments); }, s[er].l = 1 * new Date(); var a = e.createElement(n), m = e.getElementsByTagName(n)[0]; a.async = 1; a.src = d; m.parentNode.insertBefore(a, m); })(window, document, 'script', 'https://cdn.sender.net/accounts_resources/universal.js', 'sender'); if ($('.sender-form-field iframe').length > 0) { console.log("sender form initialized"); } else { sender('4f4c8522254761'); } } } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'inline_popup_enabler');
Best regards,
IsmaelApril 3, 2025 at 8:07 am in reply to: Show ACF fields in Blog Post simple list instead of Author and Date #1480694Hi,
Great! Glad to know this has been resolved. Let us know if you have more questions. Have a nice day
Best regards,
IsmaelApril 3, 2025 at 8:05 am in reply to: After adding Captcha V3, we get “Token to validate form already expired.” #1480693Hi,
Excluding the av_recaptcha_token transient might also help:
— https://developer.wordpress.org/reference/hooks/pre_transient_transient/
— https://developer.wordpress.org/reference/functions/wp_cache_add_non_persistent_groups/In the functions.php file:
add_filter( 'pre_transient_av_recaptcha_token', '__return_false' );
The Appearance > Theme File Editor is not accessible, so we’re not able to test this.
Best regards,
IsmaelApril 3, 2025 at 7:54 am in reply to: After adding Captcha V3, we get “Token to validate form already expired.” #1480692Hi,
We installed the Transients Manager plugin, and according to it, the site is using a persistent object cache. It’s possible that the site is retrieving an old version of the transient entry from the object cache instead of the wp_options table. What happens when you disable this feature temporarily?
Best regards,
IsmaelHey fanlokbun,
Thank you for the inquiry.
Did you try the other suggestion in the thread? https://kriesi.at/support/topic/masonry-gallery-fade-in-on-load/#post-1366942
Best regards,
IsmaelApril 3, 2025 at 7:36 am in reply to: Accordion disapears when another accordion is opened. #1480690Hey fcrmsterkens,
Thank you for the inquiry.
The issue occurs because the toggles share the same ID. To fix this, please edit each tab and assign a unique ID in Advanced > Developer Settings > For Developers: Custom Toggle ID field. For example, you can use toggle-A-1 for the first item in the first accordion, toggle-B-1 for the first item in the second accordion, and toggle-C-1 for the last accordion. Let us know the results.
Best regards,
IsmaelHi,
Thank you for the info.
We would like to try to override the wpml-config using the dedicated field in WPML > Settings (https://wpml.org/documentation/support/language-configuration-files/overriding-language-configuration-files/), but a script error prevents us from saving the changes. This is the error:
Uncaught SyntaxError: Unexpected token '<' (at https://site.de/?wpml-app=ate-dashboard&ver=472900:8:1) Line:8 ateDashboard(params); <pre style="padding:1em; background-color: #f8f8f8; color: #0a001f"><?xml version="1.0" encoding="UTF-8"?> <shortcodes> <shortcode> <tag>av_codeblock</tag> <attributes> <attribute>alb_description</attribute> <attribute>av_uid</attribute> <attribute>codeblock_type</attribute>
This might also be the reason why the Text Block and other elements are not translatable. Please forward this error to WPML support and once the issue is fixed, try to delete the wpml-config.xml file in the child theme folder, then transfer its content into the WPML > Settings > Custom XML Configuration tab.
Let us know the result.
Best regards,
IsmaelApril 3, 2025 at 7:07 am in reply to: Display issue on select pages of website – showing as html #1480686Hi,
Thank you for the screenshots.
We were able to reproduce the issue on the About page. We tried logging in, but it requires another verification code sent to the email address. Please disable this security feature temporarily so we can check the dashboard.
Best regards,
IsmaelHey imagestudios,
Thank you for the inquiry.
1.) Since the page has a transparent header, the main menu color must be adjusted in Enfold > Theme Options > Transparency Options > Transparency Menu Color. You can adjust the menu style for the default header in the Advanced Styling panel.
2.) The issue is due to the br tag in the Prepended static text field. We recommended removing the br tag because this also creates line breaks on the rotating text. To fix the issue, we enabled the debug mode and manually adjusted the rotator shortcode in the debug field.
Best regards,
IsmaelHi,
Thank you for the update.
You can adjust the theme colors in the Enfold > General Styling panel. Open the Main Content or Alternate Content tab, then adjust the value of the Background Color field. You can also adjust the font color there.
Best regards,
IsmaelApril 2, 2025 at 7:04 am in reply to: After adding Captcha V3, we get “Token to validate form already expired.” #1480618Hi,
Thank you for the update.
Would you mind creating a staging environment so we can check the issue without affecting the live site? You can use Duplicator or WP Migrate DB to clone the site to a different domain. Please provide the WP and FTP details in the private field.
Best regards,
IsmaelHey Damenwahl,
Thank you for the inquiry.
Have you tried clearing the browser cache/history completely? Also, try checking the site in private or incognito mode to make sure that the latest changes are loaded. If the issue persists, please provide a screenshot using platforms like Dropbox or Imgur.
Best regards,
IsmaelHi,
Regarding the scroll issue, this might help:
— https://kriesi.at/support/topic/pop-up-lightbox/#post-1429477
— https://kriesi.at/support/topic/inline-popup-enabler-not-working/#post-1371459This adds the no-scroll class name to the popup link.
Best regards,
IsmaelApril 2, 2025 at 6:21 am in reply to: Changes in child theme css file (style.css) do not show up #1480615Hi,
Thank you for the update.
Where can we check the issue? Please provide the site URL and login details in the private field so we can check it properly. Adding the wp_enqueue_scripts hook above is not necessary because the style.css in the child theme should be loaded by default. Did you subscribe to a CDN provider?
Best regards,
Ismael -
AuthorPosts