Labdien!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 767px) {
.main_menu, #header_main_alternate, .responsive #header .main_menu ul, li#menu-item-search {
display: block;
}
.av-main-nav > li { display: none; }
li#menu-item-search { margin-top: -88px; }
nav.main_menu {
float: right;
margin-right: 10%;
}}
Best regards,
Yigit
Hi jporven!
Thank you for using Enfold.
I’m sorry but there is no shortcode to show the search box on custom locations. You can use the default get_search_form() function on the template files (single.php, page.php etc).
Best regards,
Ismael
Hi MathiasVie!
Thank you for using Enfold.
Entries from other languages should be excluded by default when using the search function. Please post the website url here. We would like to check it. Make sure that you’re running Enfold 3.0.2 and the latest version of WPML.
Cheers!
Ismael
Hi Enfold support,
First, I love the Enfold theme; thank you for that. I am using the RSS Feed link in the Footer widget and would like it to open in a new window. Generally, I am able to trouble shoot my own questions by searching your forum. I have found a few topics, but I have been unsuccessful in getting this to work. Can you please help me?
Thank you!
Can anyone confirm if there is a shortcode or function (avia or otherwise) to show the enfold search button. I would like to be able to add the search button to my custom menus, slide out panels, etc. I have searched the forums and do not see any reference to adding the enfold search button in custom locations (only references on replacing the search with other plugins or displaying it in the header through settings).
Hi,
Thanks for the reply and that did work but I do not see anything about this in your documentation. Is there a more detailed doc that explains things like this? I would never have guessed it took a shortcode. Usually it is in a post meta section in the actual post.
I purchased Enfold a year ago and I have been sidetracked with projects and was not able to get in to it. But I do remember a detailed doc that came with it. This is a nice theme and I want to be able to use it to its full extent. BTW I searched the forum for this topic and came up cold.
-Thanks
Hi,
i’d like to display the polylang language switcher with:
<?php pll_the_languages();?>
right of the search icon in enfold.
i tried helper-main-menu.php but without luck.
can you help where i can put the code?
thanks
mathias
Hi,
I try to customize Events Calendar 3.8.1 (free version) with Enfold 3.0.2.
Unfortunatly, the keywords search functionality seems to run only for the current displayed period. (In other words, it runs like a filter functionality more than a real search one).
As an example :
– The display view is “Month” and the current month is march 2015. I search events with the keyword “Concert”. The search will only return events that contain this word and that occurre during march 2015.
– The display is “Day” and the current date is 25 march 2015. I search events with the keyword “Concert”. The search will only return events that contain this word and that occure on the 25 march 2015.
This behaviour is probably useful for websites that deal with lot of events but my website is a small one : there are very few events a year. Then filtering events of the current displayed period is completly useless!
Please, could you help me to disable the events search bar?
(Refering to the .po file, I suppose this option exists, but probably only for the Pro plugin version. I havn’t found it in the Free one…)
Thank you for your help.
mareva
Hello,
I just noticed that when performing a google search with “[my username] homepage”, the first result appearing is showing my topics on Kriesi.at (because the username is used in the url address of the topic, what I didn’t expect). I would prefer people googling my name to find my webpage instead of finding Enfold support pages.
Would it please be possible to change my username through any other neutral name not related to my actual webpage?
I also tried to edit my topics to delete my nickname, but I noticed that older topics are not editable anymore.
Thank you for your support
Best regards,
C
Hey guys can anyone help me understand how the predictive search works in Enfold ? It is racking my brain.
http://www.repairsuk.co.uk/
Search for ipad 2 repairs, look at the results

