Is there a way to get some of the old WP layer slider samples that were in the older vs of Enfold?
thanks!
Julie
Hi Josue,
So enfold uses prettyPhoto?
Had a look around on the link you gave but an not sure if I need to install prettyPhoto or what?
regards Corien
Hi Enfold support!
I’ll take the chance to ask for something concerning this topic: I’d like to know how to set a parent page for posts, since it seems posts haven’t got one. I cannot assign them one: is it correct?
Please, see the screenshot below and have a look both to breadcrumb and the taxonomy.
Maybe, I should set something in permalinks settings in order to have categorized posts.

Please, let me know something about and thanks in advance.
Best regards.
The logo is escaping the page to the left in smaller screen sizes using boxed layout. Using latest chrome, latest enfold version and win 7.
I would like to customize by default this link Enfold Theme by Kriesi by the link of my website instead.
I guess it’s possible with CSS
Is there a way to add a background music to the Enfold theme? Not only for one page but for the entire site. A looped background music. Thank you.
Thanx Ismael.
It is Android 4.2 and all browsers behave the same: Chrome, Firefox and default Browser.
Hey!
Please make sure that the header settings are saved properly for all languages. Go to Enfold > Theme Options > Header and check the settings. Then click the “Save Changes” button. Afterwards select another language from the language switcher (can be found in the admin toolbar at the top) and then check the Enfold > Theme Options > Header and check the settings of the translated website. Probably the settings are a bit different and you need to re-configure them. Afterwards hit the “Save Changes” button again.
Regards,
Peter
Hi Kaio!
Yes, the layout builder is compatible with WPML. You can create different layouts for each page and/or translation of a page and you can even translate the portfolio grids, blog elements, masonry galleries, etc.
Regards,
Peter
This reply has been marked as private.
This reply has been marked as private.
Hey keithcrest!
Thank you for using the theme. I hope you’re doing great.
Remove all css modifications that you added for the header. Remove the header.php on the child theme then replace it with the new header.php from the parent theme folder. You can see the header code on includes > helper-main-menu.php. Please reconfigure the header settings again because Kriesi changed the header panel. You’ll see that there a lot of added options like header height, logo and menu position, extra element, phone etc.
Best regards,
Ismael
Hi chiummog!
1.) You can apply the anchor menus. Please refer to this link: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
2.) You can do the same as step 1.
3.) Raleway is already included for the heading font on Enfold > Styling. Add this on functions.php if you want to use it for the body font:
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Raleway'] = 'Raleway';
return $fonts;
}
Regards,
Ismael
Hi Nenad!
On what browser and OS are you testing this with? Let me ask Kriesi about this. I think I saw a few inquiries about the header_resize function not working on Chrome Windows 8.
Cheers!
Ismael
Hi Labhanshi!
1.) The layer slider logo is working properly when I tested it on my end. There is actually no recommended logo size. You can experiment with it, see what works best.
2.) Please try to resave the settings. The demo works fine after the latest update of Enfold. Edit the slide then go to Slide Settings > Slideshow > Slideshow behavior, enable the “Start slideshow” setting.
Please give us a link to the website.
Best regards,
Ismael
Hi!
You can add this on your custom.css or Quick CSS to create a right margin:
#footer #text-8 .av_font_icon {
margin-right: 20px;
}
Best regards,
Ismael
Hey fefrancesco!
1.) There is a database error connection. Please contact your host.
2.) The demo uses images with 1500px in width. 1024px is fine but if you want a sharper image you should use larger source image.
3.) Please fix the database error issue. Assuming you’re using a layer slider, please go to the slide’s Slide Settings > Navigation Area > Show navigation buttons. Disable all options.
4.) Go to Enfold > Footer. On the Copyright field add the [nolink] tag.
Cheers!
Ismael
Hi Ismael, thanks for your reply. Can you tell me who is the plugin author? (I got the plugin with Enfold, I didn’t purchase it separately.)
Thanks in advance for pointing me in the right direction!
Hey!
I don’t see any layer slider on the website. Can you please post the link to the actual page with the layer slider? Like what Yigit said, create a layer then add the contact form code HTML/Video/Audio panel. You can even use the contact form shortcode.
Regards,
Ismael
Hey!
Create a slide then insert 4 layers, on the last layer insert the video. Edit the first layer then add an image, go to Transition panel. On transition in option, set the Delay to 0. Do the same with the second layer but give it a Delay of 2000 for example. For the third layer give it 4000 for the delay. You can increase the delay if you want the background images to stay longer. Make sure that the last layer with the video has a 0 delay so that it will show up first when the slide loads.
Best regards,
Ismael
Hi Gary!
Sounds like the server is either timing out because of a size limit or just a time limit. You can upload the theme easily over FTP which will also give you more control on setting up a child theme as well. See: http://kriesi.at/documentation/enfold/install-enfold-over-ftp/
Cheers!
Devin
Hey sgulick!
There is only ever one version of the theme download from your account on ThemeForest which is the most recent version. It won’t show as any specific number but right now it is the newest 2.6 version.
Best regards,
Devin
Hi!
I’m sorry but all three sites are not loading on my end. I’m not sure why this is happening on my end but have you tried to reconfigure the header settings? Saving the settings on Enfold > Header might fix the issue. Kriesi created a new platform with a lot of options to modify the header.
Best regards,
Ismael
Hey!
You can find the avia post navigation functions on functions-enfold.php:
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();
$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;
$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' ".av_icon_string($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;
}
}
Best regards,
Ismael
Hi we first tried doing an animated slider in the build in Layerslider WP in the enfold theme and while it looks great on desktop, we’re having trouble on mobile. The text shrinks down, but overlaps each other and the image and icon shortcode we put in doesn’t scale down.
So next we tried revolution slider, and had problems getting it to even be full screen. We saw someone with a similar problem in the forum and saw a response with putting it in a color section and putting in some CSS into the quick css and then it still didn’t work without a lot of tweaking. We were eventually able to get it to work using a custom layout and manually entering in the widths to scale down to. It seemed to work on android, but on iOS when you tilt the phone to landscape mode it crashes multiple browsers.
The more basic sliders built into the theme seem to work perfectly, but they lack the functionality we need for animation.
Any thoughts?
Just purchased Enfold and tried to add to my site using the “new” and selecting the WordPress zip file. It shows “uploading” forever and then errors out showing “Are you sure you want to do this?”. I’ve tried three times now with same result. Not a good start.
Hello,
I currently have enfold 1.8.1 and am trying to update to v2.6.1 to fix some bugs. I logged into my Themeforest account and the on;y available file in my download area is v 1.8.1.
Could someone please tell me what I’m missing or where to find the update?
Thanks,
Steve
Hi,
I would like to track the form that I have on my page with a Google Adwords tracking code.
I was looking in the forum and I saw that different people had the same problem.
I don’t want to use contact form 7 because it think that the form that I have for Enfold theme fits better the overall design.
What’s the best way to do it?
Here’s the code:
<!– Google Code for Kontakt Conversion Page –>
<script type=”text/javascript”>
/* <![CDATA[ */
var google_conversion_id = 968685552;
var google_conversion_language = “en”;
var google_conversion_format = “3”;
var google_conversion_color = “ffffff”;
var google_conversion_label = “NVQVCLCikBEQ8O_zzQM”;
var google_remarketing_only = false;
/* ]]> */
</script>
<script type=”text/javascript” src=”//www.googleadservices.com/pagead/conversion.js”>
</script>
<noscript>
<div style=”display:inline;”>

</div>
</noscript>
Thnx for the help
Hi Josue,
thanks, but it does not working well on a small screen.
I solved this issue by modifying my blog logo (now it includes the tagline).
Ticket can be closed.
Cheers,
Gee Are