Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1406794

    Hello.

    For the life of me, I cannot find how to change the size of the featured image that’s being generated on my posts page. Each post (3 of them) are 3 different sizes and I don’t know why. Please help! Thank you.

    • This topic was modified 1 year, 5 months ago by trestange.
    #1406836

    Hi trestange,

    In the layout that you’re using, featured image uses 1210px in width and 423px in height, then crops the excess.
    Here’s how it works (width x height):
    1st image -> original: 473 x 482, resized to: 473 x 423
    2nd image -> original: 758 x 577, resized to: 758 x 423
    3rd image -> original: 1600 x 1054, resized to: 1210 x 423
    The size can be changed however, if we use the default values, then please use featured image that has a width of 1210px or more and height of 423px or more to get consistent result.
    Hope this helps.

    Best regards,
    Nikko

    #1407063
    This reply has been marked as private.
    #1407202

    Hi trestange,

    Unfortunately, I don’t have solution for that as well.
    You can override Icon List functionality however some programming skills are required, here’s our documentation for that: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Nikko

    #1407992
    This reply has been marked as private.
    #1408074

    Hi,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function remove_lightbox_from_iconlist() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      $("a.iconlist_icon").addClass("noLightbox").removeClass("lightbox-added");
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'remove_lightbox_from_iconlist');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1408197

    Thanks Mike! That works great.

    Say, may as well keep asking questions…

    I’m hoping to have the siblings of a page’s parent display in a dropdown menu that will take you to that page upon selection. Does Enfold have that functionality?

    #1408242

    Hi,
    Glad to hear this helped, I don’t understand your next question, please open a new thread and explain further perhaps with an example of a mockup.
    Please note that we ask that each thread stays “on topic” and different threads are used for multiple questions, this helps future users find solutions easier and multiple Moderators assist you with a solution, thank you for understanding.

    Best regards,
    Mike

    #1408309
    This reply has been marked as private.
    #1408317

    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

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Random Thumbnail/Featured Image Generation Size on Posts page.’ is closed to new replies.