-
AuthorSearch Results
-
May 30, 2013 at 3:43 pm #121495
In reply to: Thumbs looks strange
Hi,
Please update your theme, a big update just came out to v1.5 with lots of improvements.
—-
You need to change ”portfolio_small” size , that’s the one for the portfolio thumbnails to 257×257 http://www.clipular.com/c?6460489=EWdVEmL1nhLiH1o9lciIRKRJG1o&f=.png (i accidently put 300×300) Also notice i clicked the button on there to make it change to blue color ‘Show in post insertion’ .. to the right and on the same line as portfolio_small.
Try regenerating again on the bottom, and so it doesnt take forever, deselect all the various image locations and then select only the portfolio_small , and do the same for the post type portfolio items ( see image: http://www.clipular.com/c?7011155=Tr_UPcTokycneZe1kCioCh19Kkc&f=.png )
If 1st image doesnt regenerate, just delete it and reupload it again .
Thanks,
Nick
May 30, 2013 at 8:22 am #121683In reply to: Blog featured image not fullwidth at 1210px
Oops, it seems I was too fast. Forgot a step in the regenerate thumbnails plugin. It does work fine now!
Thanks again for the help, Dude!
May 30, 2013 at 7:22 am #121681In reply to: Blog featured image not fullwidth at 1210px
Please try following – in functions.php replace:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize sliderwith
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>360 ); // images for fullsize pages and fullsize sliderand regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/
May 29, 2013 at 6:52 pm #121819In reply to: Slight change to 2/3 and 1/3 dimensions
Hey.. not referencing the thumbnail size, but rather the image size within the 2/3 layout.
http://godsfingerprints.net/portfolio-item/do-not-worry/ is an example.
The original file is 1920×1200.. and it sizes it down to the 2/3 column, which is 666px wide. I’m just wondering if there’s any way I can increase or decrease that number. Perhaps by increasing the width of the site by a few pixels?
Thanks again for your understanding.. very much appreciated!
May 29, 2013 at 12:46 pm #24000Topic: Enfold Combo Widget
in forum Enfoldmirzepapa
ParticipantHi,
finally pics schow up in the enfold combo widget, updating to 1.5 did the trick. But now they do not show as thumbnails, rather in full size. Any idea on how to solve this? Thanks in advance.
Cheers, Sebastian.
May 29, 2013 at 12:08 pm #121818In reply to: Slight change to 2/3 and 1/3 dimensions
Hi,
tbh I’m not aware of a thumbnail size which generates images with 666px. All sizes are defined in functions.php:
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
$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']['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'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)The portfolio uses the “portfolio” or “portfolio_small” size by default but since version 1.5 you can also choose a different thumbnail size.
May 29, 2013 at 12:00 pm #119333In reply to: Slider Thumbnails
FYI, I didn’t have any plug ins installed when having the issue and right now only have one plug in which when deactivated I still have the issue of the thumbnails not showing up.
May 29, 2013 at 6:57 am #121493In reply to: Thumbs looks strange
Thanks
I want to have second variant.
So as you told i installed plugin, on Media Settings changed Thumbnail size to 257×257. Clicked to Regenerate Thumbnails. But i see message: Regenerating 2 of 76 (3)… and 1% done and i see first image image http://hotapp.org/wp-content/uploads/2013/05/template5Preview-600×430.jpg preview and nothing happend next. I clicked to Save Changes button but after refresh the Portfolio page thumb doesnt changed:(
Maybe need recreate that post?
May 29, 2013 at 2:15 am #117991In reply to: How to remove featured image inside single post?
Hi,
Can you give us a link to your website?
Please check functions.php. Do you have this line of code? 281-321
if(!function_exists('avia_post_nav'))
{
function avia_post_nav($same_category = false)
{
if(!is_singular() || is_post_type_hierarchical(get_post_type())) return;
//if(get_post_type() === 'portfolio') return;
global $avia_config;
$same_category = apply_filters('avia_post_nav_categories', $same_category);
$entries['prev'] = get_previous_post($same_category);
$entries['next'] = get_next_post($same_category);
$output = "";
foreach ($entries as $key => $entry)
{
if(empty($entry)) continue;
$tc1 = $tc2 = "";
$link = get_permalink($entry->ID);
$image = get_the_post_thumbnail($entry->ID, 'thumbnail');
$class = $image ? "with-image" : "without-image";
$output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
$output .= " <span class='label iconfont'>".$avia_config['font_icons'][$key]."</span>";
$output .= " <span class='entry-info-wrap'>";
$output .= " <span class='entry-info'>";
$tc1 = " <span class='entry-title'>".avia_backend_truncate(get_the_title($entry->ID),75," ")."</span>";
if($image) $tc2 = " <span class='entry-image'>{$image}</span>";
$output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;
$output .= " </span>";
$output .= " </span>";
$output .= "</a>";
}
return $output;
//add this line for fake. never gets executed but makes the theme pass Theme check
if(1==2){paginate_links(); posts_nav_link(); next_posts_link(); previous_posts_link();}
}
}Regards,
Ismael
May 28, 2013 at 7:22 pm #119332In reply to: Slider Thumbnails
Temporarily it’s at http://www.withthisring-false.info
Thanks for looking at it!
May 28, 2013 at 4:49 pm #121492In reply to: Thumbs looks strange
Hi,
Some of your thumbnails are 260×185 (first one -image slider os) while others are 257×257 (second, third, fourth ones).
The best way to go about it, is to first install the Simple Image Sizes plugin ( http://wordpress.org/extend/plugins/simple-image-sizes/ ). The plugin will give you complete control over images: setting constraints for specific locations like blog, thumbnails, portfolio, gallery, shop, etc. along with the ability to set whether to crop an image or not in Settings > Media.
Changing the dimensions of images does NOT automatically change all the images already uploaded but only affects new uploads. To change the sizes of images already uploaded, you will need to use the Regenerator – also a part of the Simple Image Sizes and found on the bottom of Settings > Media page.
—
So which consistent look are you trying to achieve… the way the first image looks on that page your provided or the way second image looks?
Thanks,
Nick
May 28, 2013 at 3:46 pm #121342In reply to: Lightbox on preview images…
Hi,
Have you assigned the News page to be the blog in Enfold > Theme Options? http://www.clipular.com/c?6941003=Gaw-5mtW4pH-GEOD9ZyE_T_op9A&f=.png
Are your settings in Settings > Reading (front page display) http://www.clipular.com/c?6919054=JosRzTZUT-5OncFDyuys04CjGFI&f=.png (top part) the same as here?
How are you creating the individual image page? This one http://www.juls.ch/studios/lost/ ?
—-
You are setting the post as Format “image”.. Save it as : format: Regular. .. I think the image format does what it says, it displays the entire image.
Also don’t forget that you can add the Advanced Layout option to posts as well, and that way you can add a slider in there or a gallery, so that way you will see the thumbnail first.
Thanks,
Nick
May 28, 2013 at 3:32 pm #119331In reply to: Slider Thumbnails
Hi,
Please provide a url to the page so I can take a look at the code and see if you have errors coming from somewhere else. Please try deactivating your plugins as well.
Thanks,
Nick
May 28, 2013 at 2:59 pm #23919Topic: advertise widget
in forum Enfoldyingfuli
ParticipantHi,
Is it possible to adjust the advertise widget so it displays just one advertisement? I find two thumbnail advertisements rather limited especially considering the title option: what do you call two advertisements? Also this is important as I want to use more than one advertisements but slightly more noticable.
Regards,
Ying-Fu
May 28, 2013 at 11:53 am #120880In reply to: Understanding image sizes – Help!
Hi Merkur-Trykk,
Ultimately you will not be able to control the sharpness that level without replacing the thumbnails that get generated by wordpress via FTP after they have been generated.
You can use a plugin like this one to quickly modify image sizes and regenerate and play with the sizes to get the best results: http://wordpress.org/extend/plugins/simple-image-sizes/
The wordpress thumbnail functionality is just not that great if you want zero change in your images. From the demo content you can see an example with this image:
Fullsize: http://kriesi.at/themes/enfold/files/2011/12/dash_tresor.jpg
Thumbnail: http://kriesi.at/themes/enfold/files/2011/12/dash_tresor-260×185.jpg
WordPress does a slight file size reduction (which reduces quality) as well as attempts to shrink it as best it can. Even a single pixel difference can cause the thumb to have better or worse quality.
Regards,
Devin
May 28, 2013 at 11:10 am #119330In reply to: Slider Thumbnails
I am having the same issue of the thumbnails not showing. I’ve duplicated the settings you have and also uploaded images on the slide page where it says Thumbnail, but still no thumbnail navigation. Any thoughts? Thanks.
May 28, 2013 at 4:15 am #121490In reply to: Thumbs looks strange
Hi,
Can you give us a look to your website? What thumbnails are you referring to? Portfolio? Blog?
Regards,
Ismael
May 28, 2013 at 3:40 am #121340In reply to: Lightbox on preview images…
Hi,
Open loop-index.php then find this code
echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";
//default link for preview images
$link = get_permalink();
//on single page replace the link with a fullscreen image
if(is_singular())
{
$link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
}
//echo preview image
if(strpos($blog_style, 'big') !== false)
{
if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';
if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
}Replace it with:
echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";
//default link for preview images
$link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');;
//on single page replace the link with a fullscreen image
if(is_singular())
{
$link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
}
//echo preview image
if(strpos($blog_style, 'big') !== false)
{
if($slider) $slider = '<a href="'.$link.'" rel="lightbox">'.$slider.'</a>';
if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
}Please try this one. Reset Dude’s code first. Remove browser cache then reload the page.
Regards,
Ismael
May 27, 2013 at 5:00 pm #120902In reply to: Upload Custom Header Image ( Doesn't Work )
Hi dsgnerfw,
You should be able to add a featured image to your posts and it will set the small thumbnail in those widgets.
Regards,
Devin
May 27, 2013 at 10:08 am #121130I tagged this thread for Devinv because he can test your website on a Mac. I tested it on Win8 with Chrome and it seems to work for me: http://www.screenr.com/0a8H
May 27, 2013 at 7:56 am #121338In reply to: Lightbox on preview images…
Try following – in wp-contentthemesenfoldincludeshelper-post-format.php replace:
$prepend_image = get_the_post_thumbnail(get_the_ID(), 'large');with
$linkimg = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full' );
$prepend_image = get_the_post_thumbnail(get_the_ID(), 'large');
$prepend_image = '<a href="'.$linkimg.'">'.$prepend_image.'</a>';May 26, 2013 at 11:25 pm #115608In reply to: Scrolling to Bottom before gallery loads
open up shortcode.js and search for this code around line 205:
//trigger displaying of thumbnails
gallery.on('avia_start_animation', function()
{
images.each(function(i)
{
var image = $(this);
setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
});
});
change it to:
//trigger displaying of thumbnails
gallery.on('avia_start_animation', function()
{
images.each(function(i)
{
var image = $(this);
setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
});
}).trigger('avia_start_animation');
gallery thumbs should then load immediately
May 26, 2013 at 5:54 am #121000In reply to: Change the height of Portfolio Featured Images
Hi,
Please use this plugin.
http://wordpress.org/extend/plugins/regenerate-thumbnails/
Regards,
Ismael
May 26, 2013 at 3:23 am #120878In reply to: Understanding image sizes – Help!
Hi,
Sometimes, the best way to get sharp thumbnails is to create thumbnails that fits exactly on the container. This is why we need to change the thumbnails sizes on functions.php. Can you give us a link to your website?
Regards,
Ismael
May 26, 2013 at 3:09 am #121096Hi,
Suggested image size for that kind of layout is 666x539px. You can change this line on functions.php
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)Regenerate the thumbnails.
Regards,
Ismael
May 25, 2013 at 7:48 pm #120999In reply to: Change the height of Portfolio Featured Images
Thanks, Ismael,
How do you regenerate the thumbnails?
May 25, 2013 at 5:26 am #120998In reply to: Change the height of Portfolio Featured Images
Hi,
You can change the image size on functions.php
$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 columnsThe code above are thumbnail size for 2,3 or 4 column portfolio. Regenerate the thumbnails after.
Regards,
Ismael
May 24, 2013 at 7:24 pm #23798Topic: Enfold Child theme Site Speed Optimization
in forum EnfoldBWIdaho
ParticipantHello!!
Thank you for all your help so far. I love this theme and am excited to create my best work yet because of all of you.
I need help with W3 Total Cache. I’ve set it up with minimal settings. I would love to do whatever it is you did to the demo site. When I load my site, in Pingdom Tools all my css files are being loaded separately. If I auto minify all of the css is lost. How would I go about combining all the css. Also, I am using a child theme.
When I go with the minimal settings for the minify and just have the js on, I loose some functionality. Right now I notice that my blog preview buttons no longer show the next thumbnail. I love this feature and would like to keep it. I think I am having trouble because of how the theme is set up for every possibility but I could also be missing something.
The browser is also searching for an empty/non-exsistent style.css.
Here are links to my 3 altered settings on W3 Total Cache and website performance:
Thank you for your time and knowledge.
Bethany
May 24, 2013 at 3:14 pm #23788Topic: Safari browser issue, hover on team thumbnails not working
in forum Enfoldcogitocorp
ParticipantHello! Great theme, I’m really enjoying using it. One of my coworkers loaded up a test page I setup in Safari 5.1.7 on Mac Lion 10.7.5 and he’s not seeing the hover links to go to the full bios for each team member:
http://www.cogitocorp.com.php53-17.ord1-1.websitetestlink.com/?page_id=1439 <–Here’s the test page
I’ve setup sub-pages with a full bio and large photo for Team Members “Deric Corwin” and Chuan Zhang” on that page, and for some reason he doesn’t even see the links on hover at all. Any idea how I can fix this?
Thanks!
May 24, 2013 at 2:56 pm #120901In reply to: Upload Custom Header Image ( Doesn't Work )
And also for the footer area there’s a widget for Popular | Recent | Tags.
And there are empty boxes or blank thumbnails to the left. How do I add images ? In the individual posts or is there something that I’m missing?
And how do I change the outlines so I can remove it ?
-
AuthorSearch Results
-
Search Results
-
Topic: Enfold Combo Widget
Topic: advertise widget
Hello!!
Thank you for all your help so far. I love this theme and am excited to create my best work yet because of all of you.
I need help with W3 Total Cache. I’ve set it up with minimal settings. I would love to do whatever it is you did to the demo site. When I load my site, in Pingdom Tools all my css files are being loaded separately. If I auto minify all of the css is lost. How would I go about combining all the css. Also, I am using a child theme.
When I go with the minimal settings for the minify and just have the js on, I loose some functionality. Right now I notice that my blog preview buttons no longer show the next thumbnail. I love this feature and would like to keep it. I think I am having trouble because of how the theme is set up for every possibility but I could also be missing something.
The browser is also searching for an empty/non-exsistent style.css.
Here are links to my 3 altered settings on W3 Total Cache and website performance:
Thank you for your time and knowledge.
Bethany
Hello! Great theme, I’m really enjoying using it. One of my coworkers loaded up a test page I setup in Safari 5.1.7 on Mac Lion 10.7.5 and he’s not seeing the hover links to go to the full bios for each team member:
http://www.cogitocorp.com.php53-17.ord1-1.websitetestlink.com/?page_id=1439 <–Here’s the test page
I’ve setup sub-pages with a full bio and large photo for Team Members “Deric Corwin” and Chuan Zhang” on that page, and for some reason he doesn’t even see the links on hover at all. Any idea how I can fix this?
Thanks!
