Viewing 30 results - 61 through 90 (of 244,586 total)
  • Author
    Search Results
  • Damenwahl
    Participant

    Hallo,
    ich baue gerade wieder eine Seite mit enfold auf, welches mein absolutes Lieblingstheme ist. Mitten im Prozess sehe ich zwar im Backend die Slide Show volle Breite noch, im Frontend wird aber kein Bild mehr angezeigt. Das Bild/die Bilder WAREN aber zu sehen. Ich habe das Theme schon upgedatet und alle vorhandenen Plugins nach und nach deaktiviert – leider ohne Erfolg. Uach die CSS Codes, die ich im Netz zu diesem Problem gefunden habe:
    .responsive .container {
    width: 100% !important;
    max-width: 100% !important;
    }
    .av_slideshow_full {
    width: 100% !important;
    }

    , haben mir leider nicht geholfen. Deswegen brauche ich bitte Hilfe. Danke!

    #1496674
    leloux
    Participant

    Hi
    Is there a demo in enfold where it shows how the events calendar works with its ticket system?

    Tnx in advance

    Greetz
    Karin

    #1496668

    In reply to: Remove excessive space

    Hi,

    Thank you for the update.

    We logged in to the dashboard, but the account above doesn’t have admin rights, so it doesn’t have access to Enfold > Theme Options. Please set the user role or provide another admin account. Try setting the height value to 200px or larger, then purge the cache. 20px is a little too small.

    This is how it looks when we directly edit the height to 300px in the browser.

    View post on imgur.com

    Best regards,
    Ismael

    #1496663

    In reply to: Enfold Theme update

    Hey shanghaitomilan,

    I see that you are running an old version of the theme, could you try to update to the latest version (7.1.4) to see if that helps please? The update to 7.1.4 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1496661
    shanghaitomilan
    Guest

    Hallo nach Austria,
    unser Kunde hatte wohl das Enfold Template bei euch gekauft und nach dem letzten PHP update funktioniert es nicht mehr. Aktuelle Version: 4.1.2.
    Wir würde gerne die neuste Verion kaufen, schickt uns bitte die Modalitäten.

    Danke und LG aus Bozen
    Jörg

    #1496659

    Topic: Like / Dislike system?

    in forum Enfold
    MORTULGAAH
    Participant

    Enfold doesn’t have a like dislike system on posts.

    Can you recommend an implementation that would work with it the best?

    The idea is to enable users to click upvote and downvote on posts.

    #1496658

    In reply to: Remove excessive space

    You can have ha look to the page casapumua.com to understand that now there is still a problem. If I increase in the css the height from 0 to 20px for example, nothing changes.
    Please solve this issue. If you heve elements that doesn’t work properly is better to remove from Enfold.

    #1496653

    Hey Munford,

    Thank you for the inquiry.

    You have to edit the custom layout in the Enfold > All Custom Layouts panel as shown in the screenshot below.

    View post on imgur.com

    For more information about custom layouts and dynamic content, please check this documentation: https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/

    Best regards,
    Ismael

    Schmiddy
    Participant

    Hi dear support team
    I have bought a regular license for Enfold last year and have a valide token (generated on 15.12.2025).

    As I wanted to do some update for the website, all my pages in the advanced editor are grey (no possibilities to edit with the Advanced Layout Builder). So I checked my automatic updates and have seen that the latest version of enfold is 6.0.8. No further updates are possible.
    Why is this and what can I do?

    I also deactivated all plugins and cleared my cache to check from where this behavior could come, but no change… all the pages I want to edit stays gray.
    Thanks for your assistance and inputs on how to proceed.

    #1496630

    how did you “when i add a SVG icon to a page,”

    if it is an Enfold Element like image or image with hotspot ect. – Enfold actually has CSS rules within avia-builder.css / avia-builder.min.css for these cases.
    if you like to influence the preview inside textblock and backend:

    you can set via child-theme functions.php that preview size.

    function admin_head_mod(){
    echo '<style type="text/css">
      .wp-admin .avia_textblock img[src*=".svg"] {width: 80px !important;height: auto !important;}
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');

    the point is the even not inline svgs need an absolute dimension ( % and auto will not work )

    but:

    this part where enfold loads this css for the preview window is inside: class-template-builder.php
    there are filters we can use to influence the preview now.

    place a file custom-preview-fix.css inside enfold-child/css/

    add_filter('avf_preview_window_css_files', function($css) {
        $css[ get_stylesheet_directory_uri() . '/css/custom-preview-fix.css' ] = 1;
        return $css;
    }, 999);

    and have inside custom-preview-fix.css:

    #av-admin-preview img[src*=".svg"]:not([is-svg-img="true"]) {
      width: auto;
      height: auto;
      max-width: 100%;
      display: block;
    }
    
    #av-admin-preview .alignleft { float: left; margin: 0 20px 20px 0; }
    #av-admin-preview .alignright { float: right; margin: 0 0 20px 20px; }
    #av-admin-preview .aligncenter { display: block; margin-left: auto; margin-right: auto; }
    #1496621

    Hey infoflammablestudio,

    Thank you for the inquiry.

    You can adjust the button settings and set the Styling > Colors > Button Colors Selection to Advanced Options, then select Light Transparent for the Button Background Color.

    View post on imgur.com

    For the white border on hover, you can override it with this css in Enfold > General Styling > Quick CSS:

    
    .avia-button.avia-color-light {
        border-color: transparent !important;
        background-color: transparent !important;
    }
    
    .avia-button.avia-color-light:hover,
    .avia-button.avia-color-light:focus {
        border-color: transparent !important;
    }
    

    Let us know the result.

    Best regards,
    Ismael

    #1496620

    Hey xeovision,

    Thank you for the inquiry.

    The SVG is displaying at its natural size because there’s no constraint applied to it. The quickest fix is to wrap it in a div with a custom width. You can do this by adding an html element in a Text or Code Block and place your SVG inside a wrapper div like this:

    
    <div style="width: 60px; height: 60px;">
      <img src="/path/to/your-icon.svg" style="width: 100%; height: auto;" /></div>
    

    Adjust the width and height values to whatever size works best for your layout.

    Alternatively, if you’re displaying an icon, you can use the built-in Icon element instead, which gives you full size control directly in the element settings without any custom code. For more details on the Icon element, see:

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

    Let us know if you have more questions.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    What happens if you modify the enfold/includes/config-enfold/functions-framework.php and replace line 213

    if( function_exists( 'wp_cache_clear_cache' ) )
    		{
    			wp_cache_clear_cache( 'all', false );
    		}
    

    .. with the following code?

    		if( function_exists( 'wp_cache_clear_cache' ) && function_exists( 'get_blog_option' ) )
    		{
    			wp_cache_clear_cache( 'all', false );
    		}
    

    Best regards,
    Ismael

    #1496616

    In reply to: Remove excessive space

    Hey soniavoice,

    Thank you for the update.

    Please add this css to reduce the height of the section containing the 3 boxes.

    
    .avia-section.av-mnfxwls2-93b37da24b8b24863c42e12e957151f8 {
        height: 0px;
        overflow: visible;
    }
    

    You can add this under Enfold > General Styling > Quick CSS. If you’d prefer a cleaner approach, you can also replace that long auto-generated selector by assigning a custom css class to the section and targeting that instead.

    https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

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

    Best regards,
    Ismael

    Mika Pakarinen
    Guest

    I am writing to request a written clarification regarding Enfold license requirements for a specific WordPress Multisite project, before we proceed with the build. I would appreciate a clear answer I can retain on file.

    About the organisation:
    The client is a registered non-profit religious association. The association operates a network of local churches across severa locations). All of these churches belong to the same single legal entity and share the same mission, branding, and governance. No revenue is generated from the websites; they exist to serve the association’s religious and community work.

    Planned technical architecture:
    We are planning a WordPress Multisite network with the following characteristics:

    – One single domain:
    – Subdirectory structure:
    – One WordPress installation, one database, one Multisite network
    – One shared Enfold parent theme installed at the network level
    – One shared custom child theme used by all sites in the network (identical header, footer, navigation, branding and styling across all sites)
    – All subsites serve the same association and the same overall purpose: presenting the local congregations

    The websites are not sold, licensed, or transferred to third parties. Each local congregation is an internal part of the same association – they are not separate clients or customers. The purpose is to provide each congregation with its own local content area (events, contact details, pastor information) within the shared association website.

    My question:
    For this specific architecture: single domain, single WordPress Multisite installation, single Enfold parent theme, single child theme, single non-profit association, does one single Regular License cover the entire Multisite network, or does ThemeForest / Kriesi require a separate Regular License for each subsite in the network?

    I have seen varying interpretations in your support forum over the years, and I want to ensure we act correctly and in compliance with your licensing terms from the start. A written confirmation from you of the correct interpretation for this specific scenario would be very helpful.

    Thank you for your time and for the excellent theme. I look forward to your reply.

    Kind regards,

    • This topic was modified 2 weeks, 1 day ago by Rikard.
    • This topic was modified 2 weeks, 1 day ago by Rikard.

    It looks that there is an ENFOLD issue because when clicking on SAVE under ENFOLD settings there is an error message Impossible to save and asking to reload. BUT the save is made correctly.
    Can you go forward and/or give me tech info that i can provide to my hoster.
    Or provide me thinks i can test ? I already desactivated all plugins, reset by default the htaccess

    #1496604

    Hi Ismael,
    After a lot of testing, my import is now working, but there’s still one issue.
    I run the import, changes are applied, or new posts are created if necessary. In the back end, the imported posts look exactly the same as manually entered posts. Only in the front end are the imported posts empty. When I edit the post and save it manually, the post becomes visible.
    Apparently, this is a common issue with WP All Import, but I can’t find a working solution. I’ve tried the following code in functions.php:

    add_action('pmxi_saved_post', function($post_id) {
        $post = get_post($post_id);
        if (!$post) return;
        
        // remove Enfold builder cache
        delete_post_meta($post_id, '_aviaLayoutBuilderClean');
        
        // Save the content again via wp_update_post
        wp_update_post(array(
            'ID'           => $post_id,
            'post_content' => $post->post_content,
            'post_status'  => $post->post_status,
        ));
        
        // Force Enfold to rebuild the builder cache
        update_post_meta($post_id, '_aviaLayoutBuilderClean', $post->post_content);
    });

    It would be great if you can help with this last step.

    Thanks in advance,
    Ariane

    Hi,

    Enfold is displaying that since the server is returing a 500 internal server error, Enfold does not control your server.

    Best regards,
    Rikard

    #1496587

    Topic: Masonry portfolio

    in forum Enfold
    spitsdesign
    Participant

    How do I create a masonry portfolio with category filter?
    example: https://kriesi.at/themes/enfold/portfolio/masonry-portfolio/

    Dear Mike, could you please suggest that the setting under “Enfold Child – Import/Export/… ‘Theme Reset All Options Button’” be set to “Block and hide reset all options button” by default, so that users must actively enable this option to perform the reset.

    Unfortunately, this happens time and again—newcomers to Enfold fall into this trap, even despite the warning pop-up. You know how many people actually read what’s in pop-ups.

    Hey Quazione,
    The Token needs specific permissions to verify the purchase and link your Envato account. If these are not correct you will receive an error, also note at Envato limits the number of checks a day across all of your licenses, so in some cases you will need to wait 24 hours before checking again. Above you write about a API key, which Envato no longer uses, so if you have a old version that asks for a API key, or some v4-v5 you will need to manually update before the Token will work.

    To manually update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue,
    then you will see the Theme updated successfully message.
    After which you can go to your Theme Forest account and create a new Token for future automatic updates.

    Best regards,
    Mike

    #1496578

    Hey kpamela24,
    I see that your WordPress site health is also not loading. I see that you have a Search Replace plugin, perhaps using this broke something. Try resetting your site and do a fresh install of WordPress & Enfold to see if this works. If so try the Duplicator plugin to migrate from your localhost to your server.

    Best regards,
    Mike

    Ok thanks to study my issue but I need to solve it very quickly.
    Has I said: I can’t update plugins, can’t save enfold settings, can’t set Google recaptcha.
    Because of enfold message.

    Thanks for your help!

    #1496570

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

    Best regards,
    Mike

    Quazione
    Participant

    Hello Kriesi Team,

    After accidentally using the Enfold “Reset” option, we experienced a major issue with our media.

    What happened:

    • Immediately after the reset, all images and graphics disappeared from the website.
    • The WordPress Media Library is now empty.

    Current findings:

    • All media files still physically exist on the server.
    • Verified via FTP (FileZilla) under:
      • <i>/wp-content/uploads/</i>
    • Files are present in their original folders (year/month structure).
    • File names are unchanged and match what was previously uploaded.

    Conclusion so far:

    • This appears to be a database/media index issue, not actual file deletion.
    • It seems the Media Library entries (attachments) were removed or disconnected during the reset.

    What we need help with:

    • Is it possible that the Enfold reset removed or affected WordPress media database entries?
    • What is the recommended way to re-sync or rebuild the Media Library from existing files?
    • Is there a known Enfold-related process that could have triggered this behavior?

    Additional context:

    • This occurred at the same time as a full theme options reset.
    • No manual deletion of media files was performed.
    • The issue impacts all existing content that previously referenced these images.

    This has effectively broken all visual elements across the site, so any guidance on restoring the Media Library from existing files would be greatly appreciated.

    Thank you,<br>
    Armen

    Quazione
    Participant

    Hello Kriesi Team,

    I’ve been unable to register the Enfold theme for automatic updates via Envato, despite multiple attempts using different tokens and methods.

    Setup Steps Completed:

    • Installed Envato Market plugin
    • Created OAuth app + API key via Envato
    • Generated multiple Personal Tokens (basic + full permissions)

    Issue:

    • Envato connects, but purchased items do not display
    • Theme cannot be registered for updates

    Error Output:

    • Connected to Envato successfully
    • Purchases accessible
    • Username & Email not accessible
    • username Errorcode 403 – <i>not_authenticated</i>
    • email Errorcode 403 – <i>not_authenticated</i>

    Context:

    • This issue has persisted for years (even with a new license)
    • Previously assumed license ownership issue → resolved by buying new license
    • Problem remains unchanged

    Questions:

    • What is the correct current method to register Enfold with Envato?
    • Are specific token permissions required?
    • Should this use OAuth or Personal Token?
    • Why would Envato return 403 for username/email but still partially connect?

    Any guidance would be greatly appreciated.

    Thank you,<br>
    Armen

    • This topic was modified 2 weeks, 3 days ago by Quazione. Reason: html code issues
    Quazione
    Participant

    Hello Kriesi Support Team,

    We encountered a critical issue while working within the Enfold theme and are seeking guidance on recovery.

    What happened:

    • We were troubleshooting an issue where the Enfold theme was not updating properly.
    • During this process, we clicked the “Reset” button, assuming it would clear cached/token-related data.
    • Instead, this action reset/deleted all Enfold theme options globally.

    Current situation:

    • All Enfold theme settings (layout, styling, header, footer, etc.) have reverted to defaults.
    • All media files disappeared immediately after the reset.
    • We do not have a direct export/backup of the Enfold theme options.
    • We do have a full website backup in .zip format.

    What we have already checked:

    • Searched the backup archive for Enfold-related configuration or option files.
    • Reviewed wp-content (themes, uploads, etc.) but did not find identifiable option storage files.
    • Looked for database-related content expecting to find theme settings (e.g., wp_options entries), but could not locate a usable database or clearly identifiable Enfold settings.

    What we need help with:

    1. Are Enfold theme options stored in the WordPress database (wp_options) or in files?
    2. If stored in the database, what specific option names or prefixes should we look for (e.g.,avia_*)?
    3. Can theme options be restored from a backup without restoring the entire site?
    4. From a full .zip backup, which specific files or database tables are required to restore Enfold settings?
    5. Any guidance on recovering the missing media files would also be appreciated.

    Important feedback:

    • The “Reset” button appears to reset all global theme options without a clear warning of the full impact.
    • This behavior is extremely destructive in a production environment.
    • We strongly recommend:
      • Moving this function to a separate, clearly labeled section, and/or
      • Adding a prominent confirmation warning explaining that ALL theme settings will be permanently reset.

    This action resulted in a complete loss of configuration and media unexpectedly, so any assistance in recovery would be greatly appreciated.


    Thank you;
    Armen

    #1496552
    bilithul
    Participant

    Enfold 7.1.4
    Wordpress 6.9.4
    Block Editor

    Hi team, I think I found an uncaught issue created by wrong user input. If I insert a youtube block at a page and type in this wrong URL https://www.youtube.com/embed/u0ynt7CK2og , then wordpress converts the block to an usual embed block, but without enfold there are no display issues. With Enfold active, the video thumbnail looks only half-height, and a space to the bottom end of the block. At the rendered page, there is a huge space at the bottom of the video.
    The solution is to use the correct link https://www.youtube.com/watch?v=u0ynt7CK2og
    I don’t need support here, only FYI.
    best regards

    • This topic was modified 2 weeks, 4 days ago by bilithul.
    • This topic was modified 2 weeks, 4 days ago by bilithul. Reason: Added some notes

    Hi rik
    On this same server I have 2 websites with enfold. The one in www work well for save or update.
    The one in www2 have this issue so it can’t be a server error?

Viewing 30 results - 61 through 90 (of 244,586 total)