Hi!
1) Go to Enfold > Theme Options and select the front page from the “Frontpage Settings” dropdown. If this doesn’t work go to Settings > Reading and select the same page as “Static” page (make sure that the “A static page (select below)” option is selected.
2) You can hide the “you are here…” menu. Enfold 2.6.1 even introduced some new options to customize the header. Edit the page you want to use as the front page and on the right side in the “Layout” field search for the “Title Bar Settings” options. There you can select if the breadcrumb should be visible or not.
3) Use the Advanced Layout Builder on a page (just click the blue button) and then insert it as a media element: http://www.clipular.com/c/4764931148742656.png?k=AdR5mNJ-KIQbO9uxzsHpcX9Fqbg – note that Kriesi does not use a LayerSlider but a “Fullscreen Slider” element on the demo page. Afaik the LayerSlider does not support a fullscreen layout (covers entire screen siie) but it just supports the fullwidth layout (covers 100% of the screen width but you must set a fixed height).
4) You can change the menu width with this css code:
@media only screen and (min-width: 1140px){
.responsive .container .avia_mega_div.twelve.units {
width: 1000px;
}
}
Replace 1000px with your custom value.
Cheers!
Peter
Hi!
Please add this at the very bottom of Quick CSS or custom.css:
@media only screen and (max-width: 767px) {
#top #menu-item-search {
display: block !important;
position: absolute;
right: 60px;
top: -30px;
}
}
Cheers!
Ismael
I am hosting with hostgator.
I recently bought the Enfold theme.
I went to “appearances” and clicked “themes”
I then clicked “upload” and searched for the Enfold theme .zip file
After clicking “install now” I get a “failure notice” saying,
“Are you sure you want to do this?
Please try again.”
How do I upload the Enfold theme to my wordpress?
After 4 hours of search I give up. I have created a page (called blog). The page contains the content element “blog posts”. Under Enfold Theme Option in “And where do you want to display the Blog?” is have selected the page “blog”. Under General Settings in “Blog Style” I have selected “Use the advanced layout editor …”. Everything is saved.
As soon as i reload the page my custom css settings for fonts size get ignored. If i switch back to one of the other default styles (e.g. grid) my custom css settings are applied again.
I use “Simple Custom CSS” plugin for a long time and never had any issues. The stylesheet is linked within the source code as usual:
<link rel='stylesheet' id='sccss_style-css' href='https://www.mydomain.xxx/?sccss=1&ver=3.8.1' type='text/css' media='all' />
If I call the link i get displayed my custom css setting
body {font-size: 17px !important; line-height: 1.6em !important; font-weight: normal !important; }
(actually it is much more than this line but that does not matter for now)
If I change the blog style back to “Use the advanced layout editor …”, reload the page and view the source code i still see my custom stylesheet
<link rel='stylesheet' id='sccss_style-css' href='https://www.mydomain.xxx/?sccss=1&ver=3.8.1' type='text/css' media='all' />
However if I open that link again in a browser I get displayed the blog page of my site.
If I move my custom css to the custom.css file from my child theme or to the quick css field in the styling section everything works.
However i dont like that approach because the quick css field is to small and the custom.css is makes things complicated. I like to have all custom css settings at one place.
I have searched through the enfold source code to see what prevents the sccss file from getting loaded if one selects the advanced layout editor. But I cant find it (or I am to tired).
Can you please check what is going on? This seems to be a bug.
regards
Michael
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 767px) {
.responsive .main_menu {
position: relative;
}
#top #menu-item-search { display: block !important; }
#top .main_menu .menu li { display: none; }
.responsive #header .main_menu ul {
display: block;
}}
Regards,
Yigit
Hey wesleysoccer!
I have posted in your topic here https://kriesi.at/support/topic/enfold-upgrade/#post-238831
Please do not create duplicated posts as it is making it harder for us and other users to follow :)
Best regards,
Yigit
Hi wesleysoccer!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 767px) {
.main_menu, #header_main_alternate {
display: block!important;
}
#top #menu-item-search { right: -100%; }}
It will display search icon right to the mobile menu
Best regards,
Yigit
I was using this code to have the search icon on mobile but since upgrading to latest version of enfold I lost my search icon on mobile:
@media only screen and (max-width: 767px) {
.responsive #header .main_menu ul, .responsive #header .main_menu ul {
display: block !important;
position: absolute;
background: none;
top: -20px;
right: 0;
}
.responsive #header .main_menu ul li {
display: none;
}
.responsive #header .main_menu ul li:last-child {
display: block !important;
}
}
I’m using a standard header…I’m assuming some of the css has changed…any help would be amazing.
Thanks for the great support!
Hi oravidor!
Please go to wp-content\themes\enfold\includes folder and open helper-main-menu.php file and find
<div id='header_meta' class='container_wrap container_wrap_meta <?php echo avia_header_class_string(array('header_social', 'header_secondary_menu', 'header_phone_active'), 'av_'); ?>'>
<div class='container'>
and add following code right below it
<?php get_search_form(); ?>
Best regards,
Yigit
Hey!
1) Ok, then remove the flags from the main menu (you can configure this on the WPML option page) and insert this code at the very bottom of functions.php:
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'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>";
$items .= "</a></li>";
}
}
}
return $items;
}
}
to add the flags to the main menu.
2) Maybe you didn’t configure or translate the portfolio slugs – see: http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/
Cheers!
Peter
Hi,
I have the Enfold sidebar widget to display latest post entries in your sidebar in my footer.
But that widget put postdates in the source and now in the google search results there is alway’s a date in the meta by my pages and posts. I think that google take this date out my source from that widget.
How and where can I change this? So that Google don’t show a date in the meta?
Is the logo fixed from this topic: https://kriesi.at/support/topic/enfold-update-errors-help/
Please do not start similar topics with overlapping questions. It makes it much harder for us to answer effectively and for others to search+find answers.
after upgrading to latest version of enfold (version 2.1 to 2.6.1) I have encountered a few issues…using wp 3.8.1
1. layer slider not showing as normal? The preview shows one thing and live site shows another? http://cl.ly/image/0k2k0B2m0P09 (spacing issue will not fix between layer words)
2. some of my previous css is not working in the enfold panel (css) i.e. my search icon is missing from mobile…I added css to have this work on mobile.
@media only screen and (max-width: 767px) {
.responsive #header .main_menu ul, .responsive #header .main_menu ul {
display: block !important;
position: absolute;
background: none;
top: -20px;
right: 0;
}
.responsive #header .main_menu ul li {
display: none;
}
.responsive #header .main_menu ul li:last-child {
display: block !important;
}
}
These are just issues I have spotted.
The help would be much appreciated.
site: http://cl.ly/3F042y022K0j
Hi Enfold,
When i search for my website on Google, it finds my website, but the description shows a really strange code (strange for me). I don’t know how to fix this. The code says:
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at…
I use the Yoast WordPress SEO plugin.
Thanks,
Frank
Hi cerf!
1.) Please use this 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 (italian) and click the “create po-file” button. Click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain.
2.) I can’t see any example of the second issue above. Please post a link to the actual page with the said strings.
Regards,
Ismael
Hi!
You can use this plugin to change the string http://wordpress.org/plugins/codestyling-localization/
and you can remove breadcrumbs globally by adding following code to Quick CSS in Enfold theme options under Styling tab
.title_container .breadcrumb { display: none; }
Regards,
Yigit
Hey!
Here are all the iterances of wp_nav_menu in Enfold:
Searching 756 files for "wp_nav_menu"
/enfold/footer.php:
113 );
114
115: wp_nav_menu($args);
116 echo "</nav>";
117 ?>
/enfold/functions-enfold.php:
54 {
55 //first append search item to main menu
56: add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
57 add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 );
58
/enfold/config-woocommerce/config.php:
273
274 #
275: # create the shop navigation with account links, as well as cart and checkout, called as fallback function by the wp_nav_menu function in header.php
276 #
277 function avia_shop_nav($args)
/enfold/framework/php/class-megamenu.php:
39
40 //exchange arguments and tell menu to use the avia walker for front end rendering
41: add_filter('wp_nav_menu_args', array(&$this,'modify_arguments'), 100);
42
43 //exchange argument for backend menu walker
..
365 */
366 function start_el(&$output, $item, $depth = 0, $args = array(), $current_object_id = 0 ) {
367: global $_wp_nav_menu_max_depth;
368: $_wp_nav_menu_max_depth = $depth > $_wp_nav_menu_max_depth ? $depth : $_wp_nav_menu_max_depth;
369
370 $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
/enfold/includes/helper-conditional-megamenu.php:
20 add_action('avia_mega_menu_option_fields', array(&$this,'output_conditional_menu_options'), 10, 4);
21
22: add_filter( 'wp_nav_menu_objects', array(&$this,'apply_conditional_rules'), 10, 1);
23 }
24
/enfold/includes/helper-main-menu.php:
51 );
52
53: $nav = wp_nav_menu($args);
54 }
55
..
123 );
124
125: wp_nav_menu($args);
126
127 if($headerS['header_social'] == 'icon_active_main' && empty($headerS['bottom_menu'])) echo $icons;
11 matches across 6 files
You need to pass that JC extra argument there.
Best regards,
Josue
Devin,
Thank you for your continued assistance!
I renamed the plugins folder on the server and still the white screen. I removed my child themes files one at a time (header.php, footer.php, functions.php) still with no luck.
This leads me to believe it is a theme conflict with WordPress (version 3.8.1). When I revert back to the last version of Enfold I was using, 2.4.5, everything works fine.
I’ve run out of ideas and feel like my only option now is to revert back to 2.4.5. The site will be pushed live in a week, and would much rather deal with this issue before launch.
If you or your team could provide any other thoughts, I would greatly appreciate it. I am still researching for another solutions.
Thanks!
-
This reply was modified 12 years ago by
Thinkgate.
Hey Philippe!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.search-results .sidebar { display: none !important; }
.search-results .content { border-right: none; }
.search-results .container .nine.units { width: 100% !important; }
Regards,
Yigit
Hi quike!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.html_header_top.html_bottom_nav_header .main_menu ul:first-child>li a, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a, .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li:first-child a { border: none; }
Best regards,
Yigit
Hi!
The site title is set from the WordPress options. Go to Settings>General>”Site Title”
Changes are *not* instant with google and indexing. It takes time for any change you make to be reflected in a search result on any search engine. So if a page has been index it can take time for it to no longer be shown.
Cheers!
Devin
Hey Jaroslav!
I suggest to use the free Codestyling plugin to translate the theme or to change the content of the current translation. 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 the “create po-file” button. 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). Search for “Leave a Reply” and “Want to join the discussion?”, etc to translate the comment text strings.
Best regards,
Peter
Hey gentlemansgazette!
I’m not familiar with google search and I can’t help you with the implementation. I recommend to install a wordpress search plugin like: SearchWP if you want to improve the search. You can also try to follow the instructions another user posted here: https://kriesi.at/support/topic/how-to-integrate-google-custom-search-cse-into-enfold/ but again, I can’t give you more details about the implementation…
Best regards,
Peter
Hi,
After more searching I found the answer.
http://kriesi.at/documentation/enfold/using-a-child-theme/
Sorry, please consider this closed.
Hi,
In the past, I could implement Google search with the Enfold theme via Google CSE Plugin. With your latest theme updates it seems like Enfold creates a problem with Google CSE that let’s people allow to use the google search engine for one’s website.
Could it have anything to do with the bbpress feature?
The problem is, if I seach for wordpress, I can see the proper results, but the links are all http://www.domain.com/?s=wordpress So if I click on the result, it just shows the same search. So, effectively it is not working at all.
How can I use google search with the Enfold theme so it works
hi,
thanks for your great work with the Enfold theme.
I’ve studied, researched etc a few days now on how to integrate the pricing tables, but somehow I do something completely wrong.
Can you pls provide me a link to the instruction manual on this?
thanks
Iris
Hey Guys!
Unfortunately there is not much I can say at the moment without further investigation…
You 2 seem to have very different issues with the slider and I cant tell yet why this is happening. I would like to try and install a fresh version of the slideshow files in order to test if anything was corrupted. would you mind posting me your ftp credentials as well?
@Jasmer: the backend is running fine at your installation, and actually the front end as well (no javascript errors of any kind). the only problem is that for some unkown reason the layerslider calculates the image height and width with 0 which basically makes them invisible. I am not sure why this happens but before you send me the ftp data you can also try to disable the 17 plugins you are running, maybe one of them is causing a problem…
@jeff: your backend on the other hand is throwing a lot of javascript errors. i did a quick google search and it seems that this is also happening for other themes so not sure if I can do anything in that case but to report the issue and wait for a new version of the slider. but I will try to upload the latest 2 versions and see if something changes if you post me the ftp data
Cheers!
Kriesi
This reply has been marked as private.
Hi. I updated to version 2.6 of Enfold today, was looking over some of the new features (great!), and discovered that the blog category links don’t work–they direct the user to a “search result not found” page. It works fine for an admin, account, however. I then switched to a couple of other themes, including Twenty Ten, and the links work perfectly in those. (I noticed some other odd behavior on the blogs, but it changed from browser to browser, so I have to narrow those issues down.) In the event you have to visit my website, I am following up this post with the necessary info in private. Thanks!
I did as you said but nothing is showing.
Might be that the inmofactory_helper.html file is not in root?
And furthermore, how can I edit the basecode of a page I created in enfold (I mean a page wich is listed on the top bar, so when you click it, the “property search” shows up as a hole page.
Thanks alot for your help.