Hi metafora29!
You can enable debugging mode to see shortcodes you have creating in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
then you can create any of them and copy/paste shortcode into any other content element or into text widget.
Regards,
Yigit
hm, looking at the error console it throws the following: TypeError: this.$node.css(…) is undefined…”undefined”)this.width=a;if(typeof b!=”undefined”)this.height=b;if(this.height.t… This belongs to the html5 audio player script. Too bad I cannot use the WP Player in enfold :-/
Hey batesunited!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 768px) {
h3.av-special-heading-tag {
font-size: 22px!important;
}}
Cheers!
Yigit
Hi!
It was a small bug which was fixed in version 2.8.1. You can update Enfold to the latest version 2.8.1 – http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
Yigit
Hi thewebworkshop!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.archive .avia_cart_buttons {
display: none!important;
}
Best regards,
Yigit
Hey KirstenMac!
Please go to Appearance > Menus and make sure to check “Enfold Main Menu” under Menu Settings
Best regards,
Yigit
Hi eaglescience2!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 1140px) {
.av-main-nav > li > a { padding: 0 7px; }}
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img {
height: auto !important; }}
also Please go to Enfold theme options > Header Layout > Mobile Menu > Header Mobile Menu activation and choose 990px.
Regards,
Yigit
This relates to the post here: https://kriesi.at/support/topic/ajax-portfolio-on-android/
I thought that turning Ajax off would solve the problem but it has not so I need some advise on possible workarounds.
Enfold is a modern theme and I can’t understand why on such a modern theme this issue is happening. My internet connection is not that slow but as advised in the post listed above the portfolio won’t load correctly with more than 6 items (see the screenshots) – 6 items is way too low, I have hundreds of portfolio items that I want to include across a number of pages. As advised in the previous post it seems that the problems are cause when a viewer scroll down ‘before’ the page is fully loaded. But, this is normal behaviour when browsing a website, very few people will actually wait for the page to load fully before they scroll down the page.
A properly functioning portfolio is crucial to my website, without it the viewer cannot see the pagination and also sometimes cannot see portfolio entries because they are all bunched up together.
Can you please get Kriesi to take a look into this.
Thanks
Andrew
Hey!
Wenn ihr die Links nebeneinander darstellen wollt müsst ihr auch die Anzahl der Widget Areas im Fußbereich reduzieren – zB auf 1 oder 2 (Enfold > Theme Options > Footer Layout > Footer Columns)
Regards,
Peter
Hi there!
I have another question about Enfold.
This goes about the responsiveness of the website. When I reduce the width of my browser to 1024px, the logo goes through the navigation. How can I fix this?
Also, when I reduce the size of the browser even more to about 767px, the logo goes through the 3 bars icon for all the links. Also the link becomes very pixelated and way too big. I also would like to fix this problem.
Any suggestions? That would be great! Thank you in advance!
Hey!
Normally the post title will be used as image caption (like here: http://test.inoplugs.com/this-is-a-nice-post-2/ ) and the image alt attribute content will be used for the lightbox title. I’m not sure why the post title is not used for the image description on your website tough. Maybe a custom child theme template overwrites the default loop-index.php template?
If you want to use the image description for the lightbox description open up wp-content/themes/enfold/includes/loop-index.php and replace:
if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
with
$image_description = get_post_meta(get_post_thumbnail_id(), '_wp_attachment_image_alt', true);
if(empty($image_description)) $attachment = get_post(get_post_thumbnail_id());
if(empty($image_description) && is_object($attachment))
{
$image_description = $attachment->post_excerpt == "" ? $attachment->post_content : $attachment->post_excerpt;
$image_description = trim(strip_tags($image_description));
}
if(!empty($image_description)) $featured_img_desc = $image_description;
if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
Cheers!
Peter
Hi batesunited!
Just create an “includes” folder in your child theme directory and copy the modified loop-search.php into this folder – i.e. the file path should look like: wp-content/themes/enfold/includes/loop-search.php
If you want to remove the excerpt delete this code located in loop-search.php:
<?php
echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';
$excerpt = trim(get_the_excerpt());
if(!empty($excerpt))
{
the_excerpt();
}
else
{
$excerpt = strip_shortcodes( get_the_content() );
$excerpt = apply_filters('the_excerpt', $excerpt);
$excerpt = str_replace(']]>', ']]>', $excerpt);
echo $excerpt;
}
echo '</div>';
?>
If you want to remove the sidebar add this code into the child theme functions.php file:
add_action('wp_head','avia_remove_search_sidebar', 10);
function avia_remove_search_sidebar()
{
global $avia_config;
$result = "fullsize";
$avia_config['layout']['current'] = $avia_config['layout'][$result];
$avia_config['layout']['current']['main'] = $result;
}
Best regards,
Peter
Hi!
Please use this css code to hide the flags on all websites:
.menu-item-language img.iclflag {
display: none;
}
– I recommend to add it to the child theme style.css file. If you want to insert it into the quick css field you must save the code several times because Enfold creates a different option set for each language. You can use the language switcher (Enfold > Theme Options) to save the quick css content for each language.
Regards,
Peter
Hi!
Yes, I think this is possible because we use the get_template_part() function to call the template. Just create an “includes” folder in your child theme directory and copy the modified related-posts.php into this folder – i.e. the file path should look like: wp-content/themes/enfold-child/includes/related-posts.php
Regards,
Peter
Hi Dude !
Thanks a lot for your quick answer and efficiency.
I have one more trouble : I would like to get a language switcher as a drop down menu in the main menu (and not an horizontal list). It is selected in WPML but it seems that some enfold code force it to be like that.
Thanks.
Marc.
Hey!
In wp-content/themes/enfold/index.php and wp-content/themes/enfold/single.php
Best regards,
Peter
Hi!
Yes, I recommend to use the advanced layout editor. Just create a page, add a blog element to it and configure the categories. Then go to Enfold > Theme Options and select this page from the “And where do you want to display the Blog?” dropdown. Then click on the “Blog Layout” tab and select “Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page)” from the “Blog Style” dropdown.
Best regards,
Peter
Hi,
I have Enfold (which I love) and would like to put the Lozenge shaped ‘hover over button’ that you use on your portfolio preview images on http://kriesi.at/theme-overview (which says ‘View demo’ or ‘View Details) – is this possible to do? Do you need some special styling code? If so, please could you send.
Many thanks,
Jonathan
Hey Adenadoume!
Open up wp-content/themes/enfold/includes/related-posts.php and replace:
$tags = wp_get_post_tags($this_id);
with
$tags = get_the_category($this_id);
and
'tag__in' => $tag_ids,
with
'category__in' => $tag_ids,
Regards,
Peter
I can only see the link http://www.bilfinger.com/unternehmen/ you posted. And as I said my example might not be exactly what you want but it might act as some kind of inspiration.
I don´t think that you can do exactly what you show in your link at the Bilfinger website with Enfold but the specialists might correct me.
Cheers
Michael
Hi !
I use wordpress 3.9.1
enfold 2.8.1
WPML 3.1.5
WPML string-translation.2.0.5
Default language : french
Everything is fine except that when, as a user, I switch to english or german, the switcher disappear so I can’t come back unless I remove “/en” in the url address to come back to french.
Still there if I switch off all other plugins.
Thanks for your help.
Marc.
Hi guys,
is there an element or widget that I can use to list blog entries (or other post types) by category with the folowing settings anywhere on my pages?:
headline
excerpt yes/no
image yes/no
continue reading link yes/no
date yes/no
category yes/no
author yes/no
comments yes/no
This would be great to list such entries (for example latest news) on the homepage or in the footer or any other place you can imagine.
Currently I need to edit the output of the Enfold lates News widget to get what I want. This works but could be better. For example the headline of the latest news widget is not wraped in an H-tag which should be for SEO reasons.
Any ideas? Plans?
PS: Maybe I can edit the widget to meet my needs but where exactly in Enfold do I find the widgets and how can I move it into a child theme?
Cheers
Michael
Hi
We would like to simplify search page. We dont want the excerpt to be visible under the heading.
Also, how do I remove the right side?
I have located search.php in the Enfold theme. But I am using a child theme.
Hey Tetratus4!
Thank you for visiting the support forum!
Looks like the first two issues has to do with the theme not being the latest version. If you don’t mind, please post the website url here so that we can inspect it. Make sure that you’re running Enfold 2.8.1 on WordPress 3.9 or higher. Regarding the contact form, yes, that is possible. Please create a page then insert the contact form element under the content element panel. If you want a more extensive forms, you can try the contact form 7 and Gravity Forms plugins.
4.) You can’t switch between the Default Editor and the Advance Layout Builder. If you want to see the actual shortcode below the advance layout builder, edit functions.php and find this code on line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
You will be able to see the actual shortcode below the builder. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
Best regards,
Ismael
Hey roemer!
Thank you for using the theme.
I checked the website and the sidebar images but they are all linked on http://www.hil-gmbh.at, the homepage, so I’m not really sure if clicking on it the first time is working or not. Do you mind creating a test page with the same sidebar image widgets but different links? What I noticed is that the overlay effect is not working the first time you hover over the images. Just to be sure, please download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
Ismael
Hi Yigit,
once again, thank you very much for the help. support and solutions from Kriesi blows some competitors out of the waters.
Enfold is already a very good theme to begin with.
The rest of the problems (side bar vs. full width slider/colour section) are not in the live section of the site because they don’t quite work.
if you go to the test page, you’ll see what i mean
afa.org.sg/wordpress/aboutus2/ – colour section conflicts with sidebar
afa.org.sg/wordpress/whatwedo/educate/hso2/ – full width slider conflicts with sidebar
Hey opareklov!
Thank you for using the theme!
First, please set the footer column on Enfold > Footer Layout to 1 or 2. Add this on Quick CSS or custom.css to position the widget menu side by side.
#top .widget_nav_menu li {
clear: none !important;
display: inline-block;
float: none;
width: auto;
padding: 0 10px;
margin: 0;
left: 0;
}
Regards,
Ismael
This reply has been marked as private.
Try updating the theme to its latest version (2.8).
Best regards,
Josue