Viewing 30 results - 25,261 through 25,290 (of 244,557 total)
  • Author
    Search Results
  • #1355204

    This is the old story – often discussed here on board. On uploading images to the media library – the images are uncompressed ( jpgs do have that indeed – a compression ratio ) and then the new file-sizes generated by Enfold are calculated on that uncompressed source. Because Enfold code does not compress these generated files – the file-size is for the bigger images (1500px x 630px etc. ) often higher than the uploaded optimized jpgs.

    Now what can we do against this. – We can change that behavior on Enfold by a child-theme functions.php snippet:

    add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1);
    add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1);
    function avf_set_quality_mod($quality) { $quality = 55; return $quality;}

    Unfortunately, this snippet does not affect existing images in the media library. Here you would have to recalculate the thumbnails all over again. There are some plug-ins for this. I use the one provided by shortpixel. : Link

    svgs – and i guess pngs will be skipped.

    After recalculation you can remove the plugin. The snippet above will then compress each uploaded new image.

    PS: Sorry – i did not follow Yigits link – so it only differs in the amount of compression. That is up to you what you need. If you are a photographer with f.e. fine color – gradients ( like skin tones ) or sharp contrasts you had to choose a less compression level.

    see here an older post of mine with the plugin illustration: https://kriesi.at/support/topic/media-upload-and-enfolds-thumbnail-sizes/#post-1271808
    in addition it gives you a code to hamper generating of all enfold image_sizes. But read comments on the code to understand that it is not advisable to suppress all image_sizes.

    #1355203

    In reply to: Enfold Showcase

    I’ve been using the Enfold theme for a number of years and my main project is https://www.westend.com

    #1355193

    Hello Yigit,
    Sorry, but i didnt get it.
    Problem one:
    Filesize of small version is bigger than the original.
    You gave me the solution described in Ismaels post
    (Although i dont understand how a smaller version can have bigger filesize than the big one – but OK. )

    Problem two:
    Although i defined in my functions.php that the modal window / lightbox should only load the original, precompressed file Enfold seems to generate at least 4 versions.

    Can we, for a better understanding, walk through the single questions?
    1: Is the code i have in my functions.php (see above) correct?
    2: Why does Enfold still generate multiple versions?
    3: Is this conclusion correct?: “The more responsiveness, the more pageload“?

    Your advices:
    1: There are three “checkboxes” (Which arent in fact checkboxes).
    Which one do i have to disable?
    2: When a “checkbox” is already blue and the added text says “Check to ENable theme support for responsive images ” it is very confusing.
    (Unfortunately this kind of misleading translation is seen often in your theme)
    Please tell me which “checkbox” i need to set and if i need to set it on “blue” or “grey” and please let me know what happens when i do.
    3: Ismaels Post did not answer my second question:
    How do i fix this for all the 4160 images i already uploaded?”
    What will happen with all these unwanted image versions when i disable “Responsive images”?
    Will they disappear from my server by disabling?
    If not – how do i get them removed from the server? I dont want my webspace bloat by unused files.

    Kind regards
    Elvira

    Hey Angelo,
    Please see this thread for the temp solution until the next update.
    If you don’t want to edit the theme files, just uncheck Use first slides caption as permanent caption option and the buttons will work correctly.

    Best regards,
    Mike

    #1355189
    kpinsdorf
    Participant

    Dear support team,

    unfortunately I discovered another unsolvable issue, that I somehow can’t figure out on my own:

    I set up my main menu and I also set up a footer. I wanted the privacy and terms only to be visible in the footer, however, not in the main menu.
    I checked under Appearance-menues- and privacy and terms are only categorised in the footer menue, and not in the main menu. However they still appear at the top of the page (in German “Datenschutz” and “Impressum”). Additionally, they appear in the footer section, too.

    Can anybody help me, where I do not get these problems right?
    Thank you so much in advance

    #1355186

    Hi,
    Glad to hear that you have this sorted out, 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

    #1355184

    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

    #1355179
    This reply has been marked as private.
    #1355178

    Hi!

    Please go to Enfold theme options > Performance and disable “Responsive Images” to remove srcset from HTML then please refer to Ismael’s post here – https://kriesi.at/support/topic/image-file-sizes-2/#post-1325856.

    Regards,
    Yigit

    #1355175
    This reply has been marked as private.
    #1355170

    Hi Tilman,

    We have answered this post on another thread, but will re-post the same answer we have responded on the other thread:

    is there in the meanwihle another – enfold integrated – solution to filter masonry galleries, i.e. visitor can select wich group of pics are shown?
    At the moment there’s none, however, the feature is on the list of things that will be added in Enfold.

    Or do you still recommend plugins as the one mentioned above?
    I haven’t tested those plugins but you can try to check some of the free ones available in the WordPress Plugin repository.

    Best regards,
    Nikko

    #1355168

    Hi oestersund,

    is there in the meanwihle another – enfold integrated – solution to filter masonry galleries, i.e. visitor can select wich group of pics are shown?
    At the moment there’s none, however, the feature is on the list of things that will be added in Enfold.

    Or do you still recommend plugins as the one mentioned above?
    I haven’t tested those plugins but you can try to check some of the free ones available in the WordPress Plugin repository.

    Best regards,
    Nikko

    #1355165

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    you can do that very similar to the footer – via the pseudo-container : before

    i give a custom-class to the column it belongs to: background-outside
    thats what the effect will be. And because that is impossible we transfer the background-image to its pseudo-container:

    Setting is that you put in that container a background-image ( your grass – in your case now a white silhouette of grass )
    because we do not want to see on page generation a background-image on the column itself we set it to size : zero

    .flex_column.background-outside {
      background-size: 0px !important;
    }
    
    .flex_column.background-outside::before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      background-image: inherit !important;
      background-repeat: repeat-x;
      background-position: top left;
      visibility: visible;
      top: -60px;
      background-size: auto 80px;
    }

    the shifting of 60px to top ( -60px ) had to be less than the height of the background-image ( here : 80px )

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

    ps the next examples are made with a custom divider – the first on the column and the last on the color-section before
    and because the dividers always face inwards, it was not trivial to orient them outwards in the case of the column.

    #1355161

    Hi Peter,

    You’re welcome. :)
    We’re happy that we could help.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1355159

    Hi Elvira,

    We apologize for the inconvenience but we’re glad that the issue has been resolved.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    fkm
    Participant

    Hi Enfold team,

    I´m using the Ajax portfolio preview for my site and I´d like to increase the pixel resolution of the images at the image lists.
    The proportions of the images are the same as the original images, but their quality/resolution seems to be reduced.

    For some portfolio entries I´m using the slider show (Ajax preview) and here the proportions and the resolution seem to correspond to the original image after adding the following entry (which I found on the Enfold forum) to the funktions.php:

    add_action( ‘avf_portfolio_preview_template_params’, ‘avf_portfolio_preview_template_params_mod’, 10, 2 );
    function avf_portfolio_preview_template_params_mod($params, $entry) {
    if($params[‘method’] == ‘slideshow’) {
    $params[‘preview_size’] = ‘no scaling’;
    }

    if($params[‘method’] == ‘gallery’) {
    $params[‘preview_size’] = ‘no scaling’;
    }
    return $params;
    }

    Is there a similarly way to also increase the quality of the images in the image lists?

    Thank you very much in advance.

    Best regards,
    fkm

    #1355148

    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

    #1355145

    Hi,

    Thanks for that. It starts working as it should when I turn off file compression under Enfold->Performance. I’m not sure why it’s not working when that is turned on, but it might be due to caching. Could you try turning it on again in a few days time please?

    Best regards,
    Rikard

    #1355138
    oestersund
    Participant

    Dear Enfold Team,
    is there in the meanwihle another – enfold integrated – solution to filter masonry galleries, i.e. visitor can select which group of pics are shown? Or do you still recommend plugins as the one mentioned here: https://kriesi.at/support/topic/filters-for-mason-gallery-grid/

    Thx a lot & best regards Tilman

    #1355136

    Dear Enfold Team,
    is there in the meanwihle another – enfold integrated – solution to filter masonry galleries, i.e. visitor can select wich group of pics are shown? Or do you still recommend plugins as the one mentioned above?

    Thx a lot & best regards Tilman

    #1355135

    I just installed Enfold version 5 on my websites. In the release notes I read something about swipe options:

    “feature: added swipe to all devices supporting touch screens (not only to mobile devices)”

    Now, does that mean it’s possible to use swipe for photos in the lightbox now? If yes, how to enable that option?

    Thanks :)
    Alwin

    #1355131

    Your button texts are not even displayed on the Safari desktop! – But when I try to reproduce the situation – my button text is displayed on the Safari desktop. So it must be a problem with one of your settings.

    Try this in your quick css if that solves the problem :

    try this first: ( maybe an !important is necessary )

    .responsive #top .avia-button .avia_button_icon, 
    .responsive #top .avia-button .avia_iconbox_title {
        display: inline-block;
        vertical-align: bottom;
    }
    

    By the way – the reason why the text in the buttons is not well placed: the font gothambook is the source for this.
    and second: maybe your are satisfied with Montserrat – it is preinstalled on Enfold and looks very similar to Gotham !

    #1355124

    In reply to: Facebook icon color

    Hi jormen,

    It’s predefined so the only way to change it is via CSS code in Enfold > General Styling > Quick CSS.
    Add this code inside Quick CSS and just change the color and background color:

    #top #wrap_all .av-social-link-facebook:hover a,
    #top #wrap_all .av-social-link-facebook a:focus{
    	color: #fff;
    	background-color: #37589b;
    }

    Hope it helps.

    Best regards,
    Nikko

    Hi kisrael,

    We’re happy to hear that :)
    Thanks for using Enfold and have a great day!


    @Steve
    , thanks for helping out :)

    Best regards,
    Nikko

    #1355121

    Hi Ronaldo,

    Please try to add this CSS code in Enfold > General Styling:

    @media only screen and (max-width:767px) {
      #top #wrap_all .avia-button.avia-color-white {
        color: #095bad;
      }
    }

    Best regards,
    Nikko

    #1355117

    Hi Peter,

    Please add this code in your child theme’s functions.php file:

    add_filter("avf_alb_lightbox_image_size", function($size, $context) {
        if($context = "avia_masonry") {
            $size = "full";
        }
        return $size;
    }, 10, 2);

    If you are not using a child theme, then you can download and find instructions here: https://kriesi.at/documentation/enfold/child-theme/
    Hope this helps.

    Best regards,
    Nikko

    #1355108

    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

    #1355106

    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

    #1355086

    In reply to: Two Questions

    No, I am most definitely using Enfold. I started with JupiterX. I was a great fan of Jupiter 6 but REALLY hate Elementor so I deleted Jupiter and all of its components from the site, bought another copy of Enfold and redesigned the pages from blanks.

Viewing 30 results - 25,261 through 25,290 (of 244,557 total)