Forum Replies Created

Viewing 30 posts - 91 through 120 (of 11,862 total)
  • Author
    Posts
  • in reply to: Product slider only showing Capital text #1491144

    sadly – if there is the link – i can not see private content (as participant)
    so you had to find the selector – and the declaration is then : text-transform: none;

    f.e.:

    #top .template-page .entry-content-wrapper h1, 
    #top .template-page .entry-content-wrapper h2 {
      text-transform: none;
    }

    or

    #top .products .product h2,
    #top .products .product h3,
    #top .products .product h4,
    #top .products .product h5,
    #top .products .product h6,
    #top h2.woocommerce-loop-product__title {
      text-transform: none;
    }
    in reply to: Modify filter to alter srcset #1491141

    a function like this to remove the image-sizes enfold likes to have:

    function remove_enfold_image_sizes() {
    // do NOT remove widget size, is used in backend portfolio items!
    // remove_image_size('widget');
      remove_image_size('square');
      remove_image_size('featured');
      remove_image_size('featured_large');
      remove_image_size('portfolio');
      remove_image_size('portfolio_small');
      remove_image_size('gallery');
      remove_image_size('magazine');
      remove_image_size('masonry');
      remove_image_size('entry_without_sidebar');
      remove_image_size('entry_with_sidebar');
      remove_image_size('shop_thumbnail');
      remove_image_size('shop_catalog');
      remove_image_size('shop_single'); 
      remove_image_size('shop_gallery_thumbnail');
    }
    add_action('init', 'remove_enfold_image_sizes');

    i guess does only influence the calculation of newly uploaded images.
    The former uploads are not influenced on that. So these sizes are still in your uploads folder. (have a look by ftp inspection if this is the fact)
    the use of Force Regenerate Thumbnails – removes those already calculated image-sizes that are not registered.

    in reply to: Modify filter to alter srcset #1491135

    Did you try to disable temporarly on performance the option : Responsive Images
    then refresh all cachings and reenable the option again.
    Maybe that will do the job.

    Next: have you regenerated the thumbnails – best is Force Regenerate Thumbnails plugin for that

    in reply to: Next/Previous Post within same Category #1491130

    btw: where does the p-tag come from : p.ondertitel
    See DOM:

    in reply to: Next/Previous Post within same Category #1491129

    and you have another post inside category: oorlogsslachtoffers ?
    i guess not:

    https://kunst-en-verhalen.rhijnhof.nl/category/oorlogsslachtoffers

    what makes me wonder is that if there is only one post inside that category – there should be no post-nav at all.

    you see – here it is working with same category:
    https://kunst-en-verhalen.rhijnhof.nl/pieta/

    in reply to: Boxed content in grid row with fullwidth background #1491127

    i’m participant as you are – so i do not see any private content area.

    so you have to wait for mods here

    in reply to: Hamburger menu icon left, logo centered, search icon right #1491126

    you have removed the search icon ?

    in reply to: Disable tooltip on gallery #1491124
    #top .avia-tooltip.avia-tt {
      display: none !important;
    }
    in reply to: Hamburger menu icon left, logo centered, search icon right #1491118

    try:

    @media only screen and (min-width:768px) {
      #top div .logo {
        z-index: 101 !important;
      }
      #top .main_menu, 
      #top .avia-menu {
        width: 100%;
      }
      #avia-menu #menu-item-search {
        position: absolute;
        right: 0;
        left: auto;
      }
    }
    in reply to: Boxed content in grid row with fullwidth background #1491115

    i’m participant as you are – so i do not see any private content area.

    on general layout – Maximum Container Width – this is the value i pull out in the snippet for the setting

    $responsive_size = avia_get_option('responsive_size');
    

    If you have there a 100% width set – then it wil be synchronized in the snippet too.
    If that is the case – you have to use the other snippet with the “hard-coded” width and replace th 1310px with your 1400px now:

    function grid_layout_notfull(){
    ?>
    <script>
    (function($){
    	$('.av-layout-grid-container.grid-notfull' ).each(function() {
    		var notfullID = $(this).attr('id');
    		$(this).hasClass('main_color') ? $(this).wrap('<div class="main_color notfullsize '+notfullID+'"></div>') : '';
    		$(this).hasClass('alternate_color') ? $(this).wrap( '<div class="alternate_color notfullsize '+notfullID+'"></div>') : '';
    	});
    	$('.notfullsize').css({"clear": "both", "width": "100%" , "float": "left" , "position": "static" , "min-height": "100px" });
    	$('.grid-notfull').css({"max-width": "1400px", "margin": "0 auto" , "padding": "0 50px"});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'grid_layout_notfull');
    in reply to: Next/Previous Post within same Category #1491112

    May I see the page in question?

    you are not talking about a custom post type?
    if so include this (f.e.: event or tribe_events ) post-type to the array

    in reply to: Next/Previous Post within same Category #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

    in reply to: Blog Custom Layout #1491101

    you can start with it by using : “single Author small preview pic (…)”
    (maybe from big preview pic it will work too)

    and then – see link test page: https://webers-testseite.de/blog-2/
    scroll down for css rules

    in reply to: Klick auf Button öffnet Formular in Modal/Lightbox #1491097

    place your contact form inside a 1/1 container.
    give a custom ID to that 1/1 container e.g. my-contactform
    give a custom class to that 1/1 container mfp-hide
    place a button on your site – with manual link : #my-contactform – and custom class: open-popup-link
    (because custom class of the button goes to its wrapper the selector .open-popup-link a will work.

    btw. in the meantime you do not need this callback .
    if you place inside your child-theme functions.php :

    add_filter( 'avf_default_lightbox_no_scroll', '__return_true' );
    
    in reply to: Boxed content in grid row with fullwidth background #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

    in reply to: Non-fullwidth Portfolio or Grid Row gets colored sides #1491064

    You’re talking about the grid row element, right?

    Edit: sadly you did not post a link to your page – but your screenshot is clear enough – i found your site now.
    Because it looks exactly the same when you set a grid-row by css to to be not full-width, I thought you had used this element.

    ____________

    So – why don’t you put the portfolio grid inside a 1/1 Container
    The Color-Section can have the one background-color – and the 1/1 Container a different one.

    if you then do not want on top and bottom of the 1/1 Container the background-color of the Section just remove padding-top and padding-bottom of 50px.

    in reply to: Next/Previous Post within same Category #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 );
    in reply to: Non-fullwidth Portfolio or Grid Row gets colored sides #1491061

    a pure css solution is perhaps not possible.

    i have my snippet for child-theme functions.php :

    function grid_layout_notfull(){
    $responsive_size = avia_get_option('responsive_size');
    ?>
    <script>
    (function($){
      $('.av-layout-grid-container.grid-notfull' ).each(function() {
        var notfullID = $(this).attr('id');
        $(this).hasClass('main_color') ? $(this).wrap('<div class="main_color notfullsize '+notfullID+'"></div>') : '';
        $(this).hasClass('alternate_color') ? $(this).wrap( '<div class="alternate_color notfullsize '+notfullID+'"></div>') : '';
      });
      $('.notfullsize').css({"clear": "both", "width": "100%" , "float": "left" , "position": "static" , "min-height": "100px" });
      $('.grid-notfull').css({"max-width": "<?php echo $responsive_size; ?>" , "margin": "0 auto" , "padding": "0 50px"});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'grid_layout_notfull');

    what you had to do: give a custom class to the grid-row element: grid-notfull
    see: https://webers-testseite.de/grid-row-alb/

    the difference between green color-section to following grid-row on my testpage comes from the standard padding of grid-cells of 30px

    PS: the ID of the grid-row element goes to its wrapper as class.

    in reply to: How to Get 3 Columns Together #1491050

    ok – i think you should use not the nextgen gallery images for that – In that case, you would not have taken advantage of the lightbox, which displays an enlarged version of your images. Instead, use the original uploaded files.

    Why not try the Masonry gallery? It offers even more configuration options. – The css code is on my testpage

    in reply to: How to Get 3 Columns Together #1491047

    Assign a custom class to this gallery – and reduce the value for the maximum width – as on blog pages. e.g: 800px

    
    .avia-gallery.your-custom-class {
      max-width: 800px;
      margin: 0 auto;
    }

    you can decide to show on grid a smaller version of your images – and in light-box to show the full image. On masonry-gallery you can set to have different column-counts on responsive case.

    See: https://webers-testseite.de/condonp/

    in reply to: How to Get 3 Columns Together #1491044

    why don’t you use the gallery or masonry gallery element?

    in reply to: Disable tooltip on gallery #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

    in reply to: Home page video – fit to screen #1491042

    did you try out my suggestions? https://kriesi.at/support/topic/video-on-home-page-2/

    and again see your video placed on one of my testpages: https://webers-testseite.de/lara-video/

    the only thing you had to know is the aspect ratio of your video ( in your case 1500:710 ) and this is not 16/9

    in reply to: Align top of text and image in columns #1491037

    this belongs to paragraph margin setting. So maybe it is enogh to only get rid of default margin-top value on first p tag.

    #top p:first-child {
      margin-top: 0 ;
    }
    in reply to: Enlarge logo #1491036

    Filesize is on original jpg small enough – so you can insert the full image. Maybe that is a bit sharper then.

    And maybe you switch earlier to hamburger menu :

    @media only screen and (max-width: 1200px) {
        #top #header .av-main-nav > li.menu-item  {
            display: none!important;
        }
        #top #header .av-burger-menu-main {
            cursor: pointer;
            display: block!important;
        }
    }
    
    in reply to: Enlarge logo #1491028

    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.

    in reply to: Enlarge logo #1491027

    if your graphic designer got a vectorgraphic of it this will be sharper than a png file. He should offer it as svg graphic.
    btw. a png file is usefull if there are transparencies (f.e. the pure green logo without background) so here is a cropped logo as jpg – you can use it for now.

    download it here as zip file: https://webers-testseite.de/First_business_card_5.jpg.zip

    in reply to: Enlarge logo #1491025

    Open that image link in your browser: https://dapoostkapelle.nl/wp-content/uploads/2025/06/First_business_card_5.png

    you then can see the whitespace around it.

    in reply to: Enlarge logo #1491023

    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.

    hm – if so – then it had to be a part of your layerslider – because on my testpage i got an advanced layerslider too on top – but ajax search acts normal.
    https://webers-testseite.de
    or https://webers-testseite.de/advanced-layerslider/

    sorry Typo in link

Viewing 30 posts - 91 through 120 (of 11,862 total)