Hi gameznet!
I don’t know of any that can go backwards but there are various functions floating around that will set the featured image to whatever the first image of a post is. The issues is that it only sets it on the post save.
I’ve not tested this but its an example of what I mean:
http://bradsknutson.com/blog/automatically-set-featured-image-in-wordpress/
It doesn’t come without issue however: http://wordpress.stackexchange.com/questions/127196/function-to-auto-set-a-featured-image-that-is-already-in-use
So it is possible but not something the theme currently has support for. There may even be a plugin out there that will auto scan your old posts and update but I’m not aware of one off hand (or with a bit of cursory searching).
Regards,
Devin
Our website uses post sliders to display recent posts from several authors.
Often authors forget to set a featured image and then the post sliders show a place holder image.
Before changing to enfold we also already had many posts which didn’t have featured images.
If we have an existing post with an image in them and then edit it to have a featured image we then get a situation where posts display the same image twice.
If we don’t have an image in the post and only have a featured image then when we want to share the post with social sites there is no image shared.
So can we just have the post slider use the first image from the post rather than a featured image ?
Thanks for the reply.
The white sections disappearing intermittently occurred using Safari, and the strokes using Safari and Firefox. I’ve made it full length now as I can’t find a solution.
Now however when using Firefox, the image shifts slightly downwards when the text flies in, and upwards when the text flies out.
Any ideas?
Thanks
Hey!
Please change your Blog Style to this (Enfold > General Settings):

Regards,
Josue
Hi!
What kind of Blog type are you using? can you post a link to it?
Cheers!
Josue
Hi!
Please use following code instead
.big-preview.single-big { pointer-events: none; }
Cheers!
Yigit
I have placed a Layerslider onto my home page with slider style of max-width: 1030px;.
Randomly, and usually during transitions, the colour behind the slider images (white) flickers or dissapears all together to reveal the grey of the page background. In the Appearance I have set the colour to #ffffff.
Also, there was a line beneath the slider which I remove using
.home .container_wrap, .home .avia-layerslider {
border-top-style: none;
}
However there is still a very faint line appearing. You can view the development site here.
Any help on these issues would be much appreciated! Thank you!
Hey grktmktg!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.blog .big-preview.single-big { pointer-events: none; }
Regards,
Yigit
In the Enfold theme, the Featured image is normally shown above the blog post with a hover-over and linked to the full-size version of the image.
We don’t want Featured images to be linked to anything. They’re there just to make the post look pretty as they are, not to demonstrate something that needs to be zoomed in. They should not be interactive.
We just need to find where that link is set and remove it throughout the template.
Thanks!
I’d like to be shown how to display the full image (rather than a portion of it with a link to show the full thing) inside the posts page. Could you help me?
Thanks!
Hi Gabe!
Open header.php and look for line 203, after the div#main opens put this code:
<?php if(is_archive()){ ?>
<img src="_IMAGE_">
<?php } ?>
If you want to use a Avia shortcode simply replace the img code something like this:
<?php echo do_shortcode("[SHORTCODE HERE]"); ?>
You can generate the shortcode in a separate Page (without entering ALB).
Cheers!
Josue
Hey!
You should modify archive.php file in root folder and loop-archive.php file inside wp-content\themes\enfold\includes folder, however you are going to need to hire a freelance developer on Microlancer or Codeable for that kind of customization as it is beyond the scope of support we can provide. You can also request quote here.
Regards,
Yigit
Hi!
You are welcome Tusing, glad we could help!
Regards,
Yigit
beautiful. thanks so much . Super support.
Hi!
Please add following code to Quick CSS instead
.flex_column .avia-slideshow.avia-builder-el-no-sibling {
margin-top: 11px;
}
Cheers!
Yigit
This reply has been marked as private.
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia-slideshow-inner { border: solid 2px red!important; }
Regards,
Yigit
Hey tusing!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia-slideshow { margin-top: 0; }
Cheers!
Yigit
Hi!
Please add following code to Quick CSS as well
1-
.avia-icon-list-container { margin: 10px 0; }</Coe>
2- You can add Color Section element and add background image to it and make it fixed
3-
.main_color .avia-icon-list .iconlist_icon:hover {
background-color: red!important; }
Regards,
Yigit
This reply has been marked as private.
I thought you were referring to the gallery when its open as a lightbox, hence the prettyPhoto fix. Regarding your current setup although it may be possible, we can’t help you with that because that would a require a much deeper customization to the theme files and that’s out of the scope of the support we can offer.
If you prefer you can request a customization quote here (WerkPress).
Best regards,
Josue
Error went away with the new code but slideshow still does not autoplay
example
Hi,
I use within my portfolio item the version with Gallery (like in the demo theme here).
I use the plugin “Simple Image Size” to add my own size for the little thumbnails below the big image, it’s a size of 118×58 px JPG and yes, I regenerated the thumbnails:

