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
Hi,
Well, I have updated to Enfold latest version and things might have changed now…
Please check here http://awesomescreenshot.com/0212i487c0 my present settings and let me know what I have to change to make it work as in to be 500px in height. Also note that the image is not responsive on mobile, I should fix this also.
Many thanks!
Hi,
I followed these instructions https://kriesi.at/support/topic/blog-posts-excerpts-enfold/ to get the read-more function working. So I changed the loop-index.php, the right page is set as blogpage etc.. But it doesn’t work … I don’t get a read-more on the category-page.
Can you help me?
-
This topic was modified 11 years, 8 months ago by
Martijn.
Hey Cum_Vincere!
Please add following code to Quick CSS in Enfold theme options under Styling tab
#header_main .container, .main_menu ul:first-child > li > a {
height: 116px!important;
line-height: 116px!important;
}
.logo, .logo a, .logo img { max-height: 116px !important; }
Regards,
Yigit
Hi!
Please see – http://kriesi.at/documentation/enfold/change-the-main-menu-color/
If that is not what you meant, please elaborate
Best regards,
Yigit
get slider focused or selected to allow the alternative keybard (arrow-keys) navigation direktly after loading a page.
Hi Francesco!
Please add following code to Quick CSS in Enfold theme options under Styling tab
span.wpcf7-not-valid-tip { top: -19px !important; }
#top textarea { width: 96%; }
Best regards,
Yigit
Hey Carsten!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
#scroll-top-link { background-color: white; color: red; border: 1px solid red; }
Cheers!
Yigit
Hi first of all thanks for the very best theme I’ve ever used!
I’m having problems with contact form 7 plugin.
As you can see here http://bit.ly/1nxoHC1 (but the problem is on all the forms I have in my site) red alerts don’t disappear after hover as normally happened and also the yellow info alert box is wrapped all around the form instead of appearing under the button.
I’m using CF7 3.7.2 and enfold 3.6.1
Any help really appreciated, thanks in advance.
-
This topic was modified 11 years, 8 months ago by
Francesco.
hello all
new peeps to the theme here. a quick question – how big do you make the sliders in pixels to emulate exactly the dimensions of the enfold demo?
thank you please
hey,
enfold is a great theme! but after updating the enfold theme, there is a new “background-transparency option” under the “appearance tab”:
LayerSlider> Appearance >Background-Color
i want to use a boxed layout with a fullscreen fixed background.the contents of the slide images (.png) should be placed on the
background
but if put the opacity to “0” … i still have a white background below my transparent slide-images.
any ideas?
thanks,
nik
Hi,
after the update all horizontal lines changed. So now all the pages pages i admin and used enfold for, have to be adjusted.
In fact the whitespace is more then before and the short separator also has more space under it. How ca i fix that!
Thats really not what an update should do.
Regards
This reply has been marked as private.
Hi Peter,
Du bist ja genial. Funktioniert Prima.
Vielen vielen Dank für die schnelle Hilfe.
Alles Gute.
Martin
Hey!
Yes, or into your child theme style.css or into the quick css field (Enfold > Styling).
Regards,
Peter
Hi!
Versuche einmal folgenden Code am Ende von enfold/functions.php oder in deine Child Theme functions.php einzufügen:
add_action( 'avia_meta_header', 'avia_mlp_language_switch', 10);
function avia_mlp_language_switch()
{
if(function_exists( 'mlp_show_linked_elements' )) mlp_show_linked_elements( array( 'link_text' => 'flag', 'show_current_blog' => FALSE ) );
}
Regards,
Peter
Hi!
1) You just need to change the “parent theme” name. The child theme name is completely independent from the parent theme name. Normally the style.css theme data looks like:
/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://kriesi.at
Template: enfold
*/
The “Theme Name” can be any value/text of your choice – you’re not limited to Enfold Child or ABC Child, etc. and you can also i.e. name it “Supertheme”. The important part is “Template: enfold” – “enfold” which refers to the folder name of the parent theme. So if you rename the parent theme folder from “enfold” to “abc” you also must change this line to “Template: abc”.
2) Yes, if you update the theme you must always manually rename the folder and the style.css theme name. I recommend to update the theme with ftp: https://vimeo.com/channels/aviathemes/67209750 then you just need to upload/overwrite all theme files except style.css and you don’t need to edit style.css everytime you update the theme.
Cheers!
Peter
… and calendar! Something like Google Calendar, but in Enfold design :-)
Sorry Josue, but ‘snippets’…?
When I click the the link you posted I see thousands of questions on the forum and tuts.
Good to have all this info but very hard to find the answer to my question.
Do I need to become a member on the PrettyPhoto forum?
I bought Enfold and would like help from this side….
: (
regards Corien
Hi Ismael,
I couldn’t find any string from the code you’ve sent , not in functions.php and not in functions-enfold.php …
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,
im trying to customize my enfold integration with woocommerce.
What will be the recommendation for this aspect plase ? (im not asking regarding woocommerce itself i know there are a woocommerce documentation) but i’m asking regarding Enfold theme.
Indeed, Enfold is already defining a lot of action/filter – how can i override them properly being sure my code wont be erased by the next Enfold version ?
thanks
Hallo Peter,
ich habe nach dem Uptate auf 2.6.1 Probleme mit dem Sprachenumschalter von Multilingual Press Pro.
Vor dem Update habe ich es auch Dank Eurer vorzüglichen Hilfe hin bekommen, das der Schalter sichtbar im secondary Headermenü war.
http://s511947180.online.de/wordpress/sprachumschalter.JPG
Wie gesagt nach dem Update finde ich einfach nicht mehr die Position wo ich den Code <?php if ( function_exists( 'mlp_show_linked_elements' ) ) : ?><?php mlp_show_linked_elements( array( 'link_text' => 'flag', 'show_current_blog' => FALSE ) ); endif;?>
einfügen soll.
Er verschwindet quasi hinter der Seite. Hier ein zur Testseite http://s511947180.online.de/wordpress/
Gibt es hier einen Lösungsweg oder Vorschlag wie ich das bewerkstelligen kann?
Danke.
Grüße
Martin
-
This reply was modified 11 years, 8 months ago by
gator0815.
Hello,
The typical Enfold header is transparent, and when you scroll down the page it reduces its height.
Is there a possibility of blocking the height of the header, so that when you scroll down it remains unchanged, and also the logo remains in the same size?
Thank you everybody.
Thank you Ismael,
I commented out as follow, and apparently it works in /enfold/functions-enfold.php…
in the code block starting as… if(!function_exists(‘avia_post_nav’))
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’]);
}
Thank you for your assistance.
Hey!
1) Please insert this code into the quick css field:
.main_color .pricing-table li.avia-pricing-row br{ display: none; }
2) Please install the latest version (Enfold 2.6.1). It comes with new header options and allows you to customize the header layout.
Best regards,
Peter
Hi!
@muslimmedical: If you have the Enfold 2.6 version, you can change the portfolio permalink on Settings > Permalink > Portfolio Entry Settings > Portfolio Items Base.
Regards,
Ismael
Hey Scott!
Can you please post the link to the website? Do you have a cache plugin? Please deactivate them. Remove browser cache then reload the page a few times.
Best regards,
Ismael
Hello,
I do really enjoy the Enfold theme, but one thing keeps bothering me. The e-mail function (which I use for the contact form http://www.yourstory-mystory.nl/contact/) does not work properly. It takes a long time before and e-mail arrives, and sometimes I wonder it I don’t miss e-mails that way. What could be wrong?
Kind regards,
Theo Zijderveld
Hi!
2.) Please use this for the tab title:
.js_active .tab {
font-size: 20px !important;
}
4.) Use this instead:
.av-masonry-sort {
padding: 30px;
}
Cheers!
Ismael