Hi Dude,
no, I meant the Google+ Link of the enfold theme on the above left corner. Now it is a ?rel=publisher link.
BTW, it would be a good option for the enfold settings of the Google+ button to be able to choose either as ?rel=author or as ?rel=publisher… ;-)
Cheers,
Gee Are
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
body .container_wrap .hr.avia-builder-el-last, body .container_wrap .hr.avia-builder-el-first {
margin: 0;
}
Regards,
Yigit
Hey!
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 767px) {
.responsive .mobile_slide_out .logo {
margin-left: 20%;
}}
Cheers!
Yigit
Hi!
Please update to the latest version of Enfold (2.7.1) to solve the issue. Older versions are not compatible with WP3.9.
Cheers!
Peter
Hi webpress!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.page-id-3988 #main { padding-top: 0 !important; }
I have no issues on my local installation
Cheers!
Yigit
Hey AsadIC!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.home #main {
padding-top: 0!important;
}
Your website looks awesome already by the way!
Regards,
Yigit
Hey Micheal0424!
Sorry but i am not sure if u understood the issue clearly. Quick CSS field is missing in Enfold theme options?
Best regards,
Yigit
WP Version: 3.9.1
Theme: Enfold
Website: http://liquorstore.maximfactory.com/
I am missing the Edit CSS after the install, how do I get the CSS Stylesheet Editor?
Thanks.
Hi, I try to make my website like the Enfold Transparent header.
I can’t figure out the right settings:
The transparent logo I have uploaded.
– The header behavior: what settings are used of the 3 options? (sticky etc)
The transparent logo still shows over the normal logo once I scroll down:
– How to remove, so that the normal full logo is shown?
– on the homepage I guess, transparent header needs to be set on?
If I look at the website of http://frontdesign.in, the I see 2 different logo’s. (which one is the transparent or normal logo)
What is there the setting?
I hope this is not too much to asked. I tried all the options and read the posts, but still can’t figure out the difference.
Thanks!
Hi!
Please edit the color section that contains Buch Des Monats and give it a unique ID “postings” ( http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png )
Cheers!
Yigit
Hey steinobert!
Please go to Enfold theme options > Header Layout > Mobile Menu > Header Mobile Menu activation and choose 768px
Best regards,
Yigit
This reply has been marked as private.
Hi romano2!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.pp_hoverContainer { display: none; }
Best regards,
Yigit
Hey Miikey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.title_container .breadcrumb { right: auto; left: -2px; top: 80%; }
Regards,
Yigit
Thanks! So far, that seems to work when I put the css into the custom.css file. I tried putting it into the Quick CSS and deleting the enfold.css, but when I saved the Theme Options, a lot of previous changes reverted back. Thanks so much!
Hello,
My org uses Enfold pretty much as a default for WP sites. I’m currently on a project where the client wants a side nav. I’ve searched through the support a bit for some ideas but they’re all coming up short in some way or another. Basically, I’m looking for the best way to disable the header/menu and create a left-side vertical nav area — responsive similar to the main header nav menu.
I’ve tried implementing Sidr without much success, and I’ve tried the various suggestions to just set display:none on the header (Might’ve been an update since that support question as the targeted class in that answer does not exist. I tried it on the main header’s id, but the body still maintains the offset in a data attrib.)
Just wanted to see if there was a friendlier way to accomplish what I’m trying before I go digging deeper. Thanks.
Hey wrongjon!
Please go to Enfold theme options > General Styling > General and choose to display “Stretched layout” in “Use stretched or boxed layout?”. If this is not what you meant, please post a screenshot and show the changes you would like to make.
P.S.: Website you have posted is not using Enfold :)
Cheers!
Yigit
Hey boeellis!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.blog .entry-content img, .blog .entry-content iframe { display: none!important; }
Regards,
Yigit
Hi,
i need to copy this page into a page in wordpress, can i do that easily with enfold page editor?
i need to make the map inside the page, what is the best way to do that
Thanks
Hey!
You probably just need to remove the plugin cpt from the masonry entry query – try to insert following code at the very bottom of your child theme functions.php file or enfold/functions.php:
if(!function_exists('avia_remove_cpt_from_query'))
{
function avia_remove_cpt_from_query($query, $params)
{
if(!empty($query['post_type']))
{
foreach($query['post_type'] as $key => $value)
{
if($value == "global_product_addon") unset($query['post_type'][$key]);
}
}
return $query;
}
add_filter('avia_masonry_entries_query', 'avia_remove_cpt_from_query', 10, 2);
}
Best regards,
Peter
WP Version 3.9.1
Theme: Enfold
Website: http://cpa.maximfactory.com/
How do I slow the speed down for the testimonials, they are transitioning to fast.
Thanks.
Dear Kriesi friends,
re: Enfold 2.7.1
http://www.boeellis.com
I would like my “blog” feed page to show only the text content that appears above the <!–more–> tag… Another way to ask the question: Can I hide the images or video embeds that I am using at the top of my body content in my posts…
Thanks so much for your reply.
Sincerely,
Boe
Anyone? Thank you.
p.s. by “header as fixed on ipads/tablets, as you had it on previous versions of enfold”, I mean I would like it not to be sticky.
Thank you.
br
tiago
I just hosed my site trying to comment and then uncomment /home/c1218inc/public_html/thenuagegroup.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider.php on line 394
All I get now is white, whether in public or WP view. I’ve reloaded enfold via FTP and I have the same results. Obviously I did something wrong, won’t try it again, but do you have suggestions for a restoration?
Hi!
I have one little problem. I want to use my fonts from Fontdeck and installed the plugin.
But nothing changed. Is enfold compatible with this?
Thanks a lot!
Hi!
1) If you want to deactivate/hide the Enfold flags please insert this code into your child theme functions.php file:
add_action('after_setup_theme','avia_remove_main_menu_flags');
function avia_remove_main_menu_flags(){
remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
}
2) Did you try to contact the WPML support team – probably they can give you some code to change the order of the languages in the language switcher.
3) Yes you can overwrite php code of the parent theme with the child theme however you can only overwrite complete functions or you need to use hooks (i.e see code above) to modify the output. I recommend to create a functions.php file in the child theme folder and to insert your custom php code into this file.
Best regards,
Peter
that sounds really great! I’m happy about it! Thanks. My first tests with an (offline) site with ENFOLD and Master Slider are working great until now.
Hi there
I installed “WPML multilangual cms” and “WPML translation management”. Latest enfold, wp, WPML
Still I have the problem with the language switcher in wp menu. As soon as I change to the second language, which is “french”, I get the french page, but the language switcher is not longer shown in the wp menu. You can see that, if you go to:
1. http://www.avcare.ch/willkommen
2. You will see the switcher in wp menu, right side, german
3. choose language “francais”
4. You will see the french translated site (words are not translated yet, but you’ll see it in the breadcrump)
5. And you will see that the switcher in wp menu is disappeared
What is the problem? Don’t think it’s a WPML problem. To change WPML > Languages > Language switcher options > “How to handle languages without translation” and select the “Link to home of language for missing translations” option has no effect!
Hi!
Another idea would be to skip Layerslider all together and replace it with Master Slider. Maybe we should make a feature request? :-)
We won’t replace Layerslider with Master Slider because this would be unfair towards existing customers who already use Layerslider. We also don’t want to bundle several sliders with Enfold (like other theme developers do) because of performance reasons. Our approach/solution is that we work together with the slider plugin authors to create shortcode files for their sliders. We added some code for the Revolution Slider (which is already included with the Enfold theme framework) and Master Slider will be included when it gets more popular. The Master Slider plugin author also gave me access to the support forum and if someone encounters a theme incompatibility issue I’ll look into it.
Cheers!
Peter
Hello,
I’m in trouble about these Warnings.
It only occurs on the chrome of iPhone.
It is not occurs at safari of iPhone and IE11 of Windows7,chrome of Windows11,chrome of android…
I already try to reinstall theme and reconfigure all plug-in. But it is not change.
If you have a good solution to cure, please tell me.
Warning: session_start(): The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and ‘-,’ in/home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
Warning: session_start(): Cannot send session cookie – headers already sent by (output started at /home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in/home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in/home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33