When I open the thumbnail in a new browser window, then it is really sharp and not blurry.
But the same size within the gallery is blurry. Is somewhere a compression or what could cause this?
See the comparison at its real size here:
http://screencloud.net/v/6OGk
Thanks.
Hi!
As far as I know LayerSlider by itself wont shrink text on mobile devices. There would need to be additional css rules for tablet/mobile break points to change the size of your text as needed.
A good and simple workaround is to use images in place of plain text which will get scaled down.
If the contents are getting cut off on the sides you can try using percentage placement of the elements instead of pixels when aligning them in the LayerSlider admin for that slide.
Best regards,
Devin
Where in the code should I do?
<?php
global $avia_config;
$blank = isset($avia_config['template']) ? $avia_config['template'] : "";
//reset wordpress query in case we modified it
wp_reset_query();
//get footer display settings
$the_id = avia_get_the_id(); //use avia get the id instead of default get id. prevents notice on 404 pages
$footer = get_post_meta($the_id, 'footer', true);
$footer_widget_setting = !empty($footer) ? $footer : avia_get_option('display_widgets_socket');
//check if we should display a footer
if(!$blank && $footer_widget_setting != 'nofooterarea' )
{
if( $footer_widget_setting != 'nofooterwidgets' )
{
//get columns
$columns = avia_get_option('footer_columns');
?>
<div class='container_wrap footer_color' id='footer'>
<div class='container'>
<?php
do_action('avia_before_footer_columns');
//create the footer columns by iterating
$firstCol = 'first';
switch($columns)
{
case 1: $class = ''; break;
case 2: $class = 'av_one_half'; break;
case 3: $class = 'av_one_third'; break;
case 4: $class = 'av_one_fourth'; break;
case 5: $class = 'av_one_fifth'; break;
}
//display the footer widget that was defined at appearenace->widgets in the wordpress backend
//if no widget is defined display a dummy widget, located at the bottom of includes/register-widget-area.php
for ($i = 1; $i <= $columns; $i++)
{
echo "<div class='flex_column $class $firstCol'>";
if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer - column'.$i) ) : else : avia_dummy_widget($i); endif;
echo "</div>";
$firstCol = "";
}
do_action('avia_after_footer_columns');
?>
</div>
<!-- ####### END FOOTER CONTAINER ####### -->
</div>
<?php } //endif nofooterwidgets ?>
<!-- end main -->
</div>
<?php
//copyright
$copyright = avia_get_option('copyright', "© ".__('Copyright','avia_framework')." - <a href='".home_url('/')."'>".get_bloginfo('name')."</a>");
//you can also remove the kriesi.at backlink by adding [nolink] to your custom copyright field in the admin area
if($copyright && strpos($copyright, '[nolink]') !== false)
{
$kriesi_at_backlink = "";
$copyright = str_replace("[nolink]","",$copyright);
}
if( $footer_widget_setting != 'nosocket' )
{
?>
<footer class='container_wrap socket_color' id='socket' <?php avia_markup_helper(array('context' => 'footer')); ?>>
<div class='container'>
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
<?php
echo "<nav class='sub_menu_socket' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
$avia_theme_location = 'avia3';
$avia_menu_class = $avia_theme_location . '-menu';
$args = array(
'theme_location'=>$avia_theme_location,
'menu_id' =>$avia_menu_class,
'container_class' =>$avia_menu_class,
'fallback_cb' => '',
'depth'=>1
);
wp_nav_menu($args);
echo "</nav>";
?>
</div>
<!-- ####### END SOCKET CONTAINER ####### -->
</footer>
<?php
} //end nosocket check
}
else
{
echo "<!-- end main --></div>";
} //end blank & nofooterarea check
//display link to previeous and next portfolio entry
echo avia_post_nav();
echo "<!-- end wrap_all --></div>";
if(isset($avia_config['fullscreen_image']))
{ ?>
<!--[if lte IE 8]>
<style type="text/css">
.bg_container {
-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config['fullscreen_image']; ?>', sizingMethod='scale')";
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config['fullscreen_image']; ?>', sizingMethod='scale');
}
</style>
<![endif]-->
<?php
echo "<div class='bg_container' style='background-image:url(".$avia_config['fullscreen_image'].");'></div>";
}
?>
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
<a href='#top' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a>
<div id="fb-root"></div>
</body>
</html>
And what should I write? <iframe ???></iframe>?
Hi!
Try with this line instead:
elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh, autoplay_slideshow: true});
Cheers!
Josue