Viewing 30 results - 691 through 720 (of 243,763 total)
  • Author
    Search Results
  • #1489200

    Hi,

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

    Best regards,
    Rikard

    #1489195
    Jörg Ellerbrok
    Guest

    Liebes Kriesi Team,

    die Website von einem Kunden wurde „gehackt“. Es wurden Seiten angezeigt, die nicht im WordPress Backend existierten. Nach einiger Suche stellte sich heraus, dass der Avia FullscreenSlider die „Fehlerquelle” war. Nach Deaktivierung mit CSS wurden die fremden Webseiten nicht mehr angezeigt.

    Hier ist so ein Link: https://kundendomain.de/bongo-casino-kundensupport-fast-hilfe-and-kompetenter-service

    Auch mit 7.1.2 war ist das noch da. Ist das Problem schon bekannt?

    Liebe Grüße

    Jo:rg

    #1489186
    Robert Berrier
    Guest

    Hi Team Enfold, Kriesi,

    I have been using Enfold for 10 years(?). I have no idea when it came out, but it feels like forever. Having used it on three websites, two of which are still online (links below). I wanted to give some serious user feedback to you and your team since I hope it will help you to make it even better! I totally understand if there is no room for such a thing in your team. So I’m simply sending it as a “here you go, some seriously golden nuggets, do with it what you want” type of email :)

    Websites:
    MeshMasters.com (up2date)
    RobertBerrier.com (old, and needs an update)

    Before I slap all the feedback points. Know that I am a (3D) artist, with limited web coding knowledge. So I don’t know what is possible or not.

    1) Often I want to have media like an image or video, but also text fields, to the left or right, or center of a section or part of the website, but in a smaller size than the container it’s in. For example, if I have a full width color section. Within that color section, I can use a 1/4 container with the media/text in it, another 3/4 container next to it to “force” it to be at a smaller size to the left or right of that color section. Or, I want to have a 1/3 sized media/text in the center of the website, so I put two 1/5 containers to the left and right. This “works”, but it’s finicky. I often rather want the media to be at a fixed (smaller) size, no matter what is next to it. Even better would be a percentage. Eg, this media should always be 20% size compared to the browser window, or 20% of the container it’s in. The container it is in would still be its max possible size. But it will try to get close to the smaller percentage or pixel size. This can somewhat be done with using a smaller resolution image. But this is also finicky because of all the different screen resolutions, especially in our age with HD vs 4k. So, a better way to “size” down images without having to container it. Perhaps a percentage setting in the media element itself.

    2) The ability to have (all) elements be in the center of of the page. Eg, media, containers, buttons. If they are smaller than the color section or container they are in. I often want them in the center of that color section or container. No matter what responsive size we are in. Currently I need to do this with “buffer” containers to try and align it to the setting.

    I have created some CSS code with a Class ID that I can add to a color section. Then everything in that color section will be centered. But I believe this should be a default setting within a color section and containers. Eg, “align all content within this container/color section to the Left/Center/Right.

    3) I use CSS code to not have the header be transparent. I would say this should be an option in the Enfold settings. Rather than needing to code.
    #header {
    background-color: #1d1d40; /* This is needed for the opacity change */
    opacity: 1 !important;
    }

    4) When text is in BOLD or STRONG. It gets an assigned color from the theme options. Not a bad idea, but it is a shared color with I believe “Primary Color – Font color for links, dropcaps and other elements” This means we users have less control over how text and it’s colors looks like. I suggest that BOLD and STRONG has a separate color option within the Theme color settings. In my opinion, links and BOLD should be seen as two different things to customize. I currently use CSS code to adjust this.

    5) For all my websites I have a max website width setting, as set in the Enfold settings. But sometimes, I want a color section to use its own unique size. For example, you will see on MeshMasters.com that the portfolio section is a full-width color section. While the contact section at the button is a bit smaller than the website’s width settings. Having this as a setting in color sections would give people more options to make cool layouts. Currently I have this CSS code for this:

    /* ========================================== */
    /* === Color sections width additions === */
    /* ========================================== */

    /* === Full width, no padding === */
    #fullwidth-container-nopadding .container {
    width: 100% !important;
    min-width: 100%;
    padding: 0;
    margin: 0;
    }

    /* === Full width, small padding === */
    #fullwidth-container-smallpadding .container {
    width: 100% !important;
    min-width: 100%;
    padding: 10px;
    margin: 10px;
    }

    /* === Full width, default padding === */
    #fullwidth-container .container {
    width: 100% !important;
    min-width: 100%;
    }

    5) Similar to the point above. I want my blog posts to be a smaller width. Since it makes reading large pieces of text easier. So having a separate width setting for blog posts could be interesting to add. For example, the main website is at say 85% width. But perhaps all blog posts are at 70%.

    6) Font sizes on the main page (or landing pages) are often large. To grab attention with cool copy writing that sells. These are often smaller pieces of text. But on blog posts you have large pieces of text. And so a smaller font size makes it more readable. Since there is only one BODY or P font size for the entire website. You are stuck in choosing one for all pages. I currently made CSS code so on blog posts all font sizes are 95% or 90% smaller than the rest of the website. Perhaps this could also be a setting in the Enfold theme settings. Eg “blog posts font sizes”.

    7) There are currently three responsive break points in pixels. I believe it’s 990px and 768px and 480px. Perhaps this is the standard in web development. But the ability to change these website wide would be great. Eg, If I change the 990px to say 800px in the enfold settings. Then on all other instances where this is used, like in color sections, containers, etc. That value is also reflected there in the UI.

    8) When columns break down for responsiveness. They break down into a single column. Eg, a column of 3 containers, becomes a column of 1 with 3 containers below each other. Having options to control to how many columns it breaks would be great. Eg, 4 columns of containers next to each other (4×1). Could be 2 columns of 2 containers next to each other. Eg, 2×2. Instead of 1×4. More controls options for this would be AMAZING!

    9) fyi, I used CSS code to adjust the masonry gap size (to 4 px). It’s a small thing, but perhaps a quick win to add to the Masonry settings and so to make the theme better.

    10) another small thing. I use CSS code to remove the Gallery border.

    11) I use CSS code to remove the Blog button hover effect. Perhaps also a quick win to add to Enfold.
    /* === Hover icon disable === */
    .slide-entry-wrap .image-overlay-inside:before { display: none; }

    /* === Hover overlay color === */
    .image-overlay { background: #0f0f26; }

    12) Very similar where I remove the Featured Image effect:
    .big-preview.single-big a{
    pointer-events:none!important;
    }

    13) And also the blog page excerpts and dates:
    /* === Remove blog page excerpts === */
    .blog .slide-entry-excerpt { display: none; }

    /* === Remove blog page dates === */
    .slide-meta { display: none !important; }

    14) Tables are very difficult to adjust. There is no control over it’s color and borders. I use quite a lot of CSS code to adjust them. Perhaps this should be an entire section in the Enfold themes to control them?
    I currently use code to:
    – Adjust colors for: General cells, uneven cells, even cells, header cells, the borders
    – Thickness of borders and its colors
    – Give transparency to cells.
    – And then to apply these settings to each different theme area (Logo area, main area, alternative area, footer area, socket area)

    15) the button element is missing padding and margin settings (and maybe also alignment settings?)

    16) There are default padding settings for Color Sections. 0%, 20%, Default(?), 70% and 130%. It would be great if we can adjust these globally in the Enfold Settings. And ofcourse these changes are reflected in the Color Section padding settings. For example, Perhaps I want the default to be 60%, the large 100% and the extra large 150%

    Yes, I am aware you can put in custom values in the element itself. But it’s better to align values website wide.

    That’s it. I hope it helps and you can improve Enfold to an even better edition!

    Robert Berrier

    #1489179

    Hey schub1981,

    Thank you for the inquiry.

    We may need to inspect the elements on your site in order to provide an appropriate solution. Please provide the site URL in the private field. Have you tried adjusting the color options in the Enfold > General Styling > Logo Area tab?

    In the meantime, to adjust the color of the burger menu icon on mobile view, try to use the following css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .header_color .av-hamburger-inner,
      .header_color .av-hamburger-inner::before,
      .header_color .av-hamburger-inner::after {
        background-color: #da2727;
      }
    
      .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet,
      .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner,
      .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before,
      .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after {
        background-color: #da2727;
      }
    }
    

    Best regards,
    Ismael

    #1489169
    #1489156

    Hi,

    Try setting the Default Background color option under Enfold->General Styling->Main Content to the colour of your choice.

    Best regards,
    Rikard

    #1489152

    In reply to: themeforest enfold

    Hey Sarah,

    Extract the file that you downloaded from Themeforest on your local machine, then install enfold.zip located inside of the extracted file.

    Best regards,
    Rikard

    #1489151

    In reply to: Website soft brick

    Hi,

    Thank you for the inquiry.

    Most of the color styling options are located under Enfold > General Styling. You can check the preview to see which element a specific field controls. If you can’t find the correct setting there, you can also edit the element in the Advanced Layout Builder and adjust the color options in the Styling tab.

    To adjust the color of the phone number, please add this code in the Quick CSS field:

    #top .header_color .phone-info a {
        color: #ffffff;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Let us know the result.

    Best regards,
    Ismael

    #1489148

    Hi,

    Thank you for the update.

    We modified the avf_social_icons_options filter a bit and moved it around line 64 of the functions.php file. We also added the social icon in the Enfold > Social Profiles panel. Please make sure to purge the cache before checking the page.

    Screenshot-2025-09-11-at-10-31-50-AM
    image host
    Best regards,
    Ismael

    #1489147
    Sarah
    Guest

    I bought it and attempted to upload zip to wordpress and it doesn’t work. The error states Theme is missing the style.css stylesheet error

    #1489146

    Hey Giuseppe,

    Thanks for reaching out. Themeforest is the only legal outlet where Enfold is sold. Do not buy anything from the other sites that you linked to.

    Best regards,
    Rikard

    #1489144

    Hey samholl,

    The update to 7.1.2 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

    #1489140
    Giuseppe
    Guest

    Hi, when I do a researche of ENFOLD THEME to google, there is a long list of provider of this theme, like the following:
    https://pluginwp.net/en/producto/enfold-responsive-multi-purpose-theme/
    https://www.etsy.com/es/listing/1890185624/tema-multiproposito-responsivo-enfold
    But when I check your page:

    You redirect to the follow page:
    https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?irgwc=1&clickid=0zk32HyqZxyKUhp3KYRHO1-gUkpwClz0N0aR3k0&iradid=275988&irpid=1236844&iradtype=ONLINE_TRACKING_LINK&irmptype=mediapartner&mp_value1=&utm_campaign=af_impact_radius_1236844&utm_medium=affiliate&utm_source=impact_radius

    Can you let me know the difference between buy your pluguin from themeforest instead from https://pluginwp.net or https://www.etsy.com ?
    Maybe the difference is:
    With themeforest updates are live time.
    With https://pluginwp.net or https://www.etsy.com to get updates I need suscribe to them every year?
    Waiting for your reply.
    Best regards.

    #1489139
    theovh
    Participant

    On a website we built with the Enfold theme, we need to add code for a table booker. I’ve added the code, so you have an idea. Please advise where best to place it. It needs to be visible on all pages.

    <script src=”https://formv2.easybooker.be/widget.js&#8221; data-business-id=”563″ data-base-url=”https://formv2.easybooker.be”></script&gt;

    The form

    <script src=”https://formv2.easybooker.be/iframe.js&#8221; data-business-id=”563″ data-base-url=”https://formv2.easybooker.be/iframe&#8221; style=”width:100%”></script>

    Kind regards
    Theo

    #1489138
    samholl
    Participant

    Dear Kriesi Support Team,

    we have recently taken over an older website that is still running Enfold version 4.8.6. Unfortunately, a direct update is not possible – the theme options display the message: “No updates available. You are running the latest version (4.8.6).”

    We have attempted to upload the latest version of Enfold via FTP, but this completely broke the site’s design. Could you please advise us on the correct procedure for updating from version 4.8.6 to the current release? A full rebuild of the site is not an option due to the project’s size and complexity.

    Additional details:

    WordPress version: 6.8.2

    PHP version: 8.3.25

    Active theme: Enfold Child Theme

    Parent theme: Enfold 4.8.6

    Key plugins: WPML + Add-ons, Ninja Forms + File Uploads, LayerSlider WP (active)

    Issue summary:

    Theme options show “No updates available. You are running the latest version (4.8.6).”

    Manual FTP upload of Enfold 5.9.x → site design completely broken (shortcodes not rendered, styles reset).

    Rollback to 4.8.6 resolves the issue.

    Thank you very much for your assistance.

    Best regards,
    SH

    #1489135

    That didnt work.
    I downloaded the TripAdvisor icon via Fontello website and added to my website as instructed.
    Yes, I have tried to add the icon: Enfold > Social Profiles … Nothing is showing
    Thank you for your help : )

    #1489131

    Hi,

    Thanks for update. Try doing what I wrote earlier, to rule out any involvement by Enfold.

    Best regards,
    Rikard

    #1489130

    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

    #1489124
    Edewoolf
    Participant

    Hallo Kriesi-Team,

    ich habe eine neue Projektwebsite mit “Enfold” gestartet und gleich 2 Probleme damit:

    1. Unter “Allgemeines Styling” wurden diverse Farbeinstellungen vorgenommen. Unter “Erweitertes Styling” wurden die H1-H6-Überschriften angepasst und es wurden 2 Schriftarten installiert. Leider übernimmt Enfold keine einzige der Einstellungen bei der Generierung neuer Seiten. Das hatte bisher immer einwandfrei geklappt.

    2. Transparenz Header:
    Obwohl die Transparenz ausgeschaltet ist, ist der (fixe) Header komplett transparent statt mit weißem Hintergrund, wodurch das Hauptmenü schwer lesbar ist.

    Beste Grüße
    Christian

    #1489123

    At the very least, it would be good to know your header settings (logo left, menu below, etc.). For example, when I work on the new version with (logo left, menu right), the social bookmarks are located within main_menu. When I look at the board at the top here, they are located next to main_menu. – That depends on where I place the flex container.

    so it all depends on your setting . so it will be the best to see the concerning site.

    f.e. if you got a setting that the burger is visible from the beginning – like in freelancer demo

    then you had to remove the media-query setting for screens above 768px.

    #1489119

    try

    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all .main_menu {
        display: flex !important;
        flex-direction: row-reverse;
        align-items: flex-start;
        height: 100% !important;
      }
      #top #wrap_all .social_bookmarks {
        padding-right: 20px;
        border-right: 1px solid var(--enfold-header-color-meta);
      }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet #top .avia-menu.av_menu_icon_beside {
        border: none;
        padding-right: 0px;
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header .main_menu > .social_bookmarks {
        display: block !important;
        top: 40px
      }
      .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
        align-items: flex-start;
      }
      .responsive #top .av_seperator_big_border .avia-menu.av_menu_icon_beside {
        padding-right: 0;
        margin-right: 0;
        border: none;
      }
    }
    

    and check please the style on screens less than 767px if that fits for you. on medical demo it works well.

    #1489115

    if you like to have that on Enfold – Blog Layout – to choose the icons for “share on …”

    function avia_add_social_share_link_arguments($args){
        $tripadvisor = array('tripadvisor' => array("encode" => true, "encode_urls" => false, "pattern" => "https://www.tripadvisor.com/", 'label' => __("Share on Trip Advisor", 'avia_framework')));
        $args = array_merge($tripadvisor, $args);  
        return $args;
    }
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    #1489113

    So you uploaded your own symbols to Fontello? You didn’t enter a name for the font at the top of the Fontello page. That’s the one way to get the font name fontello.

    Can you insert the icon as symbol if you place an element ( icon ) to a page?

    Have you choosen that icon on Enfold Options – Social Profiles : at the end of that dropdown list your new entry?

    next – i do not know it you can choose every string on that – because these settings will end in a class e.g. (social_bookmarks_tripadvisor and av-social-link-tripadvisor) if you got a space inside $icons[‘tripadvisor’] it might be broken. ( you can have Tripadvisor)
    ( the display_name is the Name that is shown on hovering that icon )

    try:

    function avia_add_custom_icon($icons) {
      $icons['tripadvisor']  = array( 'font' =>'fontello', 'icon' => 'uf262', 'display_name' => 'Trip Advisor');
      return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
      $icons['tripadvisor'] = 'tripadvisor';
      return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    #1489107

    Hi,

    I removed this from functions.php, and it’s working as expected after that:

    function enfold_child_enqueue_parent_style() {
        $child_theme = wp_get_theme( 'enfold-child' );
    
    	wp_dequeue_style( 'avia-style' );
    	wp_deregister_script( 'avia-style' );
        wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array(), $child_theme->get( 'Version' ) );
    }
    add_action( 'wp_enqueue_scripts', 'enfold_child_enqueue_parent_style', 20 );

    Best regards,
    Rikard

    #1489093
    icarogioiosi
    Participant

    Hello everyone.
    At https://kriesi.at/documentation/enfold/social-share-buttons/#toggle-id-1, I found this code to display social media icons on mobile devices:

    /* Do not hide social bookmarks */
    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all #header .social_bookmarks {
    display: block;
    }}

    It works perfectly, but the icons are to the right of the menu.
    Would it be possible to have them between the logo and the menu instead?

    02

    Alternatively, is it possible to insert them within the mobile menu?
    Regards.

    #1489090
    Bernd
    Participant

    Hi,

    We use the WordPress toolkit Plesk extension on all our hosting plans with WordPress websites. Unfortunately, the automatic theme update for Enfold does not work via toolkit.

    When I start the update manually using the toolkit, the following error message appears: The theme(enfold) has not been updated due to unrecognized reason. This is not very helpful. But in WordPress, the update can be installed successfully.

    I am aware that this may be a problem with the toolkit and not with enfold. But maybe someone else has had the same experience here?

    Regards,
    Bernd

    #1489084

    Topic: Website soft brick

    in forum Enfold
    frammies
    Participant

    Hi all – I soft bricked my website by using the reset button in enfold backend. All custom CSS and settings is lost and now I am trying to rebuild all. Lots of things I was able to handle by my self but some I don’t know how to fix.

    First problem: I am missing that when the first section of a page has blue background color, the font type is white. See example in PC.

    #1489083

    Hi,

    You will need to run the same version of Flux, Woo and Enfold in order to do a comparison.

    Best regards,
    Rikard

    #1489076

    In reply to: Sidebar settings

    Hey Julie,

    Thanky you for the inquiry.

    Did you add this css code?

    main {
        display: block;
        margin: 0 auto;
        max-width: 40rem;
        padding: 1rem;
    }
    

    This limits the width of the content to 40rem. Please try to remove the css code, then toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Let us know the result.

    Best regards,
    Ismael

    #1489075

    In reply to: Header

    Hey ericsauthier,

    Thank you for the inquiry.

    Looks like you have managed to set the menu to display below the logo. To enable the sticky header, we enabled the Sticky Header option in the Enfold > Header > Header Behavior panel.

    Screenshot-2025-09-09-at-11-49-15-AM

    Best regards,
    Ismael

Viewing 30 results - 691 through 720 (of 243,763 total)