I have the same problem and i did some research:
On a clean WordPress install (without enfold activated) everything was working fine. When I activate Enfold everything went really slow. And all my page where gone. When I enabled debugging i saw that WordPress was throwing database error “WordPress database error: [MySQL server has gone away]”.
I think something went wrong inside the theme but I have no clue where
Thanks sundialstudios! Is there a tutorial for this or what can I search to find out more? I just bought Enfold/Wordpress yesterday so Im very new with this. Where is the “new color section”?
Hi Marssolutions!
Thank you for using the theme.
I’m sorry but the parallax fix on iOS device is not included on 2.6.3 update or I’m just mistaken. Please check the changelog here.
Did you try the suggestion on the thread? That will have to do for now. I’m sorry but we’re still investigating the issue.
Cheers!
Ismael
Hi!
You can find the file in the enfold/css folder (It’s called base.css). However I recommend to overwrite the default width with:
#top .frm_forms .input-text, #top .frm_forms input[type="text"], #top .frm_forms input[type="input"], #top .frm_forms input[type="password"], #top .frm_forms input[type="email"], #top .frm_forms input[type="number"], #top .frm_forms input[type="url"], #top .frm_forms input[type="tel"], #top .frm_forms input[type="search"], #top .frm_forms textarea, #top .frm_forms select { width: auto; }
– you can place this code into the quick css field
Best regards,
Peter
Hey Ismael, thanks for your reply, I’m encountering the same problem again with me not being able to change a picture, with no error response. I’ve been trying to change the picture in the Layer Slider/Slide 1/Layer 1. I deactivated all my plugins, cleared my cache, cleared browser history, and restarted my Mac. The plugins I currently have are Akismet, All In One SEO Pack, bbPress, Google+ Author Information in Search Results (Free Version), Google Analytics, Google XML Sitemaps, Jetpack by WordPress.com (which I haven’t used yet), SEO Friendly Images, WooCommerce, and WP Super Cache. I’ll be hopefully selling t-shirts from this site soon, and only have the plugins that I need necessary to be successful. I’m hoping that I’ve done a good job so far…? And a quick question Ismael, do I have to get a WooCommerce theme for the WooCommerce plugin, or can I just use the WooCommerce plugin in Enfold (which is what I would prefer)? Thanks for your support with Enfold.
David
EternityBeginsNow.com
Hi morgantar!
Since 2.6 Enfold will add flags to the main menu. If you want to display the language shortcode instead of the flag images insert 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 .= $lang['language_code'];
$items .= "</a></li>";
}
}
}
return $items;
}
}
(alternatively insert the code at the very top of enfold/functions.php after the <?php tag). You can also replace $lang[‘language_code’] with
$lang[‘translated_name’]
or
$lang[‘native_name’]
if you want to display the entire language name (and not just the shortcode).
Best regards,
Peter
-
This reply was modified 12 years ago by
Dude.
I actually already tried that. But it still overrides any specific field width settings in Formidable.
To “sort of” help (but still doesn’t solve the problem) I used:
#top .input-text, #top input[type=”text”], #top input[type=”input”], #top input[type=”password”], #top input[type=”email”], #top input[type=”number”], #top input[type=”url”], #top input[type=”tel”], #top input[type=”search”], #top textarea, #top select {
min-width: 0 !important;
}
It’s better, but that doesn’t solve the problem either.
The main issue is that in Formidable, you can specify whether a field is full-width, or you can choose your own width (i.e. 5 characters wide for a number field, etc) and it seems like the “width” in base or child CSS should really be cleared/deleted for Formidable to work properly. Just my guess.
It seems like I have to get into the base CSS and delete “width: 210px” since I can’t really null it out. But, where is the base CSS? (Sorry, I’m not a WordPress or CSS master, but still learning!) Even though I prefer not to touch ANY base code, I’d be curious to know if this would solve the problem.
By the way, I was wondering why did you guys choose 210px for fields?
Just curious – I bought Formidable since you guys recommended it, but has anyone else mentioned any issues between Enfold and Formidable??
Thanks for the help!
Hi!
Glad that you fixed the header.
Please use this on Quick CSS or custom.css to fix the input fields:
#top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
min-width: 100% !important;
}
Cheers!
Ismael
This reply has been marked as private.
Enfold – 2014 March 11th – Version 2.6.1
Wordpress – version 3.8.2
Hello;
For whatever reason, I just can’t get a Color Section Layout Element to display full width. I’ve researched your forum and added a “custom ID Attribute” with css “#my-attribute .container { width: 100% }”. I can see that the css is being applied but I’m not getting a full-width element. I’d be happy to forward a link and login.
Cheers…
BitSoul
1. The width field settings in Formidable are being overridden by Enfold CSS:
/* #Forms
================================================== */
#top .input-text,
#top input[type=”text”],
#top input[type=”input”],
#top input[type=”password”],
#top input[type=”email”],
#top input[type=”number”],
#top input[type=”url”],
#top input[type=”tel”],
#top input[type=”search”],
#top textarea,
#top select {
…
width: 210px;
…
}
2. In Formidable, if I choose the field labels to be set to “none” (rather than top, right, left, etc…) then the “block” CSS parameter overrides it:
#top label {
display: block;
font-size: 12px;
font-weight: bold;
}
It seems if I get rid of the “#top” class in the Forms area of Enfold’s base CSS, then I should be ok? I’d rather not mess at all with the base CSS. But I need to solve this is my client’s site.
Hey!
Seems like code is not being applied. Please try adding it to custom.css file inside Enfold/Css folder
Best regards,
Yigit
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.select2-container, li.select2-search-field, .select2-default { width: 100% !important; }
Cheers!
Yigit
Not sure if you guys can help me because its a plugin. But check my page http://www.swedfit.se/sok/
and you will see that the search box does not cover the whole width of the box but the search button is centered correctly.
The search box is always the same width (as shown) no matter which width the container the search box is in.
This only happened in the enfold theme.
Any suggestions?
(hope you guys understand my problem aswell:)
Hey!
Please add following code to Quick CSS as well
#top #menu-item-search.menu-item-search-dropdown>a:hover {
background-color: transparent!important;
}
You can go to Enfold theme options > Header > Extra elements > Header Phone Number/Extra Info and add your text or link there manually
Regards,
Yigit
Hi Ismael,
how can I open a new topic ? I need help to set search icon and rss icon in the slim header (enfold). I have v. 2.6.2 but can’t find this option ? Please help,
Thank you.
Nona
Dear Support,
I can’t search out how to edit this page “Content” at ENFOLD theme, please kindly advise.
ref link : http://tailor-creation.com/tc
Thank you!
Sansi
Hey Kreisi,
I’m using the Enfold theme, great theme by the way, but I was wondering where to put metatext for the several loose pages. Maybe I’m using the wrong word but I mean the text which is shown below the link in search engine results. The short description of the found page.
Hope you can help me.
Many thanks in advance, regards,
Harmen
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
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
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
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.av-special-heading { background-color: orange; }
body .av-special-heading .av-special-heading-tag { color: white; }
To display search form as shown on your screenshot, please hire a freelance developer.
Cheers!
Yigit
Hey Nativemedia!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.ajax_search_excerpt { display: none !important; }
.big-preview.single-big, .entry-content-header { pointer-events: none; }
Cheers!
Yigit
Hello,
I am using the newest Enfold.
After changing site url from development to official, I can not edit pages – advanced layout editor / avia builder hangs with white a fully blank white screen. In the database I replaced the old url to new using http://pixelentity.com/wordpress-search-replace-domain/
I also tried WP MigrateDB PRO. The effect is the same – error occurs and I cannot edit webpage – only thing I see is white screen. You can check screenshots here: https://www.dropbox.com/s/2d8nrgmxf42lu1b/Error.docx
I have no plug-ins active so this is not the problem. I increased mamory limit to 256M. The problem may relate to admin-ajax or some javascript but I am not sure…
Please help!
Hello Team
i have searched the web and the Forum here about this issue. I came across one other Thread in the Enfold Discussion, but no working solution has been posted there.
Problem :
Using Thumbnail Navigation with the layerslider in responsive mode, makes the thumbnails move in the middle of the slider on small browser window / Mobiles.
SEE HERE : http://www.soniccube.ch/kunden/roadhouse/
Thanks in Advance
Hi, I’m new… I did searches and didn’t find an answer, I need your help please?
I am using a WordPress 3.8. I’ve try to set up the background image via Enfold Theme Options, I set background imgage in General, Main Content and Alternate Content but the background Image not showing up on any page.
Thank you in advance.
Hi, thought this thread is the most appropriate for translation bugs. There is an error in the Russian .po file. Not in the translation, but the original text. In the string “If you are not happy with the results bellow please do another search” “bellow” should be changed into “below”. Because of this error the string doesn’t translate properly.
EDIT: opened a separate ticket, please ignore this post.
Hey!
Yes, German is included. You can find the files in enfold\lang\. Search for de_DE.po to modify the German translation. You can use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to edit the files.
Best regards,
Peter
HI!
I am having a problem with the advanced layout editor loading and being unable to edit inside of it… Also, nothing happens when I press either layout button.
When I go to edit a page, everything loads there is a leading animation where the builder should be. It never loads the page content.
On the pages that do not have the avia builder in use (new pages) will not let me click on the button to activate it.
There are only a couple plugins active right now and they are all stable but even when I deactivate them the editor will not load.
I have searched and found a few other people with similar problems and tried all of their solutions but nothing has worked so far.
Here is everything I have tried to solve this problem…
Deleting and reloading the Enfold Theme
Re-downloading the Theme from Envato and then re-uploading it into the site
Deactivating and deleting every plug-in, then testing again
Accessing the site from different computers, networks and different browsers (Chrome and Firefox)
I have also tried upping my memory on my server (through go daddy)
I prayed to the internet unicorns and asked them to fix it. – They didn’t.
Please help. :)
<3
I have the search box enabled in the enfold theme panel and when you click on the search Icon it displays the placeholder text in Chrome and Mozilla browsers but not IE. Is there a fix for this?