Hey!
Please use the code I posted here: https://kriesi.at/support/topic/nextgen-gallery-with-enfold-background-fade-with-chrome-not-working/#post-246439 instead of Ismaels code. The child theme name doesn’t matter.
Best regards,
Peter
Hi!
You can update the po file easily. Install the plugin ( http://wordpress.org/plugins/codestyling-localization/ ), go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language and click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner). If you can provide a link to the updated Russian po/mo file we’ll include it with the next update – then you don’t need to update your translation files over and over again.
Regards,
Peter
Hi,
I realisted that all standart blog posts are been schema.org rich snippet friendly. Since I’m having a food blog I would like to add a customize post type with the recipe schema org. Any way I can add those so enfold regonize it?
Thanks
Tina
Hi ey3!
This requires a major customization of the theme/woocommerce template files. We just slightly modify the default woocommerce files in wp-content/themes/enfold/config-woocommerce/config.php. If you need help with a theme/woocommerce customization please hire a freelancer. I suggest to contact werkpress: http://kriesi.at/contact/customization or to hire someone from envato studio: http://studio.envato.com/
Best regards,
Peter
Hi!
I found a way to have both, add this to the functions.php:
add_filter( 'wpcf7_form_elements', 'mycustom_wpcf7_form_elements' );
function mycustom_wpcf7_form_elements( $form ) {
$form = do_shortcode( $form );
return $form;
}
Then you can use the Enfold layout shortcodes in your CF7 form:

Regards,
Josue
Hey!
Please don’t use anchors to mark the beginning of the sections but use the “Custom ID” option field (Color Section) to “mark” the different sections – see: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/ . Please remove the anchors you added to the page content and make sure each section has a unique id (you can use the same value/id you used for your anchor elements).
Best regards,
Peter
Hey!
Please place this code into your child theme functions.php file:
if(!function_exists('avia_append_lang_flags'))
{
//first append search item to main menu
add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
add_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
function avia_append_lang_flags( $items, $args )
{
if ((is_object($args) && $args->theme_location == 'avia'))
{
global $avia_config, $sitepress;
if(empty($avia_config['wpml_language_menu_position'])) $avia_config['wpml_language_menu_position'] = apply_filters('avf_wpml_language_switcher_position', 'main_menu');
if($avia_config['wpml_language_menu_position'] != 'main_menu') return $items;
$languages = icl_get_languages('skip_missing=0&orderby=custom');
if(is_array($languages))
{
foreach($languages as $lang)
{
$currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
$items .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>";
$items .= " <span class='language_flag'>".$lang['native_name']."</span>";
$items .= "</a></li>";
}
}
}
return $items;
}
}
If you don’t use a child theme add it to enfold/functions.php.
Best regards,
Peter
Is there a way to use the contact form via the enfold site builder and somehow make the text act as ghost text or placeholder text? I want the 2 column functionality of the enfold contact form builder but the placeholder text option that contact form 7 offers. Any help would be appreciated. Thanks
Hi Mike!
You’d need to hardcode that content in HTML, please take a look at this:
https://kriesi.at/support/topic/how-can-you-add-a-tagline-or-subheading-to-all-pages-for-the-enfold-theme/#post-203194
Let me know if you need help with the positioning.
Cheers!
Josue
Hey Raymmar!
You can use the “Icon” shortcode (magic wand icon in the TinyMCE toolbar) to add icons to your menu titles/links. Just go to a post/page editor page and use the shortcode generator (Magic wand) to generate your icons. Then switch to the menu page (Appearance > Menus) and insert the shortcodes into the “Menu Title” field. Enfold will then display the icons instead of the default menu title/text. You can also add html code into the title and description field – i.e. add simple html image tag into that field.
<img src="http://i2.wp.com/raymmar.com/wp-content/uploads/2014/04/Take-Your-brain-to-the-mind-spa-buddah-quote.jpg" alt="Take-Your-brain-to-the-mind-spa-buddah-quote" />
Best regards,
Peter
I just installed Enfold but I don’t see the “import dummy data” button. What did I miss?
Hey!
No, tbh I’m not sure why it doesn’t work. I suggest to contact the server administrator – maybe you need to tweak the server configuration somehow – or to hire someone here: http://studio.envato.com/ who can help you to migrate the website for some $. I used the same method to migrate several websites without any issues in the past and other Enfold users also managed to migrate their Enfold installation without any issues with the WP MigrateDB or WP MigrateDB PRO plugin.
Cheers!
Peter
I upgraded from 1.6 to the latest version, and all seems OK except the social icons have disappeared.
I performed a “Reset all options” to no avail. They are still gone.
Under Enfold, Header, Extra Elements, the option for Header Social Icons is grayed out and so thin, it can’t be selected.
Any ideas on how to get social icons back, especially now that the option to select them is not selectable?
Hey!
Try copying the line out, saving the file and then pasting it back in. I can really only guess that the server(s) are getting a hiccup on a character either hidden or otherwise which is from a non-typical server side setting.
If it was a common bug we should have gotten lots of posts on it by now. Being a larger theme, like all of the current top themes on ThemeForest it takes longer to upload and some servers will “timeout” from taking too long. The quick solution is to upload over FTP following the video tutorial on the theme documentation.
Cheers!
Devin
Hello,
I just checked your website and seems you already have Enfold installed and running. Is the issue solved?
Regards,
Josue
You can customize the header in from the Header tab of the Theme Options as of version 2.6 with combinations of the headers shown in the demo: http://kriesi.at/themes/enfold/headers/
Outside of that no, it would need to be custom written depending on exactly what you are looking for.
This reply has been marked as private.
Hi jmaguirrei!
If you need to modify the search implementations you can find the files here : /functions-enfold.php
If you change numberpost => 5 to 1 ( see below ) this will show 1, BUT you need to customize further to have more accuracy when you search, otherwise it will show you irrelevant information / not so accurate, or it will show you what you need, depends on the case scenario.
$defaults = array('numberposts' => 1, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
P.S Create 1 post and ask your questions there, as opposed to open more than 1 thanks :)
Cheers!
David
Hey, thanks Devin! I’m using ENFOLD, is there an easier way to do this within the ENFOLD theme css?
I have recently changed my theme over to Enfold and I believe it is the most current version.
I have setup my contact form to send to the default address (which is the correct address). When using the form on the website everything functions as required, the confirmation comes up and everything. I don’t however ever receive the email.
Hi Devin!
In Dreamhost (online) server, an error occurred while uploading by WordPress. I tried again, but I sent the files by FTP and it worked! :-)
On my local server (XAMPP localhost), I used Apache + virtualhost configuration, WP 3.8.1 and paste enfold theme folder inside the wp-content/themes folder. But it does not work. :-( Generate Error Code: ERR_EMPTY_RESPONSE
Any suggestions?
Thanks for help!
Hi Peter,
If I remove the line of code from the main theme avia.js file then it functions as I expect. However, following Ismael’s code does not seem to work. my child theme folder is not called “enfold-child” but it’s called “wgr-child”
Does the naming of the child theme matter?
Hey vieiralessandro!
What is the hosting provider and server specs you are trying to install on? Did you upload the theme from within WordPress or over FTP?
Regards,
Devin
Hey SlickBear!
You can turn on the custom class field for all elements which lets you then add classes to everything for easier css rule creation: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Best regards,
Devin
Hey IkarusDev!
Good luck and I also recommend checking on Codeable, Envato Studio and http://kriesi.at/contact/customization .
Cheers!
Devin
Hey Gary!
Jetpack alone doesn’t have any issues I know of but any of the various extensions to Jetpack could definitely have conflicts. If something isn’t working for you it would be best to find an alternative or see if the plugins support forums has any tips on compatibility with themes.
Just make sure you aren’t trying to use an extension of Jetpack to duplicate theme functionality since that would definitely not work or be supported. For instance the footer content and sidebars is all handled from the theme.
Best regards,
Devin
Hi Jyles!
You can do the following :
1. On the main portfolio page ( add a portfolio-grid (from page-builder/content elements ) use 4 columns / click on the categories.
2. On Portfolio Items ( create a new one ) use the gallery and insert any # of images there.
3. Every Image can have a sub category on Portfolio.
It will work like so :
1 ) http://kriesi.at/themes/enfold/portfolio/
2 & 3 ) http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-gallery-2/
Cheers!
David
Hi There!
I have been working with the Enfold theme now for about 7 months and I update my website every 4 months to coincide with the changing seasons. This also gives me a good excuse to try some of the new features. I really love the Masonry blog – looking forward to more new features soon!
http://www.mydesignspace.com
Cheers,
Monique