Viewing 30 results - 11,161 through 11,190 (of 244,520 total)
  • Author
    Search Results
  • #1428609

    Hey Jürgen,

    Thank you for using Enfold and reporting this.

    For next release I added filter ‘avf_toggle_sorted_tags’ that allows to reorder the list as you like (we use the php function ksort).

    And I also modified the CSS with your flex solution – but I had to wrap the “tab” in a div with class “tag-tab” because of the visible tag seperator.

    If you want to switch to the updated files:

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_6_9/shortcodes/toggles/toggles.php
    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_6_9/shortcodes/toggles/toggles.css

    Best regards,
    Günter

    #1428608

    Hey lf,

    I logged in using your account, and it seems to be working as it should on my end. If you want to open a new thread, then please go the Enfold sub forum.

    You can only import one demo at a time unfortunately, but you can use parts from different demos if you import them manually. To do that I would suggest that you set up two sites and import the demos you are interested in on those sites. You can then activate debug mode under Enfold->Layout Builder->Show advanced options->Debug mode in order to see the shortcodes which are generated by the Enfold layout builder. You can then copy shortcodes between your two sites.

    Best regards,
    Rikard

    #1428592

    Hello,

    we’ve been using enfold with webp express plugin and we’ve realized that when using transparent header (with two different logos), both logos are displayed (one over the other) when transparent header is rendered

    I think it could be a bug, Could you please check it?

    Thanks in advance,

    Hi,
    Glad Rikard could 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

    #1428589

    Hi,
    Typically when you add a new social profile following the documentation this is the correct code snippet that you should add to your child theme functions.php:

    
    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons['line'] = array( 'font' =>'icomoon', 'icon' => 'ue900');
    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['Line'] = 'line';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    // Add new icon to sharebox
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args){
        $tiktok = array('line' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://line.me/", 'label' => __("Share on Line",'avia_framework')));
        $args = array_merge($line, $args);
        return $args;
    }

    and then you would choose the new social profile from the options”
    Enfold_Support_4185.jpeg
    and then it will show on the front end:
    Enfold_Support_4187.jpeg
    I have done this for you.

    Best regards,
    Mike

    #1428585

    Hi,

    Please see @guenni007’s reply.

    If you’d like to set the opacity of the logo to zero when scrolled down, please add the following code to the Quick CSS field in the Enfold theme options > General Styling:

    
    .header-scrolled-full .logo {
      opacity: 0;
    }
    


    @guenni007
    Thanks for your help!

    Best regards,
    Yigit

    #1428580
    lf
    Guest

    Hallo Support Team,

    Ich habe am Freitag eine Lizenz von dem Enfold Theme mit 12 Monate Support gekauft.
    Ich bin jetzt zwar im Forum angemeldet, sehe aber in meinem Profil weder mein Abonnements, noch kann ich im Forum eine Frage stellen.

    Bitte um manuelle Freischaltung, ich bin im Besitz eines Purchase Code. Muss ich den noch irgendwo in meinem Profil hinterlegen?

    Vielen Dank

    #1428574

    Your setting only makes sense – if the header stays fixed on responsive case. So on the css above it is set to fixed
    the 116px is the standard setting of header hight on setting: large

    – if you got this “Reading Progress Bar” active it might be a decision to show it on scroll or not – that makes only a difference in translate-y amount.

    see: https://enfold.webers-webdesign.de/

    now there must be a setting for burger active …
    best would be to show the header always ( because burger-menu and hamburger icon are part of the header )

    .responsive.av-burger-overlay-active #header {
      position: fixed !important;
    }

    PS: you see on the css above that the media queries rules are the same (in this case) – but it might be different on your settings – f.e. to have a smaller header hight on screens less than 768px.

    #1428573

    oh wow – did not see that you are only asking for the logo hide/show !
    so forget about my solution – which is meant for hide/show complete header – sorry

    _________ so this is not for your problem ____________

    yes, this is a possibility – but has the disadvantage that this class (header-scrolled) is only removed if you are in the top position on the page. This means that the header only appears again then. If you scroll-direction is up at the bottom (or middle) of a page, nothing happens.
    It would therefore be better to have a class that is removed as soon as a certain distance is scrolled back – and thus restores the header visibility.

    This is a function adding a class (hide-header) depending on scroll distance.

    function hide_header(){
    ?>
    <script>
    (function($){
    
      'use strict';
      var c, 
      currentScrollTop = 0,
      header = $('#header');
    
       $(window).on('scroll', function () {
          var a = $(window).scrollTop();
          var b = header.height();
          currentScrollTop = a;
    
          if (c < currentScrollTop && a > b  ) {
            header.addClass("hide-header");
          } else if (c > currentScrollTop && !(a <= b)) {
            header.removeClass("hide-header");
          }
          c = currentScrollTop;
      });
    })(jQuery);   
    </script>
    <?php
    }
    add_action('wp_footer', 'hide_header');
    

    The css you need on that must reflect your header height you set on Enfold options. And the options – f.e. if you have a top-menu or phone-info field above the header. And if it scrolls away.

    The trick now is to shift the header in y-direction above the viewport.
    And because we do not want to do that if the burger menu is opend – we exclaim it bei not selector ( :not(.av-burger-overlay-active) )
    The media query settings are individual – and you have to adjust it to your needs – if you got pages with transparency headers – maybe there had to be different padding-top settings of #main.

    css – first settings:

    
    .responsive:not(.av-burger-overlay-active) #header {
      top: 0px;
      -webkit-transition: transform 0.5s ease-in;
      transition: transform 0.5s ease-in;
    }
    
    .responsive:not(.av-burger-overlay-active) #header.hide-header {
      -webkit-transition: transform 0.5s ease-in;
      transition: transform 0.5s ease-in;
    }
    
    .responsive:not(.av-burger-overlay-active) #main {
      top: 0px;
      -webkit-transition: padding-top 0.5s ease-in;
      transition: padding-top 0.5s ease-in;
    }
    
    .responsive.av-burger-overlay-active #header {
      position: fixed !important;
    }
    
    @media only screen and (min-width: 990px) {
      .responsive:not(.av-burger-overlay-active) #header.hide-header {
         transform: translateY(-116px);
      }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive:not(.av-burger-overlay-active) #header {
        position: fixed !important;
        top: 0;
      }
      .responsive:not(.av-burger-overlay-active) #header.hide-header {
         transform: translateY(-90px);
      }
      .responsive #top #main {
         padding-top: 90px !important;
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive:not(.av-burger-overlay-active) #header {
        position: fixed !important;
        top: 0;
      }
      .responsive:not(.av-burger-overlay-active) #header.hide-header {
         transform: translateY(-80px);
      }
      .responsive #top #main {
         padding-top: 80px !important;
      }
    }
    #1428560
    StephenStamp
    Participant

    I purchased the theme, did a fresh install of wordpress on my hosting. downloaded the theme installation files
    then loaded the enfold folder and then the website crashed and i got a critical error.

    There has been a critical error on this website.

    Learn more about troubleshooting WordPress.

    I cannot get back into the site….
    there are no additional plugins that should have caused a conflict
    its a total fresh install…
    this is very concerning to me as a start to this supposed great theme?????
    I need this resolved asap

    #1428559
    StephenStamp
    Participant

    I purchased the theme, did a fresh install of wordpress on my hosting. downloaded the theme installation files
    then loaded the enfold folder and then the website crashed and i got a critical error.

    There has been a critical error on this website.

    Learn more about troubleshooting WordPress.

    I cannot get back into the site….
    there are no additional plugins that should have caused a conflict
    its a total fresh install…
    this is very concerning to me as a start to this supposed great theme?????
    I need this resolved asap

    #1428552

    In reply to: doppeltes burger menu

    Hey ausgesonnen,

    Thank you for the inquiry.

    The mobile menu gets duplicated because of this css code.

    @media only screen and (max-width: 1000px) {
        .av-burger-menu-main.menu-item-avia-special {
            display: block !important;
        }
    }
    

    Do you remember adding it somewhere? You may need to remove the modification, then toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.

    Best regards,
    Ismael

    #1428549

    Hi,

    The modification above should adjust the color of the burger menu items to white. If you need to change the color on hover, please add this css code.

    .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li a:hover {
        color: gold;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Best regards,
    Ismael

    #1428548

    Hi,

    Thank you for the screenshot.

    You can adjust the hover style of the burger menu items in the Enfold > Advanced Styling panel. Look for the Menu Links in overlay/slideout element in the dropdown and adjust the Font Hover Color field accordingly.

    You can also use this css code.

    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul li a:hover {
        color: #ffffff;
    }
    

    Best regards,
    Ismael

    #1428546

    In reply to: Fonts

    Hey Tim,

    Thank you for the inquiry.

    It’s possible that the font is not loading immediately due to the settings in the Enfold > Privacy & Cookies panel. You can set the Cookie Handling > Default Cookie Behavior settings to the first or second option if you want to allow external services or resources to load even without users accepting the privacy cookies first.

    Best regards,
    Ismael

    #1428541

    Hi J-Gambill,

    1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
    2. It should generate a new folder, open it and look for the enfold folder
    3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    4. Use enfold.zip file to upload to the theme.

    Best regards,
    Nikko

    #1428535

    In reply to: Author

    Hi,
    That is strange… I see that you are using a plugin called Co-Authors Plus with the description:
    Allows multiple authors to be assigned to a post.
    Enfold_Support_4179.jpeg
    This plugin is what allows you to add co-authors to posts.
    We are limited to support for third-party plugins, but I tested this plugin on my test site and tested a code snippet that the plugin recommends to show all authors:

    add_filter( 'the_author_posts_link', function( $markup ) {
    	if ( ! function_exists( 'coauthors_posts_links' ) ) {
    		return $markup;
    	}
    
    	ob_start();
    	coauthors_posts_links();
    	$output = ob_get_contents();
    	ob_end_clean();
    	return $output;
    } );

    And it changed the default single author name and link to show the co-author also:
    Enfold_Support_4181.jpeg
    If you are not going to use a child theme on your site, I recommend the WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets for your customizations.
    Try adding the above snippet in a new WP Code snippet and ensure that you use the PHP Snippet option:
    Enfold_Support_4183.jpeg

    Best regards,
    Mike

    #1428534

    Topic: Coming Soon Page

    in forum Enfold

    The enfold Coming soon page has a bug in it, or its bigger/deeper than I know.

    This is a Brand new installation, No changes, no template coding, nothing. JUST getting started.
    All I did is change the txt on the special heading block. “Let me know when the site is done” and the page gets all wonky with a a

    [/av_one_half]

    appearing on the page.

    It seems to be something related to that bock. It does not matter which style I choose .. If I remove it completely, then the page comes back to normal.. There is an issue with THAT special heading Block

    #1428532

    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

    #1428524

    Thank you. I suspected that was (at least part of) the problem. I just purchased a new version of ENFOLD and when I try to install it on this site, I still get an error message (below). Can you help me? JACKIE GAMBILL

    Installing theme from uploaded file: themeforest-tLyxAgOg-enfold-responsive-multipurpose-theme.zip
    You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode

    Unpacking the package…

    Installing the theme…

    The package could not be installed. The theme is missing the style.css stylesheet.

    Theme installation failed.

    #1428518

    Hey Martin,

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

    td {
        font-size: 16px;
    }

    Best regards,
    Rikard

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    #top .fullsize .template-blog .post .entry-content-wrapper {
        text-align: left;
        font-size: 16px;
    }

    Best regards,
    Rikard

    #1428511

    Topic: A memory size problem

    in forum Enfold
    Grobi
    Participant

    Hello,
    It’s still fun to work with enfold.

    Unfortunately, this time I have a problem without knowing how to solve it.
    After installation, WordPress appears to be working properly. After installing enfold, the second I get enfold running I get a fatal error.
    The error is memory size exhausted.
    I’m using PHP 8.2 and a new Enfold version. I don’t have any plugins turned on – but the error is still there.

    Is this a server problem or can I solve it with enfold-intern? Can you possibly give me a tip?
    Best regards
    Grobi

    #1428497

    Hey Monika,

    You can enable debug mode under Enfold->Layout Builder->Show advanced options->Debug mode, after that you will see the shortcodes under your regular design layout. You can simply copy all the shortcodes to a new page on your new site.

    Best regards,
    Rikard

    #1428494
    Henningcircle
    Participant

    Dear Enfold-people,

    I am trying to have a text block (from the 2nd color-section) rising half over this page’s top color-section (Hero image): https://www.bluerootstimber.nl/home/practice-areas/

    The text in the right column (Donec pede justo) is right to the side of the column. Where I did manage to have some padding/margin with the Special Header, I cannot find how to get it in line with the text block.
    All should look a bit like ‘Lumber & Mill work’ on this page: https://tropicalforestproducts.com/lumber-millwork/

    Also as it is now, I can not select the text in the 2nd column, it behaves like an image ‘drag and drop’.

    Please help!

    Best wishes,
    Henning

    #1428492

    Hi,
    Please see our documentation for: How to add Custom Social Icons to Enfold options.

    Best regards,
    Mike

    #1428489
    Monika
    Participant

    Hey there,

    I’ve built two websites for my Business with enfold, and now I realize, I need a lot of Pages from one Site in the other WordPress Site.

    To build them completely new, will take weeks.

    Is there an other possibility to import Pages? It’s ok for me to fix some Design Problems, but I would like to import a few Pages with all the avia Builder-Elements on in. Then In the next step I would check everything..

    Cheers
    Monika

    #1428488
    GorillaBeats
    Participant

    Dear support,
    I’m using Enfold and I have set the favicon image several times from Theme Options > Favicon, but it never shows up on the browsers tabs.
    can you help me understand why?

    thanks

    #1428487

    In reply to: symbollist mobile

    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

    #1428481

    Hey Anton,

    Thank you for the inquiry.

    Adding this css code should remove the space below the video.

    .su-youtube.su-u-responsive-media-yes {
        margin-bottom: 0;
    }

    The double button on the official site is not available by default, but here is the markup in case you want to use it on your own site.

    HTML:

    
    <div class="avia-double-buttons "><a href="https://site.at/themes/enfold-overview/" class="avia-double-button avia-double-button-1">View Demos</a><span class="button_or">or</span><a href="https://1.site.market/" class="avia-double-button avia-double-button-2">Purchase Now</a></div>
    

    CSS:

    
    #top .avia-double-button {
        letter-spacing: 1px;
        padding: 13px 20px;
        text-transform: uppercase;
        font-size: 13px;
        text-align: center;
        min-width: 175px;
        display: inline-block;
        transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        border: 4px solid #fff;
        text-decoration: none;
    }
    
    #top div .main_color .avia-double-button {
        border-color: #e1e1e1;
        background: #fcfcfc;
        color: #222222;
    }
    
    #top #wrap_all .avia-slide-wrap .avia-double-button, #top #wrap_all .avia-hover-fx .avia-double-button {
        background: #000;
        background: rgba(0,0,0,0.2);
        border-color: #fff;
        color: #fff;
        padding-bottom: 11px;
        text-decoration: none;
    }
    
    #top .avia-double-button-2 {
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        border-left: none;
    }
    
    #top .avia-double-button-1 {
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        border-right-width: 2px;
    }
    
    .avia-double-buttons {
        margin-top: 30px;
        text-align: center;
        position: relative;
    }
    
    #top .button_or {
        position: absolute;
        display: block;
        height: 26px;
        line-height: 21px;
        width: 26px;
        text-align: center;
        top: 50%;
        left: 50%;
        margin: -13px 0 0 -14px;
        background: #fff;
        color: #666;
        border-radius: 100px;
        font-size: 10px;
        border: 2px solid #FFF;
        font-style: italic;
        font-weight: 600;
        z-index: 11;
    }
    

    Best regards,
    Ismael

Viewing 30 results - 11,161 through 11,190 (of 244,520 total)