Hi!
Please add following code to Quick CSS as well
.woocommerce-page .thumbnail_container {
max-width: 100%;
display: block;
}
Then go to WooCommerce > Settings > Products > Display and increase catalog image sizes from 450x450px to 600x600px and regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
Yigit
Hi,
Please try the following in Quick CSS under Enfold–>General Styling:
.woocommerce-page .thumbnail_container {
max-width: 50%;
display: table;
margin: 0 auto;
}
Best regards,
Rikard
Hello.
We have a development site that is having serious conflicts with Enfold.
https://wordpress.org/plugins/yith-infinite-scrolling/
When activated, both WooThumbs and YITH Infinite Scrolling plugins are causing saving errors in Theme Options.
The infinite Scrolling plugin duplicates content on a page instead looping through products once and stopping.
I have also tried 3 additional plugins and all do the same: load the same images repeatedly.
Regenerate Thumbnails plugin throws this error when regenerating thumbnails:
function (){if(!d){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g
Please help.
-
This topic was modified 9 years, 6 months ago by
tdoornbos. Reason: Added url
Hi,
Is it possible to make the thumbnail images on the productpage smaller?
I like to have the column count set to “2” and have the images smaller and centered.
See images link in private content
-Thanks
Benjamin
Hi,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the portfolio_small image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Have done – thanks. Although this doesn’t help my too low-res thumbnails/images being called.
See attached and view at 100% (it’s less noticeable on smaller res screens such as laptops)
D
Hi Yigit
I’m afraid that didn’t do anything to the page at all – page didn’t change at all. Even when I added !important:
.template-search .post-entry {
margin-left: 1%!important;
width: 19%!important;
}
.template-search .post-entry .first {
margin-left: 0!important;
}
I wonder whether it’s more to do with the image thumbnail size that’s being called and/or styled?
Any thoughts or other ideas?
D
Hi
That changes the columns to 5 which is fine but it does not display the results the same as http://www.dominicrutterford.co.uk/the-collection/.
http://www.dominicrutterford.co.uk/the-collection/ displays as a portfolio grid, 5 columns with image size set to automatic.
The search results are displaying with the images much smaller and the spaces between much wider.
How can I do this in search results?
Here is my code:
<?php
if(!empty($_GET['s']))
{
echo "<h4 class='extra-mini-title widgettitle'>{$results}</h4>";
global $posts;
$post_ids = array();
foreach($posts as $post) $post_ids[] = $post->ID;
$atts = array(
'type' => 'grid',
'items' => get_option('posts_per_page'),
'columns' => 5,
'class' => 'avia-builder-el-no-sibling',
'paginate' => 'yes',
'use_main_query_pagination' => 'yes',
'thumbnail' => 'portfolio',
'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() )
);
$blog = new avia_post_slider($atts);
$blog->query_entries();
echo "<div class='entry-content'>".$blog->html()."</div>";
}
?>
Best
Dominic
Hello,
I would like to be able to use the category thumbnail, but alongside it add one additional image (see attached in private content). I read a number of posts but couldn’t proceed. I was hoping a new function would somehow accomplish this? I tried editing some of the woo templates in my child theme without success.
i use featured post images in a landscape style. On the left side is some text and on the right side the image, all placed on a simple background.
in the Enfold Child Latest News the thumbnail is showing the image (cropped) in center position. in my special case just no text or image is shown.
is it possible to crop the thumbnail of this widget to center right (to show the right side of this image) and not to center center?
i use the child-theme
Thanks a lot
-
This topic was modified 9 years, 6 months ago by
langnaese.
Hi,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_without_sidebar and entry_with_sidebar image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Hello Support Team,
I am facing a problem in my website work page where I loaded some portfolio images. but portfolio thumbnails mesh up in each other and into footer. Please have a nice look on the below link and send me its fix ASAP. Thanks
Hi,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the widget image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.news-thumb img, .news-thumb img {
width: 44px;
height: 44px;
}
.news-thumb {
height: 52px;
width: 52px;
}
.single-post #main img:hover {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.single-post .image-overlay {
display: none!important;
}
.single-post #main img {
-webkit-transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
Best regards,
Yigit
Solved :)
by copying the function to my child theme and adding an extra check to see if a post exists and if not putput dummy << >> links that dont click
I also had to add the taxonomy name in the single-portfolio.php and to tell it to keep in same category only
echo avia_post_nav(true,'case-studies');
if(!function_exists('avia_post_nav'))
{
function avia_post_nav($same_category = false, $taxonomy = 'category')
{
global $wp_version;
$settings = array();
$settings['same_category'] = $same_category;
$settings['excluded_terms'] = '';
$settings['wpversion'] = $wp_version;
//dont display if a fullscreen slider is available since they overlap
if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) ||
class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
$settings['type'] = get_post_type();
//if ($taxonomy) {
//$settings['taxonomy'] = $taxonomy;
//} else {
$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
//}
if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
$settings = apply_filters('avia_post_nav_settings', $settings);
if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
if(version_compare($settings['wpversion'], '3.8', '>=' ))
{
$entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
$entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
}
else
{
$entries['prev'] = get_previous_post($settings['same_category']);
$entries['next'] = get_next_post($settings['same_category']);
}
$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
$output = "";
foreach ($entries as $key => $entry)
{
if(empty($entry)) { // continue;
//echo '<div class="disabled-post-nav">';
//echo '<a class="avia-post-nav avia-post-next with-image" ><span class="entry-info-wrap"><span class="entry-info"><span class="entry-image"></span></span></a>';
//echo '</div>';
$output .= "<div class='disabled-post-nav'><a class='avia-post-nav avia-post-{$key} {$class}' >";
//$output .= " <span class='label iconfont' ".av_icon_string($key)."></span>";
$output .= " <span class='entry-info-wrap'>";
$output .= " <span class='entry-info'><span class='entry-image'></span>";
// $tc1 = " <span class='entry-title'>{$the_title}</span>";
if($image) //$tc2 = " <span class='entry-image'>{$image}</span>";
//$output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;
$output .= " </span>";
//$output .= " </span>";
$output .= "</a></div>";
} else {
$the_title = isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
$link = isset($entry->av_custom_link) ? $entry->av_custom_link : get_permalink($entry->ID);
$image = isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
$tc1 = $tc2 = "";
$class = $image ? "with-image" : "without-image";
$output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";//.$same_category.$taxonomy;
$output .= " <span class='label iconfont' ".av_icon_string($key)."></span>";
$output .= " <span class='entry-info-wrap'>";
$output .= " <span class='entry-info'>";
$tc1 = " <span class='entry-title'>{$the_title}</span>";
if($image) $tc2 = " <span class='entry-image'>{$image}</span>";
$output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;
$output .= " </span>";
$output .= " </span>";
$output .= "</a>";
} //end if JJA
}
return $output;
}
}
Hi Rikard,
Thank you for the reply.
I want the size of the thumbnails to be 44 x 44 px.
For the zooming part, I have added the effect on the first image of the link provided in the private section. I want the same effect on all the images in my blog page.
Regards,
Hey Milan,
Thank you for using Enfold.
Edit the slider element and then set the Slideshow Image Size option to “No scaling”. The slider will use the original image instead of the generated thumbnails.
Best regards,
Ismael
Hi,
We have added a widget Recent Posts to our side bars. But the thumbnails of images are too small. How do I increase their size.
Also If you see the blog page the images on it have a white overlay effect on it when hoovered on it. We want to change it to the effect of zooming it a little which can be achieved with we insert the image widget in any post.
Providing the link of the page in private section for your reference.
Regards,
Hi
I have checked the forum for this and the one answer I found didn’t work for me.
I want to display search results as a grid in a similar style to Portfolio grid. Preferably with thumbnail, title and excerpt.
Can you help?
The site is at http://www.dominicrutterford.co.uk/the-collection/
Hello!
Using GD bbpress attachments plugin, users can upload images to forum comments. If one image is uploaded it has a thumbnail in the comment, and when i open it first the image opens, but there is 2 images in this pop up lightbox, the next is without name the thumbnail image. I know this second is the thumbnail grabbed because when i “turn off showing thumbnails for uploaded images”(in the GD plugin), then all is good, no duplications.
Any ideas why it is doing this?
Thanks,
Daniel
I want the slider to work like the default works for the RNB Code Canyon Theme the link for this is here http://preview.codecanyon.net/item/rnb-woocommerce-rental-booking-system/full_screen_preview/14835145?_ga=1.212304212.1942748463.1476943303
I do not mind enfold way of showing it with the thumbnails below but i do not want popup
Hi!
You can increase the size of the “entry_with_sidebar” thumbnail. Install the following plugin then go to the Settings > Media panel. https://wordpress.org/plugins/simple-image-sizes/
Note that the initial modification is partial and might require additional css codes.
Regards,
Ismael
Hey lssu!
Third tab is empty and images on the first tab are not next to text on my end in both Firefox and Chrome and it adds extra space when hovering over them.
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
a.pt-cv-href-thumbnail {
display: inline-block!important;
}
If that does not help, please post screenshots showing the issue. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.
Regards,
Yigit
Ok… odd issue in Firefox. On my page… you will see some thumbnails, to the left of the text. When I hover over the images, the text drops below the thumbnail. Can you provide a fix? Doesn’t happen in Chrome.
Disregard! YouTube just takes a while. Now the thumbnails show. All is good!
Hm, the custom video thumbnail (set up in YT) doesn’t display in the embed on the website. Does that not work with the Text element, or is additional code needed?
Hey zeidmk,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_with_sidebar image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Hi,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the portfolio_small image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Hey!
It looks like most of the thumbnails are missing when you switch to another language. I’m not sure if this is going to work but please try to regenerate the thumbnails. https://wordpress.org/plugins/regenerate-thumbnails/
If the image regeneration doesn’t work, you might need to re-upload the images in the masonry gallery. For more info, please contact the plugin or script author.
Cheers!
Ismael
Hey Greg!
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the “entry_without_sidebar” and “entry_with_sidebar” image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Hey!
I regenerated thumbnails, please review your website now.
Cheers!
Yigit