Viewing 30 results - 8,581 through 8,610 (of 10,095 total)
  • Author
    Search Results
  • #234473

    Hi Ismael,

    Not sure what you mean by 20%.

    I have Gallery thumbnails set to Widget (36×36). Shouldn’t they be that size?

    Instead, they are showing up as 190×190 (very large and blurry).

    To see what I mean, please scroll to the bottom of my home page, and see the gallery of doctor photos: http://www.finalsmoke.net

    #234468

    Hi!

    The width of the gallery thumbnails are set to 20%. They will occupy the size of the container.

    Regards,
    Ismael

    Hi Yigit,

    I tried the change you suggested but the dimension of the lightbox image remains the same, the max height does not change and so a portrait image is still displayed small. I tried also to reset all the db and to reinstall Enfold, but the result is the same.

    Thanks a lot in advance for your help,
    Giovanni

    #234265

    Thanks. I will try the opacity setting.

    But shouldn’t the thumbnail sizes be 36 x 36 automatically if I select that in the Gallery?

    I have not overridden any gallery sizes. Is there a bug in the Gallery element?

    #234057

    Hi Josue,

    I put back the Gallery at the bottom of the page: http://www.finalsmoke.net/

    The thumbnails are much larger than the 36 x 36 that I selected.

    Also when I hover over them, they become very white and washed out. Shouldn’t they appear brighter when hovering?

    Please advise.

    #233898
    gmmediadienste
    Participant

    Hallo,
    ich habe in der Mediathek 150×150 und 300×300 für die Thumbnails eingestellt.
    Lasse ich eine WP Galerie einfügen, werden die Thumbnails aber immer auf 80px verkleinert dargestellt. Das schaut echt bescheiden aus.

    Ist das so gewollt?
    Siehe:
    http://iszene.com/news/app-der-woche/app-der-woche-sega-go-dance-1157/

    Code
    [gallery ids="1162,1161,1160,1159"]

    Hey!

    Please go to wp-content\themes\enfold\config-templatebuilder\avia-shortcodes folder and open masonry_entries.php file and find

    $this->loop[$key]['url'] = wp_get_attachment_image_src($id, apply_filters('avf_avia_builder_masonry_lightbox_img_size','large'));

    and change it to

    $this->loop[$key]['url'] = wp_get_attachment_image_src($id, apply_filters('avf_avia_builder_masonry_lightbox_img_size','full'));

    Regards,
    Yigit

    #233884

    Hi Bedros!

    1- Yes, as you can use Avia Layout Builder for creating your portfolio items like creating any other page, featured image is not shown. You are not doing anything wrong.
    2- Which version of Enfold are you using? You can add following code to Quick CSS in Enfold theme options under Styling tab to remove the arrows globally

    #top .avia-post-nav { display: none; }

    3- You can add “Portfolio grid” or “Fullwidth Masonry” element to bottom of your portfolio items to display related portfolio items. Featured image does show on thumbnails as you shown in your first screenshot. If you are having any issues with it, please post the link to your website so we can take a look. Please note that we may need a temporary admin login as well.

    Regards,
    Yigit

    #233874

    In reply to: Thumbnails quality

    Hey fotofaber!

    Please go to WooCommerce > Settings > Catalog and increase catalog image sizes then regenerate thumbnails using the plugin

    Regards,
    Yigit

    #233871

    Topic: Thumbnails quality

    in forum Enfold
    fotofaber
    Participant

    Hi,

    http://fotofaber.pl/?post_type=product

    Why thumbnails quality is so bad?
    Original pictures are 600x900px. – It’s 2:3 proportion.
    In Woocommerce setup thumbnails are 80x120px – It’s 2:3 too.

    Regenerate Thumbnails plugin does not help.

    cheers
    – fotofaber

    #233631

    In reply to: Portfolio thumbnail

    Hi evgeniac!

    Thank you for the question. I hope all is well with you today.

    Please edit functions.php, find this code on line 97:

    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    

    Replace it with:

    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>210 );						// images for portfolio 4 columns
    

    Regenerate the images using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #233624

    Hi!

    In order to have a uniform image size for the shop page, you need to at least resize the images with the same ratio and dimension. WP crops images on top, side or the bottom without regards on how you want it to look like. You’ll see that a very tall human images will have its head cut off or a part of the legs missing unless you tell wp to set the crop to false. If you set the crop parameter to false, you’ll have some images that are out of proportion. So, in order to have the right thumbnails, you need to at least give wp a resized images in order to have a uniform set of product images. To learn more about image thumbnails, you can refer to this link: http://codex.wordpress.org/Function_Reference/add_image_size

    Best regards,
    Ismael

    #233581

    Hi!

    Edit portfolio.php on the same folder, find this code on line 411:

    $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.$image."</".$link_markup[1].">";
    

    Replace it with:

    $output .= "<".$link_markup[0]." target='_blank' data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.$image."</".$link_markup[1].">";
    

    And this code on line 425:

    $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size )."</".$link_markup[1].">";
    

    Replace it with:

    $output .= "<".$link_markup[0]." target='_blank' data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size )."</".$link_markup[1].">";
    

    Another line of code that you have to change is on line 432:

     $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    Replace it with:

     $output .= "<h3 class='grid-entry-title entry-title' $markup><a target='_blank' href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    Cheers!
    Ismael

    #233436
    markofwits
    Participant

    I have inserted a Gallery element, using Small Thumbnails of Widget size (36 x 36).

    Why are the small previews (thumbnails) so much bigger than 36 x 36? They are 190 x 190 in size.

    Also, the thumbnail image quality is distorted (blurry).

    Gallery is on my home page at http://www.finalsmoke.net

    Please see screen shots below.

    Thanks.

    Gallery 1
    Gallery 2

    #233412

    Thanks for your reply. So if I have to upload them already sized up, what is the point of the size boxes in the theme itself? What purpose do they have? I’m also a photographer and all the photo websites I’ve utilized resize the pictures according to what size/aspect ratio parameters you set. So, I guess I don’t understand how to use Enfold’s, or what their purpose is if I’m doing all the work of resizing myself?

    And I don’t understand why I have to set the thumb size in the php file you mentioned if it has the thumbnail size box option in WYSIWYG view? Wouldn’t I just use that?
    Thanks

    • This reply was modified 12 years ago by outtagear.
    #233368

    Topic: Portfolio thumbnail

    in forum Enfold
    evgeniac
    Participant

    What way to change the default cut of portfolio thumbnail to height 210 pixels? I want show it on the portfolio page in full size.

    Thank you,
    Evgenia

    Hey honesty1993!

    I’m sorry but you can’t put a video thumbnail when using the Video element. You can use the html video tag. Something like this:

    [video src="VIDEO_URL" width="640" height="360" poster="THUMBNAIL URL HERE"]
    

    For more info, refer to this link: https://codex.wordpress.org/Video_Shortcode

    Cheers!
    Ismael

    #233259

    In reply to: Set Gallery Height

    Yeah, but then when you hover over a horizontal image there is a large white space beneath the area and the gallery thumbnails. We will probably just photoshop white space around the images so that they will fit the space better.

    honesty1993
    Participant

    Hello,

    Will you be so kind as to tell me how to create a video thumbnail for video added with Avia Layout Builder? I’m using local video and I need to define a thumbnail for this video instead of a black background. Thanks.

    #233084

    Hi!

    Glad we could help. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests/

    Closing the thread now.

    Cheers!
    Ismael

    #233051

    Hi!

    Thank you for using the theme. I hope you’re doing great.

    Make sure that you’re uploading images with the same dimension and ratio to get a nice overall look for the shop page. You can change the thumbnail size on config.php and set the crop settings to false if necessary. Regenerate the thumbnails.

    Best regards,
    Ismael

    #233047

    Hi!

    Thank you for using the theme. I hope you’re doing great.

    I don’t it is possible to arrange the gallery thumbnail by category. Please hire a freelance developer if you want to make that change on the gallery shortcode. For further customization, please visit Werkpress.

    Cheers!
    Ismael

    #232965

    I also read this post but totally don’t understand the code:
    https://kriesi.at/support/topic/sorting-order-for-gallery-images/

    I guess they have done it here:
    http://www.kafkagranite.com/wp/epoxy-overlay-aggregates/streetscape/#tab-id-1

    But I like the general preview style that comes with the theme, and would like the filmstrip/thumbnails below.

    Cheers!

    #232962
    Walrus11
    Participant

    Hello,

    I would like to be able to organize the thumbnail filmstrip below the preview image for the distinct steps involved in my process. I have manually done so for the moment, but adding blank pages. For example, I’d like to be able to do something like this:

    Row 1, “Site” 7-8 photos, up to a max of Y
    Row 2, “Design” 5-6 photos, up to a max of Y
    Row 3, “Construction”, 2-3 photos, up to a max of Y
    Row 4, “Finished”, 6-7 photos up to a max of Y?

    Is there a smart way that will allow me to have images appears on the right row, ideally with headers? Maybe one solution would be to use a tab approach to show the various steps in “quote” above, and the matching film strip to appear.

    Am I dreaming? Love this theme anyway.

    Thanks!
    W

    #232961

    Just ran across the following within config.php in themes/enfold/config-woocommerce:

    global $avia_config;

    //product thumbnails
    $avia_config[‘imgSize’][‘shop_thumbnail’] = array(‘width’=>120, ‘height’=>120);
    $avia_config[‘imgSize’][‘shop_catalog’] = array(‘width’=>450, ‘height’=>450);
    $avia_config[‘imgSize’][‘shop_single’] = array(‘width’=>450, ‘height’=>999, ‘crop’ => false);

    I set the WooCommerce product settings to match and I also made sure that my Images were 450 x 450 and that seems to have helped. Not sure yet if that will work for larger images, but will be testing shortly

    #232923

    I am also having the same issue. I assume this is because the WooCommerce Product Image Sizes need to be adjusted for the theme’s CSS settings.

    The defaults are as follows:
    Catalog Images: 450 x 450
    Single Product Images: 450 x 999
    Product Thumbnails: 120 x 120

    Is there a recommended setting for the Enfold theme? Also I have read that they may need to be adjusted to account for Retina display.

    #232830

    Hi! I just wanted to say I am new to Enfold and I wanted this same functionality and your edits work brilliantly Yigit. This is a great forum topic, thank you!

    I feel as if this topic should be highlighted as I imagine there are many users (for example the user who posted item #227928 on forum) who probably would like the gallery with thumbnails to perform without the full lightbox opening up on mobile browsers / ipads / etc. rather they would prefer to have the image appear in the “fake” lightbox window when you click on thumbnail.

    Thanks for listening!
    Linda

    #232801

    Hi!

    I have just checked your website and all items on gallery are the same size on my end. Please see screenshot here – http://i.imgur.com/X7c3PW5.jpg
    Which browser and OS are you using? Or have you already figured out the issue?

    Best regards,
    Yigit

    #232773

    In reply to: "Post_gallery" filter?

    HI guys, I got it working on my site using Peter’s latest version of the function. However, I was hoping the links would work from the thumbnail as well as the main image. The url appears at the bottom of the screen, but it doesn’t click through. Any ideas???

    rog

    #232660
    schloeskeCS
    Participant

    Hi, when using the Enfold gallery, the caption/title of an image shows up with the thumbnails, but not when the image is enlarged in the lightbox. Any way to add the caption/title there (just like the standard wordpress gallery has it)? thanks!

Viewing 30 results - 8,581 through 8,610 (of 10,095 total)