Hi!
1) Yes, unfortunately, that would require some custom work done by a freelance developer.
2) It does on my end. If you do not mind me sending screenshots publically, i can post them.
3) Please add following code to prevent images from popping up
.avia_transform .avia-gallery-thumb img.avia_start_animation {
-webkit-animation: none;
-moz-animation: none;
-o-animation: none;
animation: none; }
Cheers!
Yigit
any answer ? I also get 80px images on my galleries, which is not what I want
Thanks a lot for the quick reaction!
I tried the Regenerate Thumbnails plugin, but the sizes remained the same, guess something didn’t work properly!
I will definitely keep in mind that CSS codes, they are quite useful for someone like me who is just starting with them!
Actually there was another solution, which might help in my case, and it is reuploading the featured images, I tried it with couple of the posts, and it worked properly! And anyway since I’m gonna stick with this theme from now, I’d better optimize that stuff from now I think!
Yeah, I want to be able to remove the featured image from being shown in just some posts, I will try that code later and let you know if it worked!
Thanks again for the quick reaction!
Ilko
Hi!
You can edit functions.php, find this code:
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
You can replace the height and width then regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Cheers!
Ismael
Hi ullastret!
What type of blog style do you have on the single post view? You can add this on your custom.css or Quick CSS to remove the featured images on the single post view.
.single .big-preview.single-big, .single .small-preview {
display: none;
}
Best regards,
Ismael
Hey Monsoon!
Can you please give us a link to the actual article with the featured image? You can add this on your custom.css or Quick CSS to remove the featured image link:
.big-preview.single-big a {
pointer-events: none;
}
You can edit functions.php to control the size of the featured image.
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
Change the width and the height then use this plugin to regenerate the thumbnails. http://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
Ismael
We had some issues with with max-width on the base.css file. Specifically, we have a script that automatically generates thumbnails for youtube videos with a ‘play’ button graphic. It also removes the ugly black bars with the thumbnails generated by Youtube for non-16:9 videos and then links the video into a lightbox style popup window to play them. Upon completion of the video, it automatically closes the lightbox window, so no nasty advertisement popups appear in your face. It does this automatically with no interaction by the website visitor. Smooth, nice and unobtrusive. So there are Ajax callbacks happening to refresh the page content at various stages. The play button graphic has difficulty appearing centered in the thumbnail image using the enfold template upon loading. Something that doesn’t occur when we hand-code a lot of Youtube video links in our own web page. We’ve loaded 40-50 Youtube thumbnails on a hand-coded page with no errors, picture perfect thumbnails and the play graphic dead centered in the thumbnail. And that’s working on Localhost too! Sniffing around your CSS, it may be narrowed down to the img CSS inside Enfold, but I haven’t completely nailed it down. In IE, the thumbnails simply wouldn’t show up, until I comment out the following line in base.css Line 152 max-width: 100%;
So how important is this line to Enfold’s performance?
Do you have the CSS properties set at 100% for a reason? Is it important for responsiveness perhaps?
Curious. Commenting out that line cured the IE problems, but we still have the issue with our transparent play graphic not centering in the middle of the thumbs.
I realize this is a site specific problem and probably not a major issue with 99% of the folks that have your template, but I would like some input about why the settings are set at 100% so we can look at options on our end. It would also be useful to know if we have overlooked some CSS properties inside the various Enfold files that may have an impact on what I’m describing. I apologize but I don’t have a link online for you to look at. I may be able to put up a test page on a server to illustrate what I’m talking about. It would also show you a rather nifty script that is far superior to the lightbox clone you’re using. It’s very full-featured, has it’s own Ajax library with lots of nifty functions for advanced webmasters and the documentation and support is like no other script online. It’s been around for a very long time too. I figure you folks are vested in your current lightbox script, so I haven’t brought it up, but this one is light years ahead of the one you’re using. Not even close. I changed the entire look of the lightbox to black with one property setting. I saw a thread asking about putting the “title” attribute into the caption area of your Masonry script.
With this script, it’s one simple attribute/option to set and you’re done. No javascript to code inside your functions. It snags the title attribute and loads it into the caption area automatically. It’s good-to-go out of the box.
Anyway, I thought I would expand on your question about max-width. This is one of the circumstances where we had issues with max-width, so if it’s not necessary for the performance of Enfold, then you folks might want to consider changing it due to it’s historical problems with IE.
Cheers,
Don
Hiya,
I’ve taken more of a look at this & I’m still a little stumped.
If you could point me in the direction of what code/where to modify – I’d greatly appreciate it.
Thanks,
Jas
Hi ilkoallex!
1.) You can control the featured image for blog post on functions.php, find this code:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
You can use this plugin to regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/
2.) Again, edit functions.php, make sure that you have this line of code:
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
Regenerate the thumbnails.
3.) Do you want to disable it on the single post view or the blog post overview? You can use this on your custom.css or Quick CSS:
Blog Overview:
.small-preview, .big-preview.single-big {
display: none;
}
Single Post:
.single .small-preview, .single .big-preview.single-big {
display: none;
}
Cheers!
Ismael
hi,
i have 2 remaining issues:
1. the gallery post format is loading 80px by 80px thumbnail sizes though it shud be 180px.
For some reason i cannot change the thumbnail size for the post galleries but its works fine on the page gallery function (meaning when i add a gallery to a PAGE, not a post i have a selection of the thumbnail size- in the post format for a gallery i have no way to set the image size and its loading the smallest thumbnail sizes?
post format (no options to set size of thumbs and when i change the number of columns it doesnt work)
http://www.heliproducts.com/webtest/aenean-vulputate-eleifend-tellus-aenean-leo-ligula/
page format for gallery (thumbnail size is correct also though changing the number of columns doesnt work but not a big deal)
http://www.heliproducts.com/webtest/photos/
2. I am trying to make the mobile nav appear in the media queries for when the window is less than 1086px wide but for some reason the mobile version of the menu doesnt load until around 768px – where do i have to change this so it resizes to the mobile menu for anything below 1086px?
thanks again for your help,m
-
This topic was modified 12 years, 4 months ago by
MichaelT1.
Hello,
I would like to prevent the featured image from appearing on the blog post. I would like it to be visible only on the thumbnail on the main page where I have a horizontal post slider.
The problem is that when I click on the post thumnail to view the post, the featured image shows on the blog post as well. I have a video on that post. I would like the featured image to show as a thumbnail and the video on the post (not both)
Is that possible? Can you assist me, please?
Thank you
-
This topic was modified 12 years, 4 months ago by
ullastret.
Hi,Devin,
Thank you for your reply.
The plugin you recommend is a great plugin, now I can change the size of the thumbnail directly instead of adding code to Quick CSS.
But when I change the size of thumbnail through this plugin, the picture is became big size but still is blurry.
You know what i mean? I hope I can attach a pictures to explain,but I can’t find a upload attachment button.
Waiting for your reply.
Best regards,
Neil
Hi Guys,
How can I remove the Comment count and Date stamp from the blog grid view template?
Its the Comment count and Date below each thumbnail when using the blog grid view.
Hi!
You can use this plugin to change the size of that generated thumbnail to the increased css size and then regenerate your thumbnails: http://wordpress.org/extend/plugins/simple-image-sizes/
Best regards,
Devin
Hi MichaelT1!
There thumbnails on my end http://i.imgur.com/eoFQskX.jpg
Can you please check once again and confirm that they are there on your end as well?
Best regards,
Yigit
Hey!
You can add it to custom.css file inside Enfold/css folder or into Style.css file in your child theme
Best regards,
Yigit
Ha! That was easy, I always look for the difficult solution. One thing, I placed that CSS in the style sheet with !important and it did not work, should I be using the Quick CSS? I’ll being using a child theme.
Thanks for the help!
Hey LAHWebDesigns!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired
#top .gallery .gallery-item { width: 160px; height: 160px; }
Regards,
Yigit
I’d like to create a gallery with thumbnails with large image above – like ‘Gallery with Preview’ or ‘Bigger Gallery with Preview’ on your sample page:
http://kriesi.at/themes/enfold/shortcodes/gallery/
But I would like to add a 3 or 4 line description to show between the main image and the thumbnails. The descriptions are too long to comfortably work as pop-ups over the thumbnails.
Would this be possible in Enfold?
hi,
there’s something wrong witht he multiple image gallery format can u please let me know how i can fix this so there are thumbnails for the gallery? this doesnt look right
http://www.heliproducts.com/webtest/aenean-vulputate-eleifend-tellus-aenean-leo-ligula/
Hi there. Could you please clarify the following about Post Slider:
1) Is it possible to have 2 rows? I would like to have 2 rows of 4 in each.
2) Can these be linked to standard pages that are not Portfolio Items or Categorized Posts?
3) If number 2 is not possible, could you please advise if there is another featured thumbnail slider in Enfold that could click through to a standard static page?
Thank you!
Hi there,
I have the following issue;
Hard Cropped Image
It seems to be using a cropped version of the uploaded image, here what it looks like, along with what I’d like it to look like;
Thumbnail Sizes
Can anyone point me in the right direction?
Thanks,
Jas
Hey Cutegi!
here’s the link you can follow the instructions given by “allegrabillings”
https://kriesi.at/support/topic/add-social-icons-to-nav-like-the-kriesi-site/
Regarding fix background I tried to keep a fixed background but it wasn’t really working. Was looking a bit weird when scrolling down. :)
Thanks a lot Yigit!
Its working fine but still as I mentioned in my previous message,
1. Its not showing Hover effect just like when you rollover an image the image get a bit fade and an Arrow popups for zoom in.
2. When I click on thumbnail (large image now) image open in pop up but when I click on zoom in (right top of the lightbox) it doesn’t zoom in to actual size of the uploaded image.
to elaborate you more I created 2 images by using Gallery Plugin and 2 images by Image Media Element. So, you can check the upper two images are not zooming in to actual size while the other two images are showing you full size of the image when you click on zoom button in lightbox.
http://goo.gl/wKE1F2
3. When you scroll down images pops up for no reason.
Please help thanks.
Hi!
You can add following code to Quick CSS as well to keep opacity at 1
.avia_transform .avia-gallery-thumb img { opacity: 1; }
Best regards,
Yigit
Hi wieslander!
You can try to install this plugin: http://wordpress.org/plugins/simple-image-sizes/ and define a new thumbnail size (i.e. 1500x200px). Afterwards regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/ and use the 1500×200 size instead of 1500×430 for the Easy Slider on the homepage.
Cheers!
Peter
Hey!
Open up enfold/includes/loop-page.php and replace
<?php if($slider->slidecount) echo $slider->display(); ?>
with
<?php
if($slider->slidecount) echo $slider->display();
$description = get_post_field('post_content', get_post_thumbnail_id());
echo $description;
?>
You can use the “Description” field on the image attachment editor page (Media > Library > Edit) to save a description text.
Cheers!
Peter
u need fixed background in your beta web :)
Hello khalidmuharraqi :) plz tell how u make this header menu in your web . thanx .
-
This reply was modified 12 years, 4 months ago by
Cutegi.