Viewing 30 results - 3,061 through 3,090 (of 10,097 total)
  • Author
    Search Results
  • Hi, I’m having the same issue.

    I edited the line of code as indicated earlier in this thread, but the thumbnail image still show up as gray. What’s interesting is that when I make my browser window narrower, the full color thumbnail images appear.

    I’ve tested this in both Firefox and Safari, and they both exhibit the same issue, and the same response to making the browser window narrower.

    Any other ideas as to why this is happening?

    Thanks,
    Alex

    • This reply was modified 7 years, 10 months ago by Basilis.
    #955230

    Hi Andre,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    
    #top .av-magazine-content-wrap {
        min-height: 161px;
    }
    #top .av-magazine-thumbnail img {
    	width: 100%;
    }
    #top .av-magazine-thumbnail {
        width: 161px;
        min-height: 161px;
    }
    #top .av-magazine-time {
    	float: right;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #955199

    Hi Ismael,

    it looks like a great solution, but I have got the error
    ERROR: Attempted to set image quality outside of the range [1,100].
    when I regenerate the thumbnails. I have just exactly copied your code above where the values are 76 and 75 which corresponds to the range 1,100.

    #955192

    Hi,

    Thanks for the update. I think it happens because the theme or WP returns the thumbnails with the highest quality. Please try this filter in the functions.php file.

    add_action('after_setup_theme', function() {
        function av_return_75(){ return 75; }
        add_filter('jpeg_quality', 'av_return_75');
        add_filter('wp_editor_set_quality', 'av_return_75');
    });
    

    It will override the theme’s “av_return_100” function.

    if( ! function_exists( 'av_return_100' ) )
    {
    	/**
    	* Sets the default image to 100% quality for more beautiful images when used in conjunction with img optimization plugins
    	*
    	* @since 4.3
    	* @added_by Kriesi
    	*/
    	function av_return_100(){ return 100; }
    	add_filter('jpeg_quality', 'av_return_100');
    	add_filter('wp_editor_set_quality', 'av_return_100');
    }
    

    IMPORTANT: You have to regenerate the thumbnails.

    Best regards,
    Ismael

    #954724

    Hi stevegjacobs,

    Can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .single-product-main-image .thumbnails {
        width: 100%;
    }
    
    #top .single-product-main-image .thumbnails a {
        width: 15%;
        margin-left: 0.8%;
        margin-right: 0.8%;
    }

    Hope it helps :)

    Best regards,
    Nikko

    #954681

    Hey brunet77,

    You should find it in Appearance > Customize > Woocommerce > Product Images.
    You might need to reupload the image to crop it to the size changed, however if you have a lot of images to be changed you can use plugins such as regenerate thumbnails to do it.
    Hope this helps.

    Best regards,
    Nikko

    Hi ac,

    Can you try using this plugin: https://wordpress.org/plugins/simple-image-sizes/
    Then go to Settings > Media then find this size: entry_with_sidebar then set Cropping to No then update.
    At the bottom click the Regenerate thumbnail button and wait for it to finish.
    Hope this helps :)

    Best regards,
    Nikko

    #953750
    typhonconsulting
    Participant

    Hi

    I have two posts on a site which are virtually identical (one is a clone of the other). In the search results, one shows the thumbnail and the other (newer) one doesn’t.

    What could be causing this?

    Thanks
    Shaun

    #953574

    Topic: Video Modal

    in forum Enfold
    bradwbowman
    Participant

    Hello,

    I’m currently doing a video modal via this code – <a href="https://vimeo.com/268649764" rel="lightbox"><img src="/wp-content/uploads/2018/05/video-thumbnail-may-2018.jpg" /></a>

    Is there a way to make the modal a larger size when it opens either through the method I’m using or a different method? Thanks!

    P.S. How do you do a Youtube modal? I tried this same format and it didn’t work. Thanks!

    • This topic was modified 7 years, 11 months ago by bradwbowman.

    Hi,
    Sorry, I’m not sure I follow.
    I understand that you have 10k photos to upload, so all the extra files is no good.
    Then I think you are saying you only need two sizes for each image?
    If this is true, you can remove some of the sizes in the functions.php look for:

    /*
     * Register additional image thumbnail sizes
     * Those thumbnails are generated on image upload!
     *
     * If the size of an array was changed after an image was uploaded you either need to re-upload the image
     * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
     */
    
    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);
    
    
    $avia_config['selectableImgSize'] = array(
    	'square' 				=> __('Square','avia_framework'),
    	'featured'  			=> __('Featured Thin','avia_framework'),
    	'featured_large'  		=> __('Featured Large','avia_framework'),
    	'portfolio' 			=> __('Portfolio','avia_framework'),
    	'gallery' 				=> __('Gallery','avia_framework'),
    	'entry_with_sidebar' 	=> __('Entry with Sidebar','avia_framework'),
    	'entry_without_sidebar'	=> __('Entry without Sidebar','avia_framework'),
    	'extra_large' 			=> __('Fullscreen Sections/Sliders','avia_framework'),
    	
    );
    
    
    
    avia_backend_add_thumbnail_size($avia_config);

    and remove the ones you don’t want, be sure to save a copy of the original file should you make an error.
    Or you can use the plugin above and set the size to zero for the images you don’t want, this might be the best option.
    After you remove your sizes please use this plugin: Regenerate Thumbnails
    As you remove each size check your site to ensure the size you removed is not used elsewhere.
    Best regards,
    Mike

    HI Ismael

    Yes, thanks, I did finally!

    Appearance > Customise > WooCommerce > Product Images
    The Thumbnail cropping was set to 1:1

    Kind regards
    JJ

    Hi,

    We are very sorry for the late response.

    Please use this css code to remove the copyright container on a magazine element.

    .av-magazine-thumbnail .avia-copyright {
        display: none;
    }

    Thank you for using Enfold.

    Best regards,
    Ismael

    #952941

    have set the thumbnails of the gallery to a lower res via simple image size plugin – now it’s fine! thank you :-)

    #952895

    In reply to: Enfold Portfolio

    ok. in the portfolio grid can you make the thumbnail masonry? or different sizes? I can’t tell from the demos.

    #952828
    hostworks
    Participant

    Greetings. When I do a site search (I have WooCommerce installed), as I type my keyword, little images are displayed, but if you look at all results, there are no images displayed. How do make the search results include image thumbnails?

    #952648
    Munford
    Participant

    I just updated to Enfold 4.31 and now when my masonry galleries load I get a lot of small thumbnails first.
    see: https://imgur.com/a/xxyaFoS
    I am now reverting to a backup before the update so my client doesn’t freak but do you have a fix for this?
    I will be updating when I know it won’t do this.
    thanks
    Nancy

    • This topic was modified 7 years, 11 months ago by Munford.
    #952306
    advanced_concept
    Participant

    Hi,

    for a WooCommerce shop, using the Enfold theme I activated the product hover effect. It replaces the default thumbnail with the first image of the gallery. However, when going to the translated version to the shop (english version), the hover effect is not working.

    Do you know how I can change the settings, so it also works for the translated pages (from german to english)?

    Thanks in advance.

    Best,
    matthias

    #952273

    Hello Mike,

    Neither search works when you look for a specific product.
    The dropdown used to give results matching the search or at least close to.
    The problem is that now, the results are always the same:

    173 SEARCH RESULTS FOR: 870

    1 377 KaproMeter K7 with Bluetooth
    17 Nov 2016 /in Latest News
    Laser Distance with Bluetooth Read More…

    2 testpage
    14 Jan 2018

    3 Newsletters
    01 Sep 2014
    4 883G Prolaser® 3D All-Lines

    Even if I ask for a different product, this is what I get:

    173 SEARCH RESULTS FOR: 950

    1 377 KaproMeter K7 with Bluetooth
    17 Nov 2016 /in Latest News
    Laser Distance with Bluetooth Read More…

    2 testpage
    14 Jan 2018

    3 Newsletters
    01 Sep 2014

    4 883G Prolaser® 3D All-Lines

    It’s like it’s stuck.
    I think I solved the problem of the different sized thumbnails but I am really stumped with the search issue, I hope you can assist with it.
    Best regards,
    Sandra

    Steve
    Participant

    Firstly thank you for adding the copyright feature, it is brilliant and just what was needed for one of our sites, however it creates a lot of problems with things such as thumbnail views anywhere on the site, in particular on the magazine module. See here:

    https://www.vintagedigital.com.au/home-test/

    Password to the page is: kriesi

    Basically we need the option to turn OFF the copyright information on thumbnails and only have it appear when the full image is displayed. If this option is already builtin and I have missed please advise where it is?

    • This topic was modified 7 years, 11 months ago by Steve.
    #952002
    tonyshanks
    Participant

    Regenerate Thumbnails does not change the image size on the Products Slider. Please provide direct to the theme code that controls the height of the images on this slider.

    #951457

    hi ismael,

    thanks. found another solution by editing the postslider.php itself.
    “$excerpt_length = !empty($thumbnail) ? 160 : 600;” if anyone else is interested. ;)

    #951387

    Hi,

    Also, I have noticed that pictures which are resized by Enfold/WP are greater in the size than their original files, even though the modified picture is smaller, e.g.

    The thumbnail is actually smaller than the source or the original image.

    https://www.sketchengine.eu/wp-content/uploads/cornelsen-min-180×180.png
    vs the bigger original picture
    https://www.sketchengine.eu/wp-content/uploads/cornelsen-min.png

    Best regards,
    Ismael

    #951277

    Hi,

    You can create your own custom thumbnail or use the ones generated by the theme.

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);
    

    // https://developer.wordpress.org/reference/functions/add_image_size/

    Again, you can use the suggested plugin above to adjust the size of the existing thumbnails or to create your own. :)

    Best regards,
    Ismael

    #950836

    Hello Rikard, sooo gladd to hear from you!
    I’ll send you the admin login details in the private content.
    1. The Search problem is easy to find, any search you do will bring the same results and have nothing to do with what you searched (try searching by product numbers exp: 700, 870, 950…
    2. The size of the thumbnails problem can be found in many pages, here are just one or two examples:
    a. http://kapro.com/product/770-exodus-90cm/
    b. http://kapro.com/product/883g-prolaser-3d-lines/
    I could go on but I know you get the picture.

    Looking forward to hearing from you soon,

    Best regards,

    Sandra

    #950587
    #950529
    azinity
    Participant

    hi there,

    the favicon doesnt appear transparent even though it has a transparent background. we added and regenerated the thumbnails. any idea?

    thanks
    br
    tom

    This reply has been marked as private.
    #950517

    Hi Maspelin,

    This article can help you
    http://www.wpbeginner.com/wp-themes/how-to-set-a-default-fallback-image-for-wordpress-post-thumbnails/

    If you need further assistance please let us know.
    Best regards,
    Victoria

    alexx8675
    Participant

    This is a new issue that I believe may have been caused by the update, as it wasn’t an issue before. My companies website utilizes “masonry gallery” for thumbnails, that open into youtube or vimeo videos. Now when they are clicked, they tend to jump around/move slightly if you move your mouse at all, which is very distracting/makes our videos look bad.

    Can someone look into a solution for this?

    Our website, for reference:

    • This topic was modified 7 years, 11 months ago by alexx8675.
    #949496

    Hey nychng,
    When I go to the “wrong” site and click on the main product image, it opens in lightbox, same as when I click on the thumbnails below. This is the default behavior.
    Please see this demo
    But when I go to the “correct” site and click on the main product image, it zooms in, I believe this is the action of a plugin.

    Best regards,
    Mike

Viewing 30 results - 3,061 through 3,090 (of 10,097 total)