Viewing 30 results - 301 through 330 (of 243,744 total)
  • Author
    Search Results
  • #1491107

    btw.: https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Layout/avf_post_nav_settings.php

    with this snippet you do not even need to set the enfold options on post-navigation.
    You can set with that filter even to loop:

    function my_avf_post_nav_settings( array $settings ){
      if( true === $settings['is_hierarchical'] ){
        $settings['skip_output'] = true;
        return $settings;
      } 
      // the post-types inside the array are allowed to have post-navigation
      if( ! in_array( $settings['type'], array( 'post', 'portfolio' ) ) ){ 
        $settings['skip_output'] = true;
        return $settings;
      }
      $settings['loop_post_nav'] = true;
      $settings['same_category'] = true;
      $settings['is_fullwidth'] = false;
      $settings['skip_output'] = false; 
      return $settings;
    }
    add_filter( 'avf_post_nav_settings', 'my_avf_post_nav_settings', 10, 1 );

    btw. if you set this (is_hierarchical) condition to false – then even pages will have post-navigation

    Hi,

    Great, I’m glad to hear that everything is working as it should. 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

    Hi,

    Thank you for the inquiry.

    1.) You can open threads using the form on this page: https://kriesi.at/support/forum/enfold/#new-post

    2.) The default image style is set globally by the theme. If you need to adjust a specific image, you can do so using the Image element in the builder or by applying custom css in the Quick CSS field.

    3.) It’s possible that the sidebar is enabled for that particular page. Make sure the page is set to full width by adjusting Layout > Sidebar Settings to “No Sidebar”.

    If you have any other questions, please open a separate thread for each inquiry. Longer threads can get hard to follow, tend to go off topic and make it tricky for other users to find solutions. Keeping each thread focused on its original question helps us track what’s been resolved and makes it easier for everyone to find answers to similar issues.

    To learn more about the theme, please check out the documentation: https://kriesi.at/documentation/enfold/

    Thank you for your understanding.

    Best regards,
    Ismael

    #1491078

    hallo @mofix – you can see here an updated snippet that will pull out the enfold options to determine the content width.

    https://kriesi.at/support/topic/non-fullwidth-portfolio-or-grid-row-gets-colored-sides/#post-1491061

    #1491070
    mistermagoo8691
    Participant

    Hi folks, I am afraid your example on the documentation for a fullwidth submenu with icons is not up to date (or I cannot understand it).

    Fullwidth Submenu documentation

    I already have a fullwidth submenu on my page. I’d like to replace the text with an icon.
    The section “Add Icons to Menu Item” is talking about an icon to a normal menu, not to a Fullwidth submenu.

    I’ve found a solution: I replace the “content” of each text element on the fullwidth submenu with this HTML: <span class=”heading-char avia-iconfont avia-font-entypo-fontello” data-av_icon=”” data-av_iconfont=”entypo-fontello”></span>

    It works great with the original version of the page (see img 1)
    But when I update the WPML translated version, see what I’ve got (see img 2) :-)

    What can I do?
    THX
    Ciao!
    A.-

    #1491067

    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.

    Thanks @guenni007 for helping out :-)

    Best regards,
    Rikard

    #1491062

    try first this shorter form – maybe that will work for you.
    (do not know if the old filter is still ther avia_ …)
    there are more complex snippets – but in almost all installations this will work:

    function enfold_customization_postnav($settings){
      $settings['skip_output'] = false;
      $settings['same_category'] = true;
      return $settings;
    }
    add_filter('avf_post_nav_settings','enfold_customization_postnav', 10, 1);

    edit: here is one with more options:

    function my_avf_post_nav_settings( array $settings ){
      if( true === $settings['is_hierarchical'] ){
        $settings['skip_output'] = true;
        return $settings;
      } 
      if( ! in_array( $settings['type'], array( 'post', 'portfolio' ) ) ){
        $settings['skip_output'] = true;
        return $settings;
      }
      $settings['same_category'] = true;
      $settings['is_fullwidth'] = false;
      $settings['skip_output'] = false; 
      return $settings;
    }
    add_filter( 'avf_post_nav_settings', 'my_avf_post_nav_settings', 10, 1 );
    #1491058

    In reply to: Fixed Header?

    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

    #1491055

    In reply to: Does not offer updates

    Hey FJakub,

    Did you follow this? https://kriesi.at/documentation/enfold/theme-registration/

    If it’s still not working after that, then please try using the Envato Markets plugin: https://envato.com/market-plugin/

    Best regards,
    Rikard

    #1491052

    Hey allespalettibystefan,

    It’s unfortunately unlikely that we will find the time to make the Enfold layout builder compatible with the plugin you are using. If the plugin is compatible with the default WordPress editor, then I would suggest that you use those. Note that you can still add Enfold elements using Magic Wand button in the classic editor.

    Best regards,
    Rikard

    #1491043

    Are you talking about the tooltips displayed by the browser itself when hovering over the image?
    They appear automatically if the image has a title attribute.

    However, if you have a gallery that displays images in a lightbox, this title attribute is also displayed as text in the bottom bar of the lightbox. Completely removing the title tag would therefore be suboptimal. For galleries, you can switch to displaying the description or caption instead, but this is not possible for all Enfold elements.
    So if it only affects the galleries on your site, you could do that, but you would then have to update the description of the images, for example.

    There is a snippet that, when placed in the child theme’s functions.php, temporarily removes this title tag on hover but adds it back when clicked:

    function temporary_removal_title_tags(){
    ?>
    <script>
      window.onload = function() {
        var elementsWithTitle = document.querySelectorAll('a, img, *[title]');
        for (var i = 0; i < elementsWithTitle.length; i++) {
            var element = elementsWithTitle[i];
    
            element.setAttribute("data-original-title", element.title);
    
            element.addEventListener("mouseenter", function() {
                this.title = ""; 
            });
    
            element.addEventListener("mouseleave", function() {
                this.title = this.getAttribute("data-original-title"); 
            });
    
            element.addEventListener("mousedown", function() {
                this.title = this.getAttribute("data-original-title");
            });
        }
      };
    </script>
    <?php
    }
    add_action('wp_footer', 'temporary_removal_title_tags');

    here you see that this script is working for all anchor elements or images – or all elements that have a title-tag

    #1491028

    In reply to: Enlarge logo

    maybe that option for logo and Navigation on Enfold – Header : “Let Logo And Menu Position Adapt To Browser Window” is a possibility.
    Because your navigation is overlapping your logo on smaller screens.

    #1491023

    In reply to: Enlarge logo

    on your landing page (no enfold page ) or on the other pages?
    (ok www leads to a different landing page )

    First hint – your logo got quite a lot of white space around the green logo inside.
    So unless the corporate design specifies that there should be so much white space around the actual logo, I would change that first.

    #1491020

    Hi,

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

    #1491017

    In reply to: Google maps height

    Hi,

    Great, I’m glad that Ismael could help you out. 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

    #1491014

    Hello together,
    i use the Enfold Theme and the Heroic KB Plugin for our company intern knowledge page.

    my problem is, that Enfold and the Plugin Heroic makes a lot of bugs in my System if i want to create a articel with enfold builder
    in the plugin. can you help me what i can do?

    I have the bugs also if i want to create an blog entry and i don’t use the Plugin Heroic to create entries.
    I also use the classic editor to build my content and i have disabled gutenberg.

    i hope you can help me
    thanks
    Stefan

    #1491011

    In reply to: change cookie style

    Hey diefleischerei,

    Please have a look under Enfold->Privacy and Cookies first of all. Also please check the available options for styling under Enfold->Advanced Styling.

    Best regards,
    Rikard

    #1491010

    Hey diefleischerei,

    All the header settings can be found under Enfold->Header, and in the Layout menu while editing each page. Customisations outside the available settings would unfortunately be out of scope of theme support.

    Best regards,
    Rikard

    #1491008

    In reply to: Enfold Theme

    Hey Justin,

    Thanks for reaching out to us. Enfold is not compatible with any frontend layout builders, but some do work with the theme. I would recommend that you use the Enfold layout builder if you want to continue using the theme though.

    Adding pages, editing pages and adding a shop can all be done in the WordPress menu. It’s not theme specific functionality.

    Best regards,
    Rikard

    #1491007

    Topic: popup on landingpage

    in forum Enfold
    diefleischerei
    Participant

    Can you recommend a popup plugin or something similar that would allow me to display information to first-time visitors to the website – information they have to click away to continue browsing? Do you have a plugin you could recommend, or can I easily implement this directly with Enfold? Thanks, Alex

    #1491004
    Justin Mann
    Guest

    Hi there,
    Recently purchased this theme from you. I completely understand that you can’t support customisation issues but if you could just bear with me…..
    I was struggling with editing another site via Elementor, bought your theme not realising it wasn’t supposed to be edited with this app.
    I understand there is a built in editor but cannot for the life of me work out how to edit, add pages, shop and so on. I have a good understanding of computers, websites etc. but just cannot get my head around this.
    Are you able to recommend a front page editor that could make my life easier please?
    I appreciate any advice you can offer with thanks.
    Justin N. Mann

    #1491003

    In reply to: Toggel + sign

    Hey limedrop,

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

    
    .toggle_icon {
      left: 24px;
    }
    
    .togglecontainer {
      border-radius: 5px;
    }

    Best regards,
    Rikard

    #1491000

    Hi,

    Thanks for letting us know. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1490996
    orianos
    Participant

    Hi,
    Just to let you know that on your demo site
    https://kriesi.at/themes/enfold-shop/shop/
    if a user clicks on one of the WooCommerce filters, they receive the following error:
    >There has been a critical error on this website.

    Example:
    https://kriesi.at/themes/enfold-shop/shop/?filter_color=green

    I didn’t know who to report it to, so I’m telling you here 😬

    Best regards, and thaks for Enfold theme.
    Oriano

    #1490984

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

    Best regards,
    Mike

    #1490982

    css depends on the place where you show it – f.e. in the top header:

    #top #wrap_all .av-social-link-bluesky:hover a {
        color: #fff;
        background-color: #1185fe;
    }
    #top #wrap_all .av-social-link-bluesky a svg * {
        fill: var(--enfold-header_replacement_menu_color);
    }
    #top #wrap_all .av-social-link-bluesky a:hover svg * {
        fill: #FFF
    }
    #1490976

    now – thanks for the admin permissions.

    i did what i mentioned above: for the thumbs in grid i take the portfolio size (495×400)
    using that snippet to have original images in the ajax preview image ( on imagify you have choosen to have no compression – so original image might be of less file-size than the recalculated large image-size )
    and disabeling the enfold option to use lazyloading ( maybe the option of wp-rocket is better )

    but with these changings – you can see a much better loading performance.

    in additon – i decided to show on lightbox the full image ( because your large recalculated images are much bigger in file-size than the full one )
    and to have no scroll on background – on opend lightbox.

    #1490970

    you know that and how you can add your own social media icons to the enfold system.

    #1490966

    Topic: Fixed Header?

    in forum Enfold
    Bikul
    Participant

    Hello.
    in your demo

    there is a header which appears only if you scroll down. How to deactivate this so that the header is always visible?
    Thanks for Feedback
    Bernd

    #1490964

    can we influence the image shown in the ajax preview ( that img insided avia-gallery-big ) – it seems to use the recalculated “large” image.
    But as you know this might be bigger in file size than the original uploaded image!
    I can not find a filter to adjust it.

    or could we influence it by
    $params['preview_size'] = apply_filters( 'avf_ajax_preview_image_size', 'gallery' );

    i can find this in portfolio.php

    //	create array with responsive info for lightbox
    	$img = Av_Responsive_Images()->responsive_image_src( $attachment->ID, 'large' );

    bring it to full will often reduce file-size – as you know that Enfold standard compression leads to bigger file-sizes on large image.

    ok – i found the place to change in gallery.php (line 757)
    $prev = wp_get_attachment_image_src( $attachment->ID, $preview_size );

    if we would use :
    $prev = wp_get_attachment_image_src( $attachment->ID, 'full' );

    looking to his page f.e.:
    the krebs-treppen-systeme-gelaender-system30-3.jpg is 121kb
    but krebs-treppen-systeme-gelaender-system30-3-1030×839.jpg is 268kb

    the whole page got over 112MB images – and could be reduced to a half size.

Viewing 30 results - 301 through 330 (of 243,744 total)