Viewing 30 results - 151 through 180 (of 244,339 total)
  • Author
    Search Results
  • #1495411
    epurchase
    Participant

    Hi Enfold Support Team,
    Formatting across my site disappear. Need to manually update every individual page to restore the correct formatting.

    This is an example page, where formatting is completely off, https://shamsgroup.com/patient-check-in-registration-kiosk/
    Same issue happening on our staging site as well, https://w68.f91.myftpupload.com/contactless-patient-intake/

    Could you please help me identify the issue and a solution for this?

    Thank you!

    #1495410

    Hi Ismael,

    yes, we tested the Blank – no header, no footer template.

    It removes:
    • header
    • footer
    • sidebar
    • the main Enfold wrapper

    However, it does not affect:
    • Enfold’s internal filtering
    • shortcode rendering
    • script loading order
    • potential SVG sanitizing
    • the initial layout flash we experienced

    Since we are running a full-screen SVG + GSAP animation, we need predictable script execution and no layout flash.

    Is there any recommended way within Enfold to:
    • prevent SVG filtering in Code Block elements
    • avoid the initial layout flash
    • control script loading order cleanly

    Thanks.
    KR
    T

    #1495396

    Hi,

    Thank you for the update.

    The theme has its own Advanced Layout Builder (ALB), so you can create any type of layout, content or design you need. Also, please note that all demos are available for import once you purchase a single license. Please refer to the documentation for more information.

    https://kriesi.at/documentation/enfold/intro-to-layout-builder/

    Best regards,
    Ismael

    #1495388

    I understand that I can only use / buy one demo at a time. My question was if once I have purchased a particular template, (e.g. restaurant) can I add features or elements it may not have that I’lve seen and liked, such as a video slider or content reveal animations or other animations it may not have. Is there a library that part of enfold, or do I have to rely on another wordpress program such as gutenberg, or use other wordpress plugins. And if I have to get that elsewhere, and if so, will those plugins or gutenberg be compatible with the enfold template?

    #1495383
    Maltolomaeus
    Participant

    Hi there,

    I’m facing problems with scrolling on enfold websites since a bit of time.
    Not quite sure which version it started, but two of my customer websites are not possible to be scrolled for now with Enfold versions 7.1.4 and 7.0 on my other site.

    I wasn’t able to find any information towards that and was hoping that’s an interference of a plugin which is installed on both pages. But I couldn’t find any.

    Could you please doublecheck and maybe fix that in a quick release or so? Of course when you find the problem…

    Seems like, that it isn’t working on phones and also on my desktop computer. On Desktop, I only can scroll the page with the sidebar of the website and when hovering the mouse cursor to the header or within the “scroll to top”-Button. Every other area seems to be blocked to do that.

    Please have a look on the both websites I will link in the private content area!

    Thanks for your quick help!!

    Best,

    Martin

    #1495382
    Schmidtgrafisk
    Participant

    Hey Enfold

    Please help to make the H tag’s be as i write them – with the first letter capitalized and the rest in lowercase.

    Thanks ;)

    #1495379

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    Hey newmediologo,

    Please follow this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1495374

    Hey Rob,

    Could you try updating the theme to the latest version (7.1.4) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    #1495373

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1495368
    newmediologo
    Participant

    Hi.. On this site of my client there’s this persistent Error, impossible to update Enfold from Dashboard but update works only updating the theme as new theme..

    How to solve..?

    Thank You very much
    URL in Private Content

    Errori verificatisi controllando le 2026/02/23 11:22:
    Scarica il pacchetto URL: Codice errore 403 restituito da Envato: Forbidden:
    – response_code: 403
    – reason: scope-missing
    URL download del pacchetto: Si è verificato un problema nell’accedere al vostro link per il download. Impossibile eseguire l’aggiornamento.
    A seguito di errori del pacchetto Envato si sono verificati:
    Enfold – Richiesta di download URL fallita.

    #1495367
    RobWu
    Participant

    Hi,
    I’m seeing some odd behavior when editing the contact form.
    Every time I edit something in the contact form and save it again, the form will add a subject field to the existing form.
    And it always does this after the first field (name) in the form, and also ‘reshuffles’ the order of the rest of the entry fields.

    I didn’t realize this until after doing some tweaks/save and ending up with 5 additional empty subject fields in the form.
    Enfold 7.1.2 and WP 6.9.1

    Any idea what can cause this behavior?

    rob

    #1495363
    cktanju
    Participant

    Hello Enfold Support,

    We are currently building a fullscreen “coming soon” teaser for the homepage.

    Originally we implemented it inside the Avia Layout Builder (using a blank template and code block elements). However, we ran into the following issues:
    1. SVG and custom markup were partially filtered or not rendered reliably inside Codeblock/Textblock elements.
    2. Even when using a blank template, the Enfold header/navigation briefly flashes before our fullscreen teaser takes over.
    3. If JavaScript is delayed or disabled, users may only see a black overlay (because the animation controls visibility states via JS).

    To avoid these issues, we moved the entire teaser injection into functions.php (hooked late in wp_footer), which gives us full control and avoids SVG filtering.

    However, we would like to ask:

    What is the recommended Enfold approach for implementing a true fullscreen custom homepage experience that:
    • Completely suppresses header/navigation output (no flash at all)
    • Does not rely purely on JavaScript for initial visibility
    • Allows a clean no-JS fallback (static version of the page)
    • Avoids content filtering issues

    Would you recommend:
    • A fully custom page template that replaces the theme output entirely?
    • A specific Enfold hook that runs before header rendering?
    • Or another best-practice approach inside a child theme?

    We want to stay as close as possible to Enfold standards while maintaining full control over rendering order and fallback behavior.

    Thank you very much for your guidance.

    Best regards,
    T

    #1495358
    Jason Bolger
    Guest

    Hi team,

    Today I found that Enfold writes empty postmeta to the DB when the layout settings are left as defaults; on a large site this creates a big problem, but it is easily fixed in core.

    The following snippet will filter these out via functions.php

    `/**
    * Prevent Enfold from saving empty/default postmeta values
    * This reduces database bloat by not storing values that match defaults
    */
    add_action( ‘avia_save_post_meta_box’, ‘prevent_empty_enfold_postmeta’, 5 );

    function prevent_empty_enfold_postmeta( $post ) {
    // Meta keys that should not be saved when empty/default
    $skip_empty_meta = array(
    ‘footer’,
    ‘footer_behavior’,
    ‘header_title_bar’,
    ‘header_transparency’,
    ‘layout’,
    ‘sidebar’
    );

    foreach ( $skip_empty_meta as $meta_key ) {
    // If the value is empty, unset it from POST so it won’t be saved
    if ( isset( $_POST[ $meta_key ] ) && $_POST[ $meta_key ] === ” ) {
    unset( $_POST[ $meta_key ] );
    // Also delete any existing meta with this key
    delete_post_meta( $post->ID, $meta_key );
    }
    }
    }`

    Would you consider fixing this in core?

    #1495357

    Hi,

    We adjusted the code a bit.

    add_action( 'wp_enqueue_scripts', function() {
      if ( is_admin() && ! wp_style_is( 'avia-layout', 'registered' ) ) {
          wp_register_style( 'avia-layout', false );
      }
    }, 5 );

    Please let us now how it goes.

    @elenapoliti: Please continue here: https://kriesi.at/support/topic/not-registered-dependencies-for-enfold-css-and-js/

    Best regards,
    Ismael

    #1495352

    In reply to: Website formatting

    Hey lara666,

    Thank you for the inquiry.

    It’s possible that the cache plugin is conflicting with the default compression options. Have you enabled the Enfold > Performance > File Compression settings? Please try cloning the site to a staging environment, make sure the configurations are identical and then temporarily disable the file compression settings. Let us know if the issue persists.

    Best regards,
    Ismael

    #1495350

    Topic: Website formatting

    in forum Enfold
    lara666
    Participant

    Hi Enfold Support Team,

    I’m experiencing a recurring issue with my website using the Enfold theme.

    Around once a week, the formatting across my site appears to drop out or reset. When this happens, I need to manually update every individual page and portfolio item to restore the correct layout.

    I have included screenshots to show how the pages appear when the wrong formatting issue occurs, as well as the correct format.

    Could you please help me identify what may be triggering this and recommend a solution?

    Thank you!

    #1495347

    Hi @Gunter, @Yigit, Hello everyone,
    For those who are interested, you can download the latest version of the Italian language

    Download here
    Translation: Italian language
    Version: Enfold 7.1.4
    Released on: 22th february 2026
    Strings: 6670
    All translations are synchronised with the source files

    Regards
    Luigi

    #1495342

    In reply to: Sync Patterns

    Hey Tim,

    There’s no support for that in Enfold unfortunately.

    Best regards,
    Rikard

    #1495338

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    #1495331

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    #1495330
    xeovision
    Participant

    Hallo,
    i am using the portfolio grid (https://kriesi.at/themes/enfold-2017/elements/portfolio-grid/).

    Sorting aso works fine but the grid is set to the page width. Is it possible to make only the grid (not the filter links) full screen width to 100% ?

    #1495324

    Well, that worked perfectly. Thanks!

    But this is new in Enfold. It looks like the HTML in the text box broke the layout. Is there any way to avoid that in the future? And what exactly is the technical issue, so I can develop workarounds? Can the preceding code be cancelled out at the end in the HTML snippet so it won’t affect the later elements below it in the layout?

    Thanks so much for your help.

    — Michael

    #1495321

    In reply to: Make the rows closer

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    #1495320

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    #1495319
    Tim Payne
    Guest

    Could you please provide a link to information on how you can utilise WordPress sync patterns from within Enfold/Avia Builder?
    I’m looking to migrate some DIVI sites.

    #1495318

    Hi,

    Great, I’m glad that you got things working. We’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1495311
    werbeagenturlauf
    Participant

    Hi @enfold!

    On my newest enfold-website using the enfold-parallax-theme there are a few things I don’t understand.
    While scrolling downwards the “Abstand” between the Color-Section and the following section is:
    1. rather big (how can this be changed?)
    2. part of the footer appears under the first Color-Section
    3. there are vertical lines at the end of all sections before the footer appears.

    thanks for your feedback

    Michael F

    #1495307

    I didn’t manually add the first CSS you mentioned, but it was probably generated by my earlier adjustments in the Advanced Styling panel.

    Related to that, the “Reset all options” button at the bottom of that section would just reset all of the Advanced Styling options and NOT other changes in the Enfold area, e.g., General Styling, etc., is that correct?

    I think part of the issue was the plugin WP-Rocket had cached CSS versions that weren’t updated in real time with my changes. After “Clearing used CSS” in the settings area for WP-Rocket, I was able to target the burger menu with both options you outlined. I opted to not use the override CSS option via Quick CSS, as it seemed cleaner to use Advanced Styling.

    One short follow up: Where is the Quick CSS in the hierarchy? For a different matter, I tried to target the fullscreen slider caption titles with:

    .avia-caption-title {text-transform:none;}

    …to get rid of the transform to uppercase that seems to be the default, but it didn’t work until I did:

    .avia-caption-title {text-transform:none!important;}

    Is that because the Quick CSS styles are read before the other stylesheets—meaning, the !important element is often required for things?

    Thanks again.

    • This reply was modified 2 weeks, 6 days ago by Brad.
    #1495306
    blaircomm1
    Participant

    I have been editing a website all day yesterday, and all was fine. First thing today, I updated Enfold to 7.1.4, and I am having elements disappear when editing a page after “updating” the changes. I only excerpted this on one page, and I stopped editing. I don’t have the time to test all on the staging sites for the different websites built with Enfold right now. Below is the page, as you can see, very simple.

    When doing simple text editing in the text box, the portfolio container disappeared below it when saving the page. I tried the same thing on a duplicate page with a new text box, and it happened again. I can no longer edit this site safely and cannot rollback the Enfold version.

    No new plugins or code implemented that might cause a conflict.

    I have many websites that we manage built with Enfold. Can you please advise on this issue? It needs to be resolved.

    Thank you.

    — Michael

Viewing 30 results - 151 through 180 (of 244,339 total)