Viewing 30 results - 3,541 through 3,570 (of 243,848 total)
  • Author
    Search Results
  • #1475916

    Hi,
    I tried again to install the enfold theme and this came out: “The link you followed has expired.
    Please try again”

    What does this mean?

    Thank you

    #1475914

    @Ismael : can you erase from GitHub Library on “Online Resources from Third Party Developers” the
    “Disable loading of Google fonts and host them on your on server by Guenni007Disable loading of Google fonts and host them on your on server by Guenni007”
    it is a bit deprecated since Enfold Font Manager is established.

    #1475912

    In reply to: Warning: fopen

    Hi,

    Thanks for that. The log you sent only seems to contain notices and warnings, they are not actual errors and should not cause any problems on your site. The files referenced seems to be style sheets, so toggling the file compression options under Enfold->Performance might help. You could also try to activate or toggle the option to delete old CSS and JS files on the same page.

    Best regards,
    Rikard

    #1475911

    Hey Ralf,

    I’m not sure that I fully understand the problem that you are having, could you post a link to where we can actually see it please? Also, did you check your setting under Enfold->Sidebar?You can set different sidebars for the blog and archive pages there.

    Best regards,
    Rikard

    #1475910

    Hey yifatcohen,

    Thank you for the inquiry.

    You can try the ava_after_main_menu hook or any template hooks available in the includes > a/enfold/includes/helper-main-menu.php file.

    Please add this code in the functions.php file:

    
    function av_healcode_script_after_menu() {
        ?>
        <script src="https://widgets.mindbodyonline.com/javascripts/healcode.js" type="text/javascript"></script>
        <healcode-widget 
            data-version="0.2"
            data-link-class="loginRegister"
            data-site-id="123698"
            data-mb-site-id="5741852"
            data-bw-identity-site="false"
            data-type="account-link"
            data-inner-html="Login | Register">
        </healcode-widget>
        <?php
    }
    add_action('ava_after_main_menu', 'av_healcode_script_after_menu');
    
    

    Best regards,
    Ismael

    #1475909

    In reply to: Enfold Theme Tutorials

    Hey Allen,

    Thank you for your interest in the theme.

    Yes, the theme is updated. In fact, we’ve just released a new patch last week for version 6.0.9. If you want to learn more about the theme and how to get started, you can check out our documentation: https://kriesi.at/documentation/enfold/.

    If you need more info, you can always reach out in the forum.

    Best regards,
    Ismael

    Hi,

    You have to manually adjust the Styling > Button Bar Style settings of the Social Buttons element. We set it to Circle to test. Please note that the Enfold Child Theme Options > Blog Layout > Share Button Bar Style settings are intended for the social sharing icons in the posts.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1475900

    In reply to: Can’t update theme

    Hey scottsteve,

    Thank you for the inquiry.

    You might need to update the theme manually via FTP if the automatic update is not working on your server. Please check the following documentation for more info: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    #1475895

    Don’t get me wrong: the marquee tag is long outdated (and probably the effect too ;)), but you can use a keyframe animation for this element, for example.

    F.e. see page and code on that page: https://enfold.webers-webdesign.de/partnerlogo-element/

    #1475894

    In reply to: Blog page with sidebar

    Hey MysticMimi,

    Thank you for the inquiry.

    You may have forgotten to include the username in the private field.

    To create a 3-column blog page, make sure the blog page is set in the Enfold > Theme Options > Where Do You Want To Display The Blog settings. If you previously configured the options in the Settings > Reading panel, reset them to default. Next, go to the Enfold > Blog Layout panel and set the Blog Layout settings to the last option (Use the Advanced Layout Builder). This allows you to edit the blog page using the Advanced Layout Builder (ALB). Edit the blog page, switch to the ALB, insert a Blog Posts element, set it to Grid Layout, and then configure it as needed.

    Let us know if you need more info.

    Best regards,
    Ismael

    Dear Ismael,

    Sorry about the late response. I’ll have to look at it again. In the meantime, I have an another issue: the Enfold Child Theme Options > Blog Layout > “Share Button Bar Style” option is not working properly. Specifically, when I choose a different style, whether Rectangular, Buttons, Circle or Icon, it does not change the front end on my webpage: https://AbogadoNotarioOnline.com/ (the social profiles are at the bottom). If you can go in to try and fix it, that would be great!

    Thanks a lot!

    Ramon

    #1475882

    what you try to influence on the hamburger script file?

    you can deregister the parent script and register child-theme edited files then.
    My recommendation is to have the same tree structure as the parent – create a js subfolder in your child-theme directory.

    if you use the option of enfold to use minified files – you had to upload both files – in your case:
    avia-snippet-hamburger-menu.js and avia-snippet-hamburger-menu.min.js

    to get the minified version you can use this : https://codebeautify.org/minify-js

    put this in your child-theme functions.php :

    function wp_change_hamburger_script() {
      $vn = avia_get_theme_version();
      $child_theme_url = get_stylesheet_directory_uri();
      $min_js = avia_minify_extension( 'js' );
    
      wp_deregister_script( 'avia-hamburger-menu' );
      wp_enqueue_script('avia-hamburger-menu-child', "{$child_theme_url}/js/avia-snippet-hamburger-menu{$min_js}.js", array('avia-default'), $vn, true);
    }
    add_action( 'wp_enqueue_scripts', 'wp_change_hamburger_script', 100 );
    #1475881
    Allen
    Guest

    I am looking to work with a Client using Enfold. In that I am looking for some Tutorials looking at how Enfold works. All I can find is old videos. Is Enfold Theme being kept up to date? If it is please reply back with Beginners to Advance videos to see if Enfold is something I would want to use.

    Thank you

    #1475878
    jedediahzilberberg
    Participant

    Hi,

    I need to add customization to the mobile hamburger menu/nav bar. The code I need to customize is in enfold/js/avia-snippet-hamburger-menu.js in function avia_hamburger_menu(). I tried making a copy of this file in my child theme, enfold-child, and making the modifications there, but that did not work. So, for now I just made the modifications in enfold/js/avia-snippet-hamburger-menu.js. This works but obviously is not ideal when theme updates happen. Is there a way to make this modification in a file that won’t be updated in the main enfold theme? I am using enfold 6.0.8.

    Thanks,
    Jed

    #1475876

    In reply to: Video in Header

    have a look at : https://webers-testseite.de/bemopriv/
    the heading had to be styled for responsive case – but I didn’t feel like doing that anymore.

    the layout is based on a grid-row element

    this is the enfold shortcode of the grid-row:

    [av_layout_row min_height_percent='percent' min_height_pc='60' min_height='0' border='' fold_type='' fold_height='' fold_more='Read more' fold_less='Read less' fold_text_style='' fold_btn_align='' color='main_color' fold_overlay_color='' fold_text_color='' fold_btn_color='theme-color' fold_btn_bg_color='' fold_btn_font_color='' size-btn-text='' av-desktop-font-size-btn-text='' av-medium-font-size-btn-text='' av-small-font-size-btn-text='' av-mini-font-size-btn-text='' fold_timer='' z_index_fold='' mobile='av-flex-cells' mobile_breaking='' mobile_column_order='' id='' custom_class='full-bg-image' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-m6f9v8gq' sc_version='1.0']
    [av_cell_three_fourth vertical_align='middle' padding=',,,' av-desktop-padding=',,,80px' av-medium-padding=',,,80px' av-small-padding='3' av-small-padding_sync='true' av-mini-padding='20' av-mini-padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' link_dynamic='' linktarget='' title_attr='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-m6f9ukqb' sc_version='1.0']
    
    [av_four_fifth first min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_width='10' row_boxshadow_color='' margin='0px' margin_sync='true' av-desktop-margin='' av-desktop-margin_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-small-margin='' av-small-margin_sync='true' av-mini-margin='' av-mini-margin_sync='true' mobile_breaking='' mobile_column_order='' border='1' border_style='solid' border_color='#000000' radius='15' radius_sync='true' min_col_height='' padding='30' padding_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-padding='' av-mini-padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' fold_type='' fold_height='' fold_more='Read more' fold_less='Read less' fold_text_style='' fold_btn_align='' column_boxshadow_width='10' column_boxshadow_color='' background='bg_color' background_color='rgba(0,0,0,0.5)' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' src_dynamic='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' fold_overlay_color='' fold_text_color='' fold_btn_color='theme-color' fold_btn_bg_color='' fold_btn_font_color='' size-btn-text='' av-desktop-font-size-btn-text='' av-medium-font-size-btn-text='' av-small-font-size-btn-text='' av-mini-font-size-btn-text='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='' av-desktop-parallax_parallax='' av-desktop-parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' fold_timer='' z_index_fold='' css_position='' css_position_location=',,,' css_position_z_index='' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' link='' link_dynamic='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' element_template='' one_element_template='' av_uid='av-t574on' sc_version='1.0']
    
    [av_heading heading='FREEZE FLAT™' tag='h1' style='blockquote modern-quote' subheading_active='subheading_above' show_icon='' icon='ue800' font='entypo-fontello' size='' av-desktop-font-size-title='48' av-medium-font-size-title='42' av-small-font-size-title='36' av-mini-font-size-title='28' subheading_size='' av-desktop-font-size='36' av-medium-font-size='28' av-small-font-size='24' av-mini-font-size='20' icon_size='' av-desktop-font-size-1='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='custom-color-heading' custom_font='#ffffff' subheading_color='#ffffff' seperator_color='' icon_color='' margin='' margin_sync='true' av-desktop-margin='' av-desktop-margin_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-small-margin='' av-small-margin_sync='true' av-mini-margin='' av-mini-margin_sync='true' headline_padding='' headline_padding_sync='true' av-desktop-headline_padding='' av-desktop-headline_padding_sync='true' av-medium-headline_padding='' av-medium-headline_padding_sync='true' av-small-headline_padding='' av-small-headline_padding_sync='true' av-mini-headline_padding='' av-mini-headline_padding_sync='true' padding='10' av-desktop-padding='' av-medium-padding='' av-small-padding='' av-mini-padding='' icon_padding='10' av-desktop-icon_padding='' av-medium-icon_padding='' av-small-icon_padding='' av-mini-icon_padding='' link='' link_dynamic='' link_target='' title_attr='' id='' custom_class='iceglas' template_class='' element_template='' one_element_template='' av_uid='av-m6e7xj5g' sc_version='1.0' admin_preview_bg='']
    The Original
    [/av_heading]
    
    [/av_four_fifth][/av_cell_three_fourth][av_cell_one_fourth vertical_align='bottom' padding='' padding_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-padding='' av-mini-padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' link_dynamic='' linktarget='' title_attr='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-u4sunr' sc_version='1.0']
    
    [av_video src='https://www.youtube.com/watch?v=W73GdyDSHuU' mobile_image='https://webers-testseite.de/wp-content/uploads/dynamic_avia/avia_video_thumbnails/youtube/W73GdyDSHuU/W73GdyDSHuU.jpg' attachment='49853' attachment_size='full' video_autoplay_enabled='aviaTBvideo_autoplay_enabled' html5_fullscreen='aviaTBhtml5_fullscreen' format='16-9' width='16' height='9' conditional_play='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='av-m6f9u95o' sc_version='1.0']
    
    [/av_cell_one_fourth]
    [/av_layout_row]
    
    
    #1475872

    Topic: Can’t update theme

    in forum Enfold
    scottsteve
    Participant

    I get this message when I try to update Enfold.
    “An error occurred while updating Enfold: Could not move the old version to the upgrade-temp-backup directory.”
    I have searched the forum and followed applicable device.
    The settings on my upgrade-temp-backup directory and its subfolder, themes, are correct – 755

    I am able to update plugins, just not the theme.

    #1475871

    Hi Rikard,
    i am sorry, the problem occur again.
    I can’t see any content in back office thru advanced layout editor anymore.
    A few days ago I installed the “Post Slider and Carousel Pro” plugin. This plugin claims to be compatible with the Enfold theme. Could there be a link?
    Is a theme update planned soon?
    It’s a real concern. Many thanks for your help,
    Best regards,
    James

    #1475866

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1475864

    HI Ismael,
    I wiped the woocommerce installation with WC_REMOVE_ALL_DATA and reinstalled woocommerce and wc germanized, these are also the only two active plugins
    I removed the CSS you posted before and created a Test Product.

    The problem is enfold related, I checked again with the 2025 theme and the Product units are displayed correctly.
    Please have a look at it now.

    Best regards,
    Michael

    • This reply was modified 11 months, 3 weeks ago by MAlmhofer.
    #1475861
    gwo1
    Participant

    Hallo,
    ich habe die 2. Lizenz gekauft und versuche sie zu installieren, geht aber nicht.
    Das wird erschienen: “Unable to create directory wp-content/uploads/2025/01. Is its parent directory writable by the server?”

    Was soll ich machen?
    Danke

    #1475860

    Hi,

    Please register your theme license first of all, you might get the update on the backend if you do: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1475854

    Hi,

    Thanks for the update. Enfold doesn’t remove options from the WordPress menu, please try reaching out to your hosting provider to check if it’s controlled by them.

    Best regards,
    Rikard

    #1475844

    Hi,
    Thank you for the prompt response.
    No change.

    And we use Enfold on another website with WP Carousel with no issue sand same eror. https://guideaujapon.fr
    Regards,
    Xavier

    • This reply was modified 11 months, 3 weeks ago by koomo.
    #1475841

    Hi,

    Thank you for the update.

    Where can we check the element? Please create a test or provide the link to the page where you need to adjust the subheading text. Have you tried to temporarily disable the Enfold > Performance > File Compression settings?

    Best regards,
    Ismael

    #1475839

    Hey Danilo C.,

    Thank you for the inquiry.

    You may need to update via FTP, as the current version does not support automatic updates. Please refer to the documentation for more info: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Let us know if you need more assistance.

    Best regards,
    Ismael

    #1475828

    you can manage it by clip-path.
    But the following section had to be handled the same way on top of that section
    see ( css code including ): https://enfold.webers-webdesign.de/enfold-one-page-agency/

    the shift of that edge you like to have – had to be the same value on both sections! so % will not be ok ( the % is in relation to the section height – and that maybe different for both sections) for the shift. It had to be a absolute value – or a relative value that is the same for both sections ( f.e. screen width)

    now only the polygone points declare the form of your separator. The points coordinates are starting top left and goes clockwise.
    see f.e. : Clippy

    __________

    to explain what I mean by shift: Starting from a rectangular polygon with an additional point at the bottom, in the example I move this point upwards by an amount (10vw). This means that the y-coordinate is 100% – 10vw. The same goes for the bottom left point.

    So that there is no gap, I have to do the same with the following section. But then for the first and second point of the polygon.

    • This reply was modified 11 months, 3 weeks ago by Guenni007.
    #1475824

    Hi,
    Glad we were able to help, if you have any further questions please register for support with your new license and then create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1475823

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .widget ul.social_bookmarks {
        display: inline-flex;
        gap: 0px 10px;
    }
    
    #top .widget ul.social_bookmarks li {
        border: none
    }

    After applying the css, please clear your browser cache and check.
    Screen Shot 2025 01 26 at 8.42.43 AM

    Best regards,
    Mike

    #1475817

    Hey pikkuapuri,
    Bluesky & Pixelfed are not available on fontello.com where our icon fonts are from.
    Our Dev Team is reviewing the Feature Request for Bluesky, but we will probably need to wait until it is on fontello.com.
    For now, follow the steps in this thread and change the code from “TikTok” to Bluesky or Pixelfed and the icon font character code to yours (ie: ue800) also ensure quotes in the code that you copy and paste is not changed.
    Note that the icon fonts can not be in color, only black and white, and when you upload a SVG to fontello.com you may need to adjust as in this thread.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 results - 3,541 through 3,570 (of 243,848 total)