I have an actual product called ipad 2 repairs and when you press search that result is top, why is that not showing on the dropdown ?
Hey benteasbjorn!
Thank you for using Enfold.
The portfolio works exactly like posts, the advantage is that you can use the advance layout builder. You can create one portfolio item for each picture or gallery then add tags or categories. The default search might not work for filtering tags but you can try to use the Relevanssi plugin. Please refer to this link for more info: http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/
Cheers!
Ismael
Hi diefleischerei!
Thank you for using Enfold.
Please add this on functions.php:
add_filter('get_product_search_form', 'get_product_search_form_modify', 10, 1);
function get_product_search_form_modify($form)
{
//global $product;
$form = '<form role="search" method="get" id="searchform" action="' . esc_url( home_url( '/' ) ) . '">
<div>
<label class="screen-reader-text" for="s">' . __( 'Search for:', 'woocommerce' ) . '</label>
<input type="text" value="' . get_search_query() . '" name="s" id="s" placeholder="' . __( 'Produkt', 'woocommerce' ) . '" />
<input type="submit" id="searchsubmit" value="'. esc_attr__( 'Suche', 'woocommerce' ) .'" />
<input type="hidden" name="post_type" value="product" />
</div>
</form>';
return $form;
}
Regards,
Ismael
Using Enfold 3.0.2. Just changed from my old theme. Everything great, except:
SOME of the newly created post links do not work – point to “Nothing found, the post you are looking for is not available”. There’s no consistency as to which posts these are by type, category, tag, included image – I can’t find any commonality.
I’m using Masonry (Flexible right now) to pull my blog post titles/excerpts/images into the homepage, and I can SEE all these posts there, just can’t click through to the single post page.
I can see the posts in search as well.
Weirdly SOMETIMES the posts will show in preview during drafting, but not thereafter.
I’ve tried changing the permalinks, etc., and nothing works.
Old posts seem to be working fine, and about 3 out of 4 new ones.
I haven’t made any changes to CSS at all as of yet.
-
This topic was modified 11 years, 4 months ago by
ElizabethB.
Hi!
Google can still see them even if they are hidden with CSS so you’ll need to remove them from the source code. You can find them in the following places.
1. /enfold/includes/loop-index.php on line 137.
2. /enfold/includes/loop-author.php on line 75.
3. /enfold/includes/loop-search.php on line 39.
4. /enfold/config-templatebuilder/avia-shortcodes/masonry-entries.php on line 705.
The line your looking for will look something like this.
echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
You’ll want to comment that out or delete it from each file.
Best regards,
Elliott
-
This reply was modified 11 years, 4 months ago by
Elliott.
Hi Ivana!
1- Please go to Enfold theme options > Header > Extra Elements and uncheck “Append search icon to main menu”
2- Refer to my post here – https://kriesi.at/support/topic/search-not-working-in-ie8/#post-328178
Regards,
Yigit
I have a client who would like a search box within the header – logo on the left, search bar on the right. He does not want it as part of the navigation park. Is there an easy way to incorporate it please within the Enfold theme.
Many thanks
Ivana
Hi e-cat!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
span.ajax_search_excerpt {
display: none;
}
Regards,
Yigit
First I think your ENFOLD Template is wonderful – thank you for all of your hard work.
Please advise if there is a quick css or code available already to reduce the padding (or spaces) between the columns on the pages (not talking about the portfolios)- I searched the forums but I couldnt find anything under the search “column width”.
All of a sudden, today, the search box field on all my Enfold sites (including yours here) has a red background. Bright red. Really annoying red. I’m using Chrome on a Mac. Doesn’t appear in Safari. What is this? I’ve not changed anything on my sites or on my computer today, that I know of.
Hi guys!!
What can I do to not have the dates appear on the Google snippets? It used to work by not displaying the dates on Enfold and on the Yoast SEO plugin but now they appear on the search results.
Is there some code I can add to remove the meta date?
Thank you!!!
Havi
http://hispanic-marketing.com/ if you need it :)
Hey artspbseo!
Try adding this to your custom CSS.
#top #searchform > div { margin-bottom: 30px; min-width: 220px; left: 40px; }
#top #searchform { display: inline-block; position: relative; }
And then find line 140 in /enfold/includes/helper-main-menu.php.
echo '</nav>';
And add this beneath it.
echo get_search_form();
Cheers!
Elliott
Hey!
1- Please go to Enfold theme options > Header > Extra Elements and uncheck “Append search icon to main menu”
2- Refer to my post here – https://kriesi.at/support/topic/search-not-working-in-ie8/#post-328178
Best regards,
Yigit
Hello!
How can I put search button/widget in main navigation menu (I’m using enfold photography demo)?
Hey!
1.) You can change the background position of the fullscreen slider with this:
.avia-fullscreen-slider .avia-slideshow>ul>li {
width: 100%;
height: 100%;
background-size: cover;
background-position: center center !important;
}
Change the caption text size with this:
@media only screen and (max-width: 479px) {
.responsive #top .slideshow_caption h2 {
font-size: 50px !important;
}
}
2.) Use this to modify the image size:
@media only screen and (max-width: 479px) {
.home .flex_column.av_one_fifth.first.avia-builder-el-3.el_before_av_four_fifth.avia-builder-el-first .avia-image-container-inner img {
width: 60%;
margin: 0 auto;
}
}
You can also use the Custom CSS Class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Regards,
Ismael
Hi!
There are thousands of Enfold users and only few reported performance issues. Honestly, this is a complex topic and should be dealt with outside the support forum. All we can do is provide basic / generic guidelines regarding website optimization. What is the current PHP version? Another user who seems to have the same issue ssomehow fix it by upgrading PHP:
https://kriesi.at/support/topic/avia-layout-builder-not-loading/#post-137892
And searching for any related issue regarding the mod_fcgid error and I found this on top which seems to be a GoDaddy related issue: http://www.howtoforge.com/forums/archive/index.php/t-56003.html
Anyway, we’re seeing errors on the site that are not theme related:
Notice: Trying to get property of non-object in /home/content/22/4189422/html/momo/wp-includes/nav-menu.php on line 665
Notice: Trying to get property of non-object in /home/content/22/4189422/html/momo/wp-includes/nav-menu.php on line 665
Notice: Trying to get property of non-object in /home/content/22/4189422/html/momo/wp-includes/nav-menu.php on line 665
Notice: Trying to get property of non-object in /home/content/22/4189422/html/momo/wp-includes/post.php on line 4373
Please post the login details here and set it as a private reply. We would like to check it.
Best regards,
Ismael
Hey kyabroudi!
Try adding this to the bottom of your /enfold/functions.php file.
add_filter( 'init', 'enfold_customization_remove_tooltip_search' );
function enfold_customization_remove_tooltip_search() {
remove_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
remove_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 );
add_filter( 'avf_fallback_menu_items', 'enfold_customization_add_basic_search' );
}
function enfold_customization_add_basic_search( $items ) {
$items .= '<li>'.get_search_form( false ).'</li>';
return $items;
}
And add this to your custom CSS.
li #searchform div {
display: block !important;
opacity: 1 !important;
margin-top: 22px;
margin-left: 10px;
}
Best regards,
Elliott
Hi,
I have downloaded the last enfold theme and uploaded it via ftp:
The search button icon is not visible (Safari) or broken (in chrome and firefox) and …no social icons visible…
http://imklusionsbuero-karlsruhe.de
Hey connect4consulting!
Navigate to Dashboard > Enfold > Header > Extra Elements and make sure you have the “Append search icon to main menu” option checked.
Cheers!
Elliott
Can you help with this..?
Need error page 404 to redirect to working page (URL), not error page…
I’ve had this feature for years on our former Joomla Site, now wondering if it may be done with WordPress, Enfold?
I’ve research several ‘custom 404 instructions’ but I can’t see how we may do this.
Thank you.
Im very happy with the theme Enfold! I have used it the last year.
Now I got a new projekt, Enfold again :-)
But please help me to understand PORTFOLIO structure.
I load pictures for media first. then I can collect sliders? or pictures? in portfolio, and decide the presentation – just like the blog function?
Im going to make a presentation for a school with different productions skills. I would like to add tags for pictures? and then you can search?
I think I maybe can use the portfolie in some way, or???
Help me to understand… eventually give me some good ideas ;-)