Viewing 30 results - 2,941 through 2,970 (of 244,163 total)
  • Author
    Search Results
  • #1480221
    bensondesign
    Participant

    On the staging site with the updated Enfold theme from Version: 4.5.6 to 7.1

    There must be something wrong in the existing Enfold Child theme.

    When activating the Enfold parent theme, the footer is working fine.
    But when activating the Enfold child theme, the footer isn’t working. There might be also other things that are not working when the child theme is activated with the latest enfold version.

    It all works fine on the live site

    #1480214
    Arobazinfo
    Participant

    Hi everybody !
    I want to download demo but i’m stuck in nowhere.
    First : are they free ?
    Second : How can i download it ?
    Third : can i import them the the import section of enfold theme wordpress ?

    By advance, thx a lot :)

    OOOps find it into enfold wordpress, feel so sorry :/.

    • This topic was modified 11 months ago by Arobazinfo.
    • This topic was modified 11 months ago by Arobazinfo.
    grantloon
    Participant

    Hi,
    Trying to bring site back online after discovering errors on the site. Version is 3.5. WordPress says this is latest available which does not seem correct. Any advice much appreciated.

    Many thanks

    Warning: Illegal string offset ‘modal_on_load’ in

    Warning: Invalid argument supplied for foreach() in

    Warning: Illegal string offset ‘shortcodehandler’ in

    Warning: Illegal string offset ‘modal_title’ in

    Warning: Illegal string offset ‘modal_ajax_hook’ in

    Warning: Illegal string offset ‘dragdrop-level’ in

    Warning: Illegal string offset ‘allowed-shortcodes’ in

    Warning: Illegal string offset ‘allowed-shortcodes’ in /

    Warning: Illegal string offset ‘allowed-shortcodes’ in

    Fatal error: Uncaught Error: Cannot use string offset as an array in

    #1480212
    cadra83
    Participant

    Good morning Guys, I have an unusual behaviour of the images that I have inserted inside the pages in a section as background of the site that I lin you in private. They are images that I have optimised in webp, but I don’t understand why on each page they appear after a fraction of a second and not immediately.
    Let’s say it is annoying, but I would like to understand how to solve this detail for the future!

    i use wp-optimize and i left the perfomarce section of the theme enfold child as per default settings.

    thanks

    #1480203

    In reply to: post delimiter

    Hey mary301187,

    Please try the following in Quick CSS under Enfold->General Styling:

    .container_wrap {
      border-top-width: 0;
    }
    
    #top .fullsize .template-blog .post_delimiter {
      border-bottom-width: 0;
    }

    Best regards,
    Rikard

    #1480202

    Hey sandra_m_williams,

    You can enable that under Enfold->Theme Options->Maintenance Mode. We cannot help out with third party plugins unfortunately.

    Best regards,
    Rikard

    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

    #1480200

    Hey Pablo,

    Thanks for reaching out to us. A single license is valid for a single domain, including sub domains. If your sites are to have different domains, then you would need two licenses. I would recommend purchasing two single licenses for your needs.

    Enfold is compatible with all recent PHP versions.

    Best regards,
    Rikard

    #1480193
    comkapi
    Participant

    Hello,
    the MCE icon tool (in the shape of a magic wand) to insert a shortcode in text element no longer appears in my custom layout.
    i use it to display ACF custom fields data, like in documentation.

    With console i see a JS error in admin, I searched and it comes from the fact that the shortcode use the field label of ACF but it’s the field name which is given now, example for a company name :
    previously with field name : {acf_field_6745a0c4478f3:Nom_entreprise}
    today with field label instead : {acf_field_6745a0c4478f3:Nom de l’entreprise}
    And in French the apostrophe in the label value of the field brakes some Avia js array and prevents the display of the MCE icon tool …

    i fixed it by removing apostrophe in the ACF label field
    This appears to be due to a recent update, but is it an Enfold update or an ACF update? i don’t know

    Maybe it can help others

    Regards

    #1480189
    Pablo Adán
    Guest

    Hi,… we want to get enfold theme for two differents proyects (two different sites). Done by our agency and property as part as our agency selling strategy. We do not know if we need to buy the theme twice as two different purchases or there is a two sites packaging purchase.

    On the other hand, we need to know if the last enfold version is allowed with PHP 8.4 version.

    Please, let me know asap because que need to decide the theme and start both projects.

    Thanks.

    #1480184

    In reply to: Upgrade Enfold Theme

    Hey Jim Dalrymple,

    Thank you for the inquiry.

    Did you create a site backup or export the theme options before deleting the Enfold theme? You should still be able to restore the previous layout and design as long as the database entries for the theme options are still intact. We recommend to restore the site using a backup, then update the theme via FTP instead of deleting it completely.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    Hey dogsbody,

    Thank you for the inquiry.

    The process should be the same for SVG icons. Create a folder called “svg”, place the “bluesky.svg” and “mastodon.svg” file inside, compress or archive the folder to a zip file and name it “social”, then upload it to the SVG Iconset and Iconfont Manager. You may need to delete the previous icons to avoid conflict.

    https://kriesi.at/documentation/enfold/svg-icon-sets/#use-svg-icon-files-to-create-svg-icon-set-quick-setup

    Add this in the functions.php file to register the social icons:

    function avia_add_custom_icon($icons)
    {
        $icons['mastodon'] = array('font' => 'svg_social', 'icon' => 'mastodon');
        $icons['bluesky'] = array('font' => 'svg_social', 'icon' => 'bluesky');
        return $icons;
    }
    add_filter('avf_default_icons', 'avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons)
    {
        $icons['mastodon'] = 'mastodon';
        $icons['bluesky'] = 'bluesky';
        return $icons;
    }
    add_filter('avf_social_icons_options', 'avia_add_custom_social_icon', 10, 1);
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
        $mastodon = array('mastodon' => array("encode" => true, "encode_urls" => false, "pattern" => "https://www.mastodon.com/", 'label' => __("Share on mastodon", 'avia_framework')));
        $bluesky = array('bluesky' => array("encode" => true, "encode_urls" => false, "pattern" => "https://www.bluesky.com/", 'label' => __("Share on bluesky", 'avia_framework')));
        $args = array_merge($mastodon, $bluesky, $args);
        return $args;
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    #1480175
    Jim Dalrymple
    Guest

    Today I discovered that our non-profit website, conuhome.org, would not launch and would only show a critical error. Our host provider, webhostingpad.com, claimed the problem was due to the Enfold theme and they deleted it. Now our website is nothing short of terrible but I can now access the wpadmin page. I have no idea what version of Enfold we had. If I purchase a new version, will I be able to revive the website? I’m not much of a web developer, more of a content manager.

    #1480170

    Hi,

    Thank you for the info.

    You can add this css code to adjust the padding around the menu button:

    #top #wrap_all #header #menu-item-848 {
        padding: 0 20px;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache afterward.

    View post on imgur.com

    Best regards,
    Ismael

    #1480168

    Hi,

    Thank you for the update.

    The site above is not using any of our themes. Are you sure it’s the correct URL? Please provide the link to the site containing the Enfold theme — screenshots will also help.

    Best regards,
    Ismael

    Hi,

    Did you select the blog or posts page in the Settings > Reading panel? Please reset these options to default, then make sure to set the home and blog page in Enfold > Theme Options. You can then adjust the style of the blog in the Enfold > Blog Layout panel.

    For more info about the blog settings, please check this documentation: https://kriesi.at/documentation/enfold/blog-post

    Best regards,
    Ismael

    #1480164

    Hi,

    What is the screen resolution of your laptop? If it has a lower screen resolution, you could decrease the max-width value, then adjust the Enfold > General Layout > Maximum Container Width. Make sure to purge the cache or remove the browser history before checking.

    Best regards,
    Ismael

    #1480155
    SandraMarino
    Participant

    Hello

    I’d like to vertically align the image I’m tiling as a background for my color section. Could you give me some advice? The subject of my image remains too low and it’s impossible to adjust it as I want. I set the size to 1500 x 720, like on the ‘enfold GYM template.

    I also find the image is too compressed. Can I lower the compression rate to improve the quality?

    Thank you for your help.

    #1480149

    Hey MarcusJeroch,

    That can be set under Enfold->Advanced Styling.

    Best regards,
    Rikard

    Hi,

    Great, I’m glad to hear that you got it 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

    #1480145

    Hello,

    I have been troubleshooting the issue with images not displaying on the Work page of the Dark Enfold Theme. Here are the steps I’ve taken so far:

    1. Checked the Enfold Theme Options under Performance and ensured that JS & CSS file merging and compression were disabled.
    2. Verified that jQuery Migrate was not disabled.
    3. Temporarily disabled plugins to test for conflicts.
    4. Checked the browser console for JS errors.
    5. Verified image paths, permissions, and gallery shortcode structure.
    6. Disabled lazy load/compression from caching plugins.
    7. Regenerated thumbnails using the Regenerate Thumbnails plugin.

    Despite these efforts, the issue persists. Could you please provide further assistance or guidance on how to resolve this?

    Thank you.

    #1480143

    Topic: Theme code

    Francisco Campos
    Guest

    Hi,
    I am starting to manage a new website that uses your theme.
    Enfold version: 5.5

    Website is http://www.escadafacil.pt

    Do you have any record of a purchase code of the theme to this website?

    If so, can you send the code to the owners of the site (Email address hidden if logged out) or some email like this?

    I would like to have updates.

    Dear team Enfold

    I ask again: Do we still receive support for this? We would be very grateful if someone would take care of this problem.

    Thx
    Mike

    #1480129

    In reply to: Search icon color

    Hi,

    Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1480128

    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

    ericdkolb
    Participant

    Experiencing major performance issues on a WordPress site I’m working on that runs the Enfold theme. When analyzing performance diagnostics with New Relic, I consistently see the avia_deep_decode function appearing as a bottleneck.

    Details:

    • The avia_deep_decode function is frequently flagged in New Relic performance reports
    • It appears to be significantly slowing down page load times
    • I’m working on optimizing this site and this function appears to be a major blocker

    Questions:

    • What is the purpose of the avia_deep_decode function in Enfold?
    • Is it safe to disable or modify this function to improve performance?
    • Are there any recommended alternatives or optimizations for this function?</li

    Any guidance would be greatly appreciated as I’m trying to improve the site’s speed without compromising functionality.

    Thank you!

    dogsbody
    Participant

    Hi,

    This post follows my post Setting up two new social profiles under Enfold 7.1. Sorry if i was not clear in my original thread.

    I wish to use the new SVG features of Enfold 7.x to add two new Social Profiles.

    The advice in the linked thread works fine however this does not seem to be using SVG.

    Is this by design (Social Profiles do not yet support custom SVG’s?) or is there a newer/better guide?

    Thank you :-)

    #1480107

    but you do not want to combine those things mentioned on the other post?

    see f.e.: https://enfold.webers-webdesign.de/impressum/
    see text logo above , when you switch to other posts/pages

    function use_text_logo_only($logo){
        $link = apply_filters( 'avf_logo_link', home_url( '/' ) );
        $logo_tag = "h1";
        $logo_heading = "Webers Webdesign";
        $alt = get_bloginfo( 'name' );    
        $title = get_bloginfo( 'name' );
        $page_title = get_the_title();
    
    if(is_search()){
    	$logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>'  .$logo_heading.' - Suchergebnisse</'.$logo_tag.'></a>';
    }
    elseif(is_front_page()){
    	$logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>'  .$logo_heading.'</'.$logo_tag.'></a>';
    }
    else{
    	$logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>'  .$logo_heading.' - '.$page_title.'</'.$logo_tag.'></a>';
    }
    return $logo;
    }
    add_filter('avf_logo_final_output','use_text_logo_only');
    #top .logo.text-logo  {
      display: flex;
      justify-content: left;
      align-items: center;
      width: auto;
    }
    
    #top .logo.text-logo h1  {
      margin: 0 !important;
      font-size: 30px;
    }
    #1480082

    In reply to: Heading font weight

    Hi,

    We are not sure how you managed to select Source Sans Pro because it is not available by default. Which Google font are you trying to select now? If the font is not available in the list, try uploading it to the Custom Type Fonts Manager. Please check the documentation below for more info.

    https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts

    Best regards,
    Ismael

    #1480076

    Hi Mike,
    This works absolutely great thank you. Am I right in thinking that this doesn’t use the new SVG features of Enfold v7.0 though?
    Thank you

Viewing 30 results - 2,941 through 2,970 (of 244,163 total)