Viewing 30 results - 2,941 through 2,970 (of 10,097 total)
  • Author
    Search Results
  • christiemade
    Participant

    We are trying to get some shortcodes that will display a youtube playlist with clickable thumbnails. We’ve tried https://www.wonderplugin.com/ and https://wordpress.org/plugins/youtube-embed-plus/
    Both work great for what we need, but just enabling the plugin breaks the YouTube videos we’re using in Enfold, specifically the Fullwidth Easy Slider which has YouTube videos as some of the slides. They just go black when the plugin is enabled.
    Is there something we can modify in enfold code to make these work together or a plugin that is compatible?

    #982096

    Hey fabienneBESD,

    The original images have to be the same size or the images can be cropped at the bottom when thumbnails are generated.

    You can use a plugin for that.

    Best regards,
    Victoria

    Hey tijshensen,

    Thank you for using Enfold.

    This filter should alter the default sizes attribute based on the current thumbnail.

    /**
     * Set sizes atribute for responsive images and better performance
     * @param  array        $attr       markup attributes
     * @param  object       $attachment WP_Post image attachment post
     * @param  string|array $size       named image size or array
     * @return array        markup attributes
     */
    function avf_responsive_img_sizes( $attr, $attachment, $size ) {
        if ( is_array( $size ) ) {
            $attr['sizes'] = $size[0] . 'px';
        } elseif ( $size == 'widget') {
            $attr['sizes'] = '36px';
        } elseif ( $size == 'square') {
            $attr['sizes'] = '180px';
        } elseif ( $size == 'featured') {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'featured_large') {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'extra_large' ) {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'portfolio' ) {
            $attr['sizes'] = '495px';
        } elseif ( $size == 'portfolio_small' ) {
            $attr['sizes'] = '260px';
        } elseif ( $size == 'gallery' ) {
            $attr['sizes'] = '845px';
        } elseif ( $size == 'magazine' ) {
            $attr['sizes'] = '710px';
        } elseif ( $size == 'masonry' ) {
            $attr['sizes'] = '705px';
        } elseif ( $size == 'entry_with_sidebar' ) {
            $attr['sizes'] = '845px';
    	} elseif ( $size == 'entry_without_sidebar' ) {
            $attr['sizes'] = '1210px';
        }
        return $attr;
    }
    add_filter( 'wp_get_attachment_image_attributes', 'avf_responsive_img_sizes', 30, 3 );

    Let us know if it helps.

    Best regards,
    Ismael

    Hey zizibe1,

    Thank you for using Enfold.

    1.) You can use this css code to set the opacity of the thumbnail on hover.

    #top .avia-gallery .avia-gallery-thumb a:hover {
        opacity: 1;
    }

    2.) Do you need the galleries to open the lightbox? If you don’t need the lighbox, you can use this css code.

    #top #wrap_all .avia-gallery a {
        pointer-events: none;
    }

    If lightbox is still needed, you have to edit the gallery script directly.

    3.) Use this css code to remove the first thumbnail.

    #top #wrap_all .avia-gallery .avia-gallery-thumb a:nth-child(1) {
        display: none;
    }

    Best regards,
    Ismael

    #981887

    Hi,

    I was expecting a sharper image, like the thumbnail on the homepage.

    Nevermind :)

    Best regards,

    Boris

    #981848
    zizibe1
    Participant

    Hi,

    For certain galleries, I chose “Big image with thumbnails below”.

    I would like to make the following three modifications:

    1. Remove the transparent white overlay of the thumbnails when you hover on them.

    (I already removed the transparent white overlay of the big image by referring to the following post, but this had no effect on the thumbnails below the big image: https://kriesi.at/documentation/enfold/image/#remove-the-image-overlay-circle-and-arrow-on-hover/)

    2. Disable the feature of changing the big image to the image of the thumbnail when hover on the thumbnail.

    3. Remove the first thumbnail (thumbnail of the big image) so there’re only the thumbnails of the other images of the gallery below the big image visible.

    Best regards,
    zizibe1

    millend
    Participant

    Hi there,
    Please see 10sec video for illustration.

    *how to remove this white flashing effect?

    Thank You in advance!

    Hi Nikko,

    Thank you for the code. Unfortunately, it doesn’t work.

    I went to Enfold Child > Performance and disabled “CSS file merging and compression” and “Javascript file merging and compression”.

    Then I went to Appearance > Editor > Theme Functions, added the code at the bottom of the functions.php and clicked on “Update File”.

    Afterwards I enabled “CSS file merging and compression” and “Javascript file merging and compression”.

    When you hover on images or thumbnails of galleries, the little grey boxes with the image titles and descriptions of thumbnails in it still are showing up. Moreover, at the bottom of the browser window, there is also a little grey box with the description of the name of the image in it showing up. But I would like to hide both little grey boxes.

    Best regards,
    zizibe1

    #981073
    smoothbob
    Participant

    Hi
    I am using images 180×180 for the flags on this page

    but the images are stretching to the size of the box. how can I centre them and keep them the correct size in the box?

    and I want to edit the background colour and border of the box

    thanks!

    #981066

    Hi Ismael

    thanks for that. I added it to the child theme functions and cleared the cache but it still opens above the thumbnail

    thanks

    Ian

    hjhoekstra
    Participant

    I try to get a gallery on my website. But when I insert a gallery with the Enfold editor the website shows all the pictures in full size on the website (http://www.desieghorst.nl) instead of small thumbnails. Does anybody know how to fix this bug?

    • This topic was modified 7 years, 9 months ago by hjhoekstra.
    #980499
    smoothbob
    Participant

    Hi
    how can I make the ajax preview panel open below the item thumbnails instead of above them?

    this was started here by somebody but I do not see the solution

    thanks

    #980420

    Hey aintzerga,

    Thank you for using Enfold.

    The maximum size of the masonry thumbnail is set to 705x705px so you have to increase it. Use the following plugin then go the Settings > Media panel. Adjust the size of the masonry thumbnail, update, save and then regenerate the thumbnails.

    // https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    #980411

    Hi,

    That’s odd. Please try to decrease the default image quality. The theme sets it to 100 instead of the WP default value of 80.

    function av_return_100(){ return 80; }
    add_filter('jpeg_quality', 'av_return_100');
    add_filter('wp_editor_set_quality', 'av_return_100');
    

    You have to regenerate or upload the images again.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #980166
    Seeya5
    Participant

    Hello,

    I don’t understand why the image is really compressed in the article.
    https://www.pharmonaturel.com/vergetures-solutions-naturelles/

    The thumbnail is great by the way :)

    Thank you for your help !

    Hi Ismael,
    tried to deactivate the plugins – no effect. But i guess it has something to do with gd-lib, cause some pics are regenerated and some not. And funny thing – the plugin ‘regenerate thumbnail’ says to those pics which are not regenerated – file is not a picture!
    never had this before.
    Now also tried those pics with another enfold-site. No problem.
    So it’s definitely not a problem with or from enfold.
    thanks anyway.

    zizibe1
    Participant

    Hi,

    I would like to hide image titles and descriptions of thumbnails that show up in little grey boxes when you hover on images or thumbnails of galleries.

    I tried to hide this feature by following the instructions in this two posts:

    http://kriesi.at/documentation/enfold/remove-image-titles-that-show-up-when-you-hover-on-images/

    https://kriesi.at/support/topic/remove-tooltip-display-of-image-captions/

    The problem is that the codes in this two posts remove not only the image titles and descriptions of thumbnails when you hover on images or thumbnails of galleries, but also the description below the image in the lightbox. I would like the description to still display there. How can I achieve this?

    Best regards,
    zizibe1

    xxtita
    Participant

    Hi Team Kriesi,
    something strange is happening. about 90 % of all images, uploaded via wordpress, are not scaling into the other sizes. So, all pictures are original, including preview-pics from posts and everything.
    wp: 4.9.6
    enfold: 4.4.1
    also tried regenerate with a) simple image sizes b) regenerate thumbnails
    but both have no effect – still no scaled images in the upload-folder, and for sure also not in the website.
    can you take a look?
    thanks in advance.

    #979373

    In reply to: manuals enfold

    hello Where can I edit the text of the thumbnail? look at the image : http://oi64.tinypic.com/i69z7o.jpg

    Thnaks

    #979333

    Hey psipar,

    Thank you for using Enfold.

    That is the default size used by the masonry element. The maximum width and height are set to 705px.

    It’s quite odd that the generated thumbnails are bigger or heavier than the original images. Do you mind if we take a look at the page with the masonry element? We would like to inspect the images.

    Best regards,
    Ismael

    #979306

    Hey profumopuntoit,
    I have looked at your page, but I don’t see any 404 errors and I see the star review on hover. Is the correct one?
    2018-06-29_061411
    If you would like it to always show, please try this code in the General Styling > Quick CSS field:

    .thumbnail_container .rating_container {
        opacity: 1 !important; 
    }

    Best regards,
    Mike

    avancecommunicatie
    Participant

    Good afternoon,

    I’m using the plugin (https://woocommerce.com/products/composite-products/). When you click on the thumbnail in the private section you’ll see that the small thumbnail in the configurator opens in a lightbox just fine. But as soon as I swap to another option the lightbox class gets removed and it opens in my current tab. Ofcourse I first asked the developers of Woocommerce how this happens, but they told me they test everything in the Storefront theme and there it works fine. They suggested me to contact the developers of the theme and that brings me here. Our programmers are unable to hook or filter into this part and it makes it impossible for us to reach this part of the code. I really really hope you guys can help us out here.

    heledrum1
    Participant

    Hallo,

    Ich versuche seit vielen Stunden das Produktbild auf der Shop Einzelseite zu verkleinern.
    Ich habe viele Einstellungen verändert und versucht aber das Bild wird wenn ich es mit firebug im browser anschaue in 328 x 171 pixel angezeigt?

    Ich habe bei keinen Einstellungen diese Größen gesehen deshalb verstehe ich das auch irgendwie nicht…

    Regenerate Tumbnails Ansicht:
    “Dies sind alle Vorschaubild-Größen, die aktuell registriert sind:

    thumbnail: 80×80 Pixel (passgenau zugeschnitten)
    medium: 400×400 Pixel (proportionale Größenanpassung an die Innenabmessungen)
    medium_large: 768×0 Pixel (proportionale Größenanpassung an die Innenabmessungen)
    large: 1030×1030 Pixel (proportionale Größenanpassung an die Innenabmessungen)
    widget: 36×36 Pixel (passgenau zugeschnitten)
    square: 180×180 Pixel (passgenau zugeschnitten)
    featured: 1500×430 Pixel (passgenau zugeschnitten)
    featured_large: 1500×630 Pixel (passgenau zugeschnitten)
    extra_large: 1500×1500 Pixel (proportionale Größenanpassung an die Innenabmessungen)
    portfolio: 495×400 Pixel (passgenau zugeschnitten)
    portfolio_small: 260×185 Pixel (passgenau zugeschnitten)
    gallery: 845×684 Pixel (passgenau zugeschnitten)
    magazine: 710×375 Pixel (passgenau zugeschnitten)
    masonry: 705×705 Pixel (proportionale Größenanpassung an die Innenabmessungen)
    entry_with_sidebar: 845×321 Pixel (passgenau zugeschnitten)
    entry_without_sidebar: 1210×423 Pixel (passgenau zugeschnitten)
    shop_thumbnail: 100×100 Pixel (passgenau zugeschnitten)
    shop_catalog: 420×420 Pixel (passgenau zugeschnitten)
    shop_single: 600×0 Pixel (proportionale Größenanpassung an die Innenabmessungen)
    woocommerce_thumbnail: 420×420 Pixel (passgenau zugeschnitten)
    woocommerce_single: 600×0 Pixel (proportionale Größenanpassung an die Innenabmessungen)
    woocommerce_gallery_thumbnail: 100×100 Pixel (passgenau zugeschnitten)”

    Habe mir nach dam lesen im Forum das plugin “simple image sizes” istalliert und auch da finde ich die angezeigte Größe nicht…

    Bildgrößenbezeichnung Breite Höhe Beschneiden
    thumbnail 80 px 80 px Ja
    medium 400 px 400 px No
    medium_large 768 px 0 px No
    large 1030 px 1030 px No
    widget 36 px 36 px Ja
    square 180 px 180 px Ja
    featured 1500 px 430 px Ja
    featured_large 1500 px 630 px Ja
    extra_large 1500 px 1500 px No
    portfolio 495 px 400 px Ja
    portfolio_small 260 px 185 px Ja
    gallery 845 px 684 px Ja
    magazine 710 px 375 px Ja
    masonry 705 px 705 px No
    entry_with_sidebar 845 px 321 px Ja
    entry_without_sidebar 1210 px 423 px Ja
    shop_thumbnail 100 px 100 px Ja
    shop_catalog 420 px 420 px Ja
    shop_single 600 px 0 px No
    medium_large 768 px 0 px No
    woocommerce_thumbnail 420 px 420 px Ja
    woocommerce_single 600 px 0 px No
    woocommerce_gallery_thumbnail 100 px 100 px Ja
    Bildgrößenbezeichnung Breite Höhe Beschneiden

    Wo und wie müsste ich die Bildgröße für die Produkt Einzelseite ändern damit die Bilder Größer sind ?
    Würde gerne 420 px breite Produktbilder auf der Einzelseite haben…
    Vielen lieben Dank!

    #977837
    Advantec-IS
    Participant

    Hi there, i use the partner/logo element and suddenly it shows large white spaces above the logos. Using the inspect element reveals that the whitespaces seem to be duplicates with following divider class:

    slide-entry flex_column no_margin post-entry slide-entry-overview slide-loop-1 slide-parity-odd av_one_fourth first real-thumbnail

    The actual real images are labeled with following class:

    class=”av-partner-fake-img”

    av in combination with fake is not really something i want to see on a business homepage. Please check that and see if there is an fix for that.

    Thanks in advancs

    #977759

    Hi,

    Thank you for the update.

    You can actually set the posts thumbnail selection to “manual” instead “automatic”. Edit the “Blog Posts” element and set the “Preview Image Size” to the second option. You should see a new dropdown (Select custom preview image size) with the thumbnail sizes. It it currently set to the “portfolio” thumbnail.

    Best regards,
    Ismael

    #977758
    medi-paper
    Participant

    Dear Kriesi/Enfold team,

    First of all congratulation on the roll-out of an even better Enfold theme over the past few months. It is significantly running better.

    One of the features I like a lot is the “copyright information” for images. I use it a lot as the vendor I use requires me to publicly show the copyright information.

    Feature request: Can the copyright overlay be enforced on all images larger than the thumbnail-size. I notice it is absent from featured images etc. when using the masonry or magazine layout. Also, when setting the image in a colour section as background (to get the parallax effect and complete fullwidth effect), the copyright information is not shown.

    Minor adjustment: Is it possible to change the ‘i’ icon to a © icon via CSS?

    #977747

    Hi,

    Thanks for the update.

    The single post page uses a specific thumbnail called “entry_with_sidebar” (845x321px) for pages with sidebar and the “entry_without_sidebar” thumbnail (1210x423px) for full width pages. The crop parameter of these thumbnails is enabled by default so the theme will crop or cut the images to get the specified width and height. You can prevent the theme from cropping the images by installing the following plugin and setting the “crop” parameter to false in the Settings > Media panel.

    // https://wordpress.org/plugins/simple-image-sizes/

    More info about WP thumbnails: https://developer.wordpress.org/reference/functions/add_image_size/

    Best regards,
    Ismael

    Hey zarlekin,

    Thank you for using Enfold.

    You have to re-select the images manually because it’s still using the thumbnails from the first language.

    Best regards,
    Ismael

    #977546

    Topic: Blog – no pagination

    in forum Enfold
    Daniel
    Participant

    Hi Kriesi – Team
    Have a blog here: http://grafikzumglueck.ch/category/mein-blog/
    I would like to renounce the pagination and show all entries immediately.
    How can I do that?
    Blog Styling: Elegant
    Blog Layout: Raster-Layout
    Single Post Style: Single post with small preview image
    Related Entries: Show thumbnails and display post title by tooltip

    Many Thanks!

Viewing 30 results - 2,941 through 2,970 (of 10,097 total)