-
Search Results
-
I’d like to have the featured image that displays beside my posts to be the same size as it appears where the post is listed on the blog page (using the grid layout). Is there a way to change that?
I was able to change the width of the area where the image is displayed (see the first link below), but the thumbnail is still the same size. I updated the settings/size for thumbnails under the WP dashboard as well.
Ideally I would like the thumbnails for the featured images to be the same size on the individual posts as they are on the main blog page (see the second link). That way they aren’t getting cropped.
I’m using Enfold theme.
And I’ve added a ‘Gallery’ to a page.
Gallery style = Small Thumbnails
Gallery Preview Image Size = Portfolio (495×400)I’ve installed: WP Retina 2x
BUT for some reason the Thumbnails and Lightbox aren’t displaying the Retina images?
I’ve also added this to the Child Theme functions.php file.
add_filter(‘avf_avia_builder_masonry_lightbox_img_size’, ‘avia_change_gallery_thumbnail_link’, 10, 1);
function avia_change_gallery_thumbnail_link($size)
{
return “full”;
}Topic: Thumbnails alignment is off
Hi guys,
i have an issue here. My url is http://www.1commercialspace.com/offices-for-sale/.
At the last row of pictures, there is a particular picture called “Axa tower”.
I tried my best to but i am unable to make it follow the alignment of the picture beside it.
Please advise how I can do this.
Thank you!
Dalen
Topic: Bigger thumbnails are blurry
Hello,
The site is: http://www.moobuzz.net/ and we want bigger thumbnails in the footer.
WordPress setting is 80×80
The CSS is working great but the images are still 36px and are just being stretched to 48px so they look fuzzy. Could you please tell me what I’m missing?I followed other forum posts and added this to my child theme’s functions.php and ran regenerate thumbnails.
Here it is functions.php in it’s entirety:
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ /* make thumbnails bigger */ function my_image_size() { global $avia_config; $avia_config['imgSize']['widget'] = array('width'=>48, 'height'=>48); } add_action('init', 'my_image_size', 1); ?>wordpress version is up to date 4.6.1, Enfold version is 3.7.1
Thanks!
On the home page I have a gallery (Big Image with Thumbnails) All images are 1000 px X 743px
The gallery is set to Portfolio 495×400
No to forcing sizeAll images including the big image are blurry.
What do you think?
THANK YOU!!!!
Topic: Product Thumbnail
Good afternoon!! I have 2 questions for you. How do I add a thumbnail to a product item? When I search for an item, if I hit Enter after I type the search item name…it brings up the items with each one being numbered. It does not bring up a picture of the items. Instead of 1 with a circle around it, I would like to have a thumbnail. Also, how do I delete the date that shows when the item was published from the searched items?
Dear Enfold-Team,
In brief, I want to stick with the default medium, medium-large, large and add some custom thumbs. I am using an Enfold Chiild and below is a part of my functions.php.
In fact, the code works, the enfold sizes such as widget, square, … are not generated any more, however, it fails on the three shop-thumbs.Could you please assist on how to remove shop_catalog, shop_single, shop_thumbnail in an enfold child theme?
Cheers,
Elisabeth`add_filter( ‘avf_modify_thumb_size’, ‘my_enfold_customization_modify_img_size’, 10, 1 );
function my_enfold_customization_modify_img_size( $size ) {
$size[‘widget’] = array(‘width’=>0, ‘height’=>0); // small preview pics eg sidebar news
$size[‘square’] = array(‘width’=>0, ‘height’=>0); // small image for blogs
$size[‘featured’] = array(‘width’=>0, ‘height’=>0 ); // images for fullsize pages and fullsize slider
$size[‘featured_large’] = array(‘width’=>0, ‘height’=>0 ); // images for fullsize pages and fullsize slider
$size[‘extra_large’] = array(‘width’=>0, ‘height’=>0 , ‘crop’ => false); // images for fullscrren slider
$size[‘portfolio’] = array(‘width’=>0, ‘height’=>0 ); // images for portfolio entries (2,3 column)
$size[‘portfolio_small’] = array(‘width’=>0, ‘height’=>0 ); // images for portfolio 4 columns
$size[‘gallery’] = array(‘width’=>0, ‘height’=>0 ); // images for portfolio entries (2,3 column)
$size[‘magazine’] = array(‘width’=>0, ‘height’=>0 ); // images for magazines
$size[‘masonry’] = array(‘width’=>0, ‘height’=>0 , ‘crop’ => false); // images for fullscreen masonry
$size[‘entry_with_sidebar’] = array(‘width’=>0, ‘height’=>0); // big images for blog and page entries
$size[‘entry_without_sidebar’]= array(‘width’=>0, ‘height’=>0 ); // images for fullsize pages and fullsize slider
$size[‘shop_thumbnail’] = array(‘width’=>0, ‘height’=>0);
$size[‘shop_catalog’] = array(‘width’=>0, ‘height’=>0);
$size[‘shop_single’] = array(‘width’=>0, ‘height’=>0, ‘crop’ => false);// now define our own sizes for the gallery
// $size[‘gallery3’] = array(‘width’=>640, ‘height’=>640, ‘crop’ => false); // images for portfolio entries (3 columns in our style)return $size;
}
