I have installed enfold theme in WordPress.
i want to remove blog and date from web pages.
Here you can see what i have to remove.
Link- http://screencast.com/t/fD2NmfawSB
please help
Hi Devin
Thanks for that, it would be great to have the editing and update facility going forwards, in the meantime I’ll have to be careful how I design things.
BTW, Enfold is terrific, maybe even better than Abundance.
Best regards
Jeff
Hello
I want to use Enfold only Ecommerce.
You can disable some Javascript, etc.? For example, the Portfolio I do not use.
I think that in this way gain in performance by reducing server requests.
Enfold requires a lot of resources but unfortunately at the moment my Server is not very efficient. In the future will be enhanced.
Thanks for any help.
Hi Ismael, it works for you but I do not as I have sent screenshots.
I tried from several different versions IE and not working properly.
I would ask you to give me screenshot of the version of IE you use and the OS.
Many customers will have that problem and I have to be able to give solution.
Thank you!
Xavier.
The portfolio items do not support custom fields out of the box but you can implement them with: http://codex.wordpress.org/Function_Reference/get_post_meta
You can insert the code in enfold/includes/loop-portfolio-single.php – i.e. insert it below:
the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>');
A sample code would be
the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>');
$mymeta = get_post_meta( get_the_ID(), 'mymetavalue' );
echo $mymeta;
This code would display the content of the custom field with the key/id “mymetavalue”.
You need to deregister the default avia.js (which can be found in the parent theme folder) in your child theme functions.php and then you need to create a copy of enfold/js/avia.js in your child theme. Afterwards modify avia.js (which is located in your child theme folder) and register the child theme avia.js with
add_filter('init', 'avia_replace_scripts');
function avia_replace_scripts()
{
wp_deregister_script('avia-default');
wp_dequeue_script( 'avia-default' );
$template_url = get_template_directory_uri();
wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
wp_enqueue_script( 'avia-default' );
}
Open up functions-enfold.php and replace
if(isset($post_type_obj[$key]->labels->name))
{
$output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
}
with
if(isset($post_type_obj[$key]->labels->name))
{
if($post_type_obj[$key]->labels->name == 'Portfolio Items')
{
$output .= "<h4>Recipes</h4>";
}
else if($post_type_obj[$key]->labels->name == 'Pages')
{
$output .= "<h4>My Pages</h4>";
}
else
{
$output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
}
}
and instead of “My Pages” insert your custom label text for pages.
Hi,
How did you add the form? Where did the gray and white strips background come from?
I tried to remove the css styling of Enfold forms located on css > base.css but it doesn’t do much. Please try to use Contact Form 7 or Gravity Forms, the compatibility between the theme and the plugins are much better.
Regards,
Ismael
Hi,
Your site is on Maintenance mode. Can you give us a screenshot of what you’re trying to do? Enfold is pretty much responsive.
Regards,
Ismael
Hi,
The Enfold theme is using the prettyPhoto lightbox plugin. I think woocommerce comes with the Fancybox plugin.
The stylesheet use is located on config-woocommerce > woocommerce-mod.css.
Regards,
Ismael
Hi,
Please go to Enfold > Styling > scroll below, look for Main Content tab. On Main Content background color, select white background. Please play around with the settings.
Regards,
Ismael
Hi,
On header.php, place the code above this one:
<?php
/*
* display the theme logo by checking if the default logo was overwritten in the backend.
* the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output
*/
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Regards,
Ismael
Hi,
Enfold is fairly compatible with IE10, this is what I have on my end when I view it using Internet Explorer 10.

I won’t be surprise if it is causing issues on IE8 and 9.
Regards,
Ismael
Hi,
Enfold can search for products. Can you give us a link to your website? This is what I see on my end when I search for products.

Regards,
Ismael
Hi,
You need to have the copy the css styling for the header. If you have Chrome, inspect element then edit the header part as HTML, this is the output:
<div id="header" class="header_color dark_bg_color mobile_drop_down">
<div id="header_meta" class="container_wrap container_wrap_meta">
<div class="container">
<ul class="noLightbox social_bookmarks icon_count_5"><li class="social_bookmarks_facebook social_icon_1"><a target="_blank" href="https://www.facebook.com/kriesi.at" class="avia-font-entypo-fontello"></a></li><li class="social_bookmarks_twitter social_icon_2"><a target="_blank" href="http://twitter.com/#/" class="avia-font-entypo-fontello"></a></li><li class="social_bookmarks_gplus social_icon_3"><a href="sighlence" class="avia-font-entypo-fontello"></a></li><li class="social_bookmarks_tumblr social_icon_4"><a href="tumbler" class="avia-font-entypo-fontello"></a></li><li class="social_bookmarks_mail social_icon_5"><a href="#" class="avia-font-entypo-fontello">✉</a></li></ul><div class="sub_menu"><ul id="menu-main-menu" class="menu"><li id="menu-item-755" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-755"><a href="http://kriesi.at/themes/enfold/">Home</a>
<ul class="sub-menu">
<li id="menu-item-2285" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-734 current_page_item menu-item-2285"><a href="http://localhost/kriesi/enfold/">Home v1: Landing Page Style</a></li>
<li id="menu-item-2292" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2292"><a href="http://localhost/kriesi/enfold/?page_id=1108">Home v2: 3 Col + Contact</a></li>
<li id="menu-item-2286" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2286"><a href="http://localhost/kriesi/enfold/?page_id=1040">Home v3: 3 Column with Blog</a></li>
<li id="menu-item-2291" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2291"><a href="http://localhost/kriesi/enfold/?page_id=1070">Home v4: Small Slider</a></li>
<li id="menu-item-2288" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2288"><a href="http://localhost/kriesi/enfold/?page_id=1097">Home v5: Portfolio Style</a></li>
<li id="menu-item-2287" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2287"><a href="http://localhost/kriesi/enfold/?page_id=1023">Home v6: Classic 4 Column</a></li>
<li id="menu-item-2289" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2289"><a href="http://localhost/kriesi/enfold/?page_id=2251">Home v7: One Page Portfolio</a></li>
<li id="menu-item-2208" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2208"><a href="http://localhost/kriesi/enfold/?page_id=2207">Home v8: Frontpage Shop</a></li>
</ul>
</li>
<li id="menu-item-2272" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2272"><a href="http://localhost/kriesi/enfold/?page_id=2270">Portfolio</a>
<ul class="sub-menu">
<li id="menu-item-2273" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2273"><a href="http://localhost/kriesi/enfold/?page_id=987">Portfolio 2 Column</a></li>
<li id="menu-item-2274" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2274"><a href="http://localhost/kriesi/enfold/?page_id=992">Portfolio 3 Column</a></li>
<li id="menu-item-2276" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2276"><a href="http://localhost/kriesi/enfold/?page_id=2270">Portfolio 4 Column</a></li>
<li id="menu-item-2277" class="menu-item menu-item-type-post_type menu-item-object-portfolio menu-item-2277"><a href="http://localhost/kriesi/enfold/?portfolio=slider-two-third">Single Portfolio: 2/3 Slider</a></li>
<li id="menu-item-2290" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2290"><a href="http://localhost/kriesi/enfold/?page_id=2269">Portfolio Ajax</a></li>
<li id="menu-item-2278" class="menu-item menu-item-type-post_type menu-item-object-portfolio menu-item-2278"><a href="http://localhost/kriesi/enfold/?portfolio=lorem-ipsum">Single Portfolio: 2/3 Gallery</a></li>
<li id="menu-item-2279" class="menu-item menu-item-type-post_type menu-item-object-portfolio menu-item-2279"><a href="http://localhost/kriesi/enfold/?portfolio=portfolio-big">Single Portfolio: Big Slider</a></li>
<li id="menu-item-2280" class="menu-item menu-item-type-post_type menu-item-object-portfolio menu-item-2280"><a href="http://localhost/kriesi/enfold/?portfolio=vimeo-video">Single Portfolio: Fullscreen Slider</a></li>
</ul>
</li>
<li id="menu-item-2271" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2271"><a href="http://localhost/kriesi/enfold/?page_id=731">Blog</a>
<ul class="sub-menu">
<li id="menu-item-2306" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2306"><a href="http://localhost/kriesi/enfold/?page_id=1336">Blog Grid</a></li>
<li id="menu-item-2284" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2284"><a href="http://localhost/kriesi/enfold/?page_id=1010">Blog Multi Author</a></li>
<li id="menu-item-2283" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2283"><a href="http://localhost/kriesi/enfold/?page_id=1012">Blog Single Author Small</a></li>
<li id="menu-item-2282" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2282"><a href="http://localhost/kriesi/enfold/?page_id=1014">Blog Single Author Big</a></li>
<li id="menu-item-2281" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2281"><a href="http://localhost/kriesi/enfold/?page_id=1016">Blog Single Author Fullwidth</a></li>
</ul>
</li>
<li id="menu-item-2293" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2293"><a href="http://localhost/kriesi/enfold/?page_id=1122">Pages</a>
<ul class="sub-menu">
<li id="menu-item-2295" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2295"><a href="http://localhost/kriesi/enfold/?page_id=1195">About Us</a></li>
<li id="menu-item-2299" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2299"><a href="http://localhost/kriesi/enfold/?page_id=1236">Blank Pages</a>
<ul class="sub-menu">
<li id="menu-item-2302" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2302"><a href="http://localhost/kriesi/enfold/?page_id=1236">What is a Blank Page?</a></li>
<li id="menu-item-2300" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2300"><a href="http://localhost/kriesi/enfold/?page_id=1261">Maintenance Mode</a></li>
<li id="menu-item-2301" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2301"><a href="http://localhost/kriesi/enfold/?page_id=1248">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-2297" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2297"><a href="http://localhost/kriesi/enfold/?page_id=1167">Contact</a></li>
<li id="menu-item-2303" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2303"><a href="http://localhost/kriesi/enfold/?page_id=1277">FAQ</a></li>
<li id="menu-item-2298" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2298"><a href="http://localhost/kriesi/enfold/?page_id=1224">Help</a></li>
<li id="menu-item-2305" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2305"><a href="http://localhost/kriesi/enfold/?page_id=1324">Landing Page</a></li>
<li id="menu-item-2294" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2294"><a href="http://localhost/kriesi/enfold/?page_id=1212">Meet the Team</a></li>
<li id="menu-item-2296" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2296"><a href="http://localhost/kriesi/enfold/?page_id=1176">Pricing</a></li>
<li id="menu-item-2304" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2304"><a href="http://localhost/kriesi/enfold/?page_id=1302">Services</a></li>
</ul>
</li>
<li id="menu-item-2275" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2275"><a href="http://localhost/kriesi/enfold/?page_id=750">Shortcodes</a></li>
<li id="menu-item-2309" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2309"><a href="http://localhost/kriesi/enfold/?page_id=2307">A.Test</a></li>
<li id="menu-item-2354" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2354"><a href="http://localhost/kriesi/enfold/?page_id=2343">Shop</a></li>
</ul><div class="phone-info with_nav"><span>302-312456</span></div></div> </div>
</div>
<div id="header_main" class="container_wrap container_wrap_logo">
<ul class="cart_dropdown visible_cart" data-success="was added to the cart"><li class="cart_dropdown_first"><a class="cart_dropdown_link" href="http://localhost/kriesi/enfold/?page_id=2344"><span class="avia-font-entypo-fontello"></span></a><!--<span class='cart_subtotal'><span class="amount">£9.99</span></span>--><div class="dropdown_widget dropdown_widget_cart" style="display: none; opacity: 0;"><div class="avia-arrow"></div><div class="widget_shopping_cart_content">
<ul class="cart_list product_list_widget ">
<li>
<a href="http://localhost/kriesi/enfold/?product=mini-product">
<img width="120" height="120" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/24-120x120.jpg" class="attachment-shop_thumbnail wp-post-image" alt="2">
Mini Product
</a>
<span class="quantity">1 × <span class="amount">£9.99</span></span> </li>
</ul><!-- end product list -->
<p class="total"><strong>Subtotal:</strong> <span class="amount">£9.99</span></p>
<p class="buttons">
<a href="http://localhost/kriesi/enfold/?page_id=2344" class="button">View Cart →</a>
<a href="http://localhost/kriesi/enfold/?page_id=2345" class="button checkout">Checkout →</a>
</p>
</div></div></li></ul>
<div class="container" style="height: 116px; line-height: 116px;">
<strong class="logo bg-logo"><a href="http://localhost/kriesi/enfold/"><img src="http://localhost/kriesi/enfold/wp-content/themes/enfold/images/layout/logo.png" alt="" title="Enfold"></a></strong><div class="main_menu" data-selectname="Select a page"><div class="menu-main-menu-container"><ul id="menu-main-menu-1" class="menu"><li id="menu-item-755" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent active-parent-item dropdown_ul_available"><a href="http://kriesi.at/themes/enfold/" style="height: 116px; line-height: 116px;"><span class="avia-bullet"></span>Home<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>
<ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
<li id="menu-item-2285" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-734 current_page_item"><a href="http://localhost/kriesi/enfold/"><span class="avia-bullet"></span>Home v1: Landing Page Style</a></li>
<li id="menu-item-2292" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1108"><span class="avia-bullet"></span>Home v2: 3 Col + Contact</a></li>
<li id="menu-item-2286" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1040"><span class="avia-bullet"></span>Home v3: 3 Column with Blog</a></li>
<li id="menu-item-2291" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1070"><span class="avia-bullet"></span>Home v4: Small Slider</a></li>
<li id="menu-item-2288" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1097"><span class="avia-bullet"></span>Home v5: Portfolio Style</a></li>
<li id="menu-item-2287" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1023"><span class="avia-bullet"></span>Home v6: Classic 4 Column</a></li>
<li id="menu-item-2289" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=2251"><span class="avia-bullet"></span>Home v7: One Page Portfolio</a></li>
<li id="menu-item-2208" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=2207"><span class="avia-bullet"></span>Home v8: Frontpage Shop</a></li>
</ul>
</li>
<li id="menu-item-2272" class="menu-item menu-item-type-post_type menu-item-object-page dropdown_ul_available"><a href="http://localhost/kriesi/enfold/?page_id=2270" style="height: 116px; line-height: 116px;"><span class="avia-bullet"></span>Portfolio<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>
<ul class="sub-menu" style="display: block; opacity: 0.04312729975283146; visibility: visible;">
<li id="menu-item-2273" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=987"><span class="avia-bullet"></span>Portfolio 2 Column</a></li>
<li id="menu-item-2274" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=992"><span class="avia-bullet"></span>Portfolio 3 Column</a></li>
<li id="menu-item-2276" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=2270"><span class="avia-bullet"></span>Portfolio 4 Column</a></li>
<li id="menu-item-2277" class="menu-item menu-item-type-post_type menu-item-object-portfolio"><a href="http://localhost/kriesi/enfold/?portfolio=slider-two-third"><span class="avia-bullet"></span>Single Portfolio: 2/3 Slider</a></li>
<li id="menu-item-2290" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=2269"><span class="avia-bullet"></span>Portfolio Ajax</a></li>
<li id="menu-item-2278" class="menu-item menu-item-type-post_type menu-item-object-portfolio"><a href="http://localhost/kriesi/enfold/?portfolio=lorem-ipsum"><span class="avia-bullet"></span>Single Portfolio: 2/3 Gallery</a></li>
<li id="menu-item-2279" class="menu-item menu-item-type-post_type menu-item-object-portfolio"><a href="http://localhost/kriesi/enfold/?portfolio=portfolio-big"><span class="avia-bullet"></span>Single Portfolio: Big Slider</a></li>
<li id="menu-item-2280" class="menu-item menu-item-type-post_type menu-item-object-portfolio"><a href="http://localhost/kriesi/enfold/?portfolio=vimeo-video"><span class="avia-bullet"></span>Single Portfolio: Fullscreen Slider</a></li>
</ul>
</li>
<li id="menu-item-2271" class="menu-item menu-item-type-post_type menu-item-object-page dropdown_ul_available"><a href="http://localhost/kriesi/enfold/?page_id=731" style="height: 116px; line-height: 116px;"><span class="avia-bullet"></span>Blog<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>
<ul class="sub-menu" style="display: block; opacity: 0.1942984329350293; visibility: visible;">
<li id="menu-item-2306" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1336"><span class="avia-bullet"></span>Blog Grid</a></li>
<li id="menu-item-2284" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1010"><span class="avia-bullet"></span>Blog Multi Author</a></li>
<li id="menu-item-2283" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1012"><span class="avia-bullet"></span>Blog Single Author Small</a></li>
<li id="menu-item-2282" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1014"><span class="avia-bullet"></span>Blog Single Author Big</a></li>
<li id="menu-item-2281" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1016"><span class="avia-bullet"></span>Blog Single Author Fullwidth</a></li>
</ul>
</li>
<li id="menu-item-2293" class="menu-item menu-item-type-post_type menu-item-object-page dropdown_ul_available"><a href="http://localhost/kriesi/enfold/?page_id=1122" style="height: 116px; line-height: 116px;"><span class="avia-bullet"></span>Pages<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>
<ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
<li id="menu-item-2295" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1195"><span class="avia-bullet"></span>About Us</a></li>
<li id="menu-item-2299" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1236"><span class="avia-bullet"></span>Blank Pages</a>
<ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
<li id="menu-item-2302" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1236"><span class="avia-bullet"></span>What is a Blank Page?</a></li>
<li id="menu-item-2300" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1261"><span class="avia-bullet"></span>Maintenance Mode</a></li>
<li id="menu-item-2301" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1248"><span class="avia-bullet"></span>Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-2297" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1167"><span class="avia-bullet"></span>Contact</a></li>
<li id="menu-item-2303" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1277"><span class="avia-bullet"></span>FAQ</a></li>
<li id="menu-item-2298" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1224"><span class="avia-bullet"></span>Help</a></li>
<li id="menu-item-2305" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1324"><span class="avia-bullet"></span>Landing Page</a></li>
<li id="menu-item-2294" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1212"><span class="avia-bullet"></span>Meet the Team</a></li>
<li id="menu-item-2296" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1176"><span class="avia-bullet"></span>Pricing</a></li>
<li id="menu-item-2304" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1302"><span class="avia-bullet"></span>Services</a></li>
</ul>
</li>
<li id="menu-item-2275" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=750" style="height: 116px; line-height: 116px;"><span class="avia-bullet"></span>Shortcodes<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
<li id="menu-item-2309" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=2307" style="height: 116px; line-height: 116px;"><span class="avia-bullet"></span>A.Test<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
<li id="menu-item-2354" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=2343" style="height: 116px; line-height: 116px;"><span class="avia-bullet"></span>Shop<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="
<form action="http://localhost/kriesi/enfold/" id="searchform" method="get">
<div>
<input type="submit" value="🔍" id="searchsubmit" class="button"/>
<input type="text" id="s" name="s" value="" placeholder='Search' />
</div>
</form>" style="height: 116px; line-height: 116px;">
Hi kindnation,
You would need to try and copy over the html for the header/menu as well as include the theme css and javascript. The issue will be that when you include those you will probably overwrite some of your static html pages css.
Regards,
Devin
Hi
I think i have the same problem, even after i did put
.title_container {
display: none;
}
in the quick css.
Pleas have a look at this screenshot:
http://www.maurilux.com/wp-content/uploads/2013/07/enfold-header.jpg
I would also like to remove all the green navigation lines from the menu.
Thanks for your answers.
Hi,
There are lots of plugins installed. I don’t want to mess with your settings, so I need you disable all plugins. I can’t seem to fix the issue with the slider transition.
Please upgrade to Enfold 1.8.4. Would you be so kind to create the Layer Slider from scratch? This is a quick video on Layer Slider: http://www.youtube.com/watch?v=ZY9SxVyugx4
Regards,
Ismael
I have looked at page after page and thought I’d just reach out:
How to enlarge just the MENU FONT size in Enfold Theme?
By the way: terrific theme!
Thanks
I am using the Enfold theme and wanted to add a wider logo. I mad the new logo 250 X 88 since the height of the logo when the “Header with social icons and bottom” is selected is 88 according to my web inspector (learned from nick).
I added this to the Quick CSS:
.logo img {
height: auto;
width: 250px;
}
The logo works in safari, but the responsiveness has gone away. doesnt work on the ipad, or in google chrome.
Any suggestions?
Thx in advance.
Hi MK,
You can do that in the theme options Styling options under the Header tab. Look for “Header background color” and you can use the color picker there to set your header background color.
Regards,
Devin
Hi
How can i add, or activate the custom fields withing the portfolio items in the enfold theme?
I would like to filter the portfolio items with a query search plugin like “Advance WP Query Search Filter” or something similar if someone has a good idea for that as well.
Thanks for Answers
Seems cheeky to ask for even more from such a great file! If anything:
– Some kind of carousel slider for images/content (I may have seen that already mentioned)
– Overlay style portfolio (like http://goo.gl/trcPyF or http://goo.gl/1g869k )
– Counters (like http://goo.gl/OLnZk8)
– Clients shortcode
Could not be happier with it anyhow though!
Hi. I updated wordpresss recently & enfold & now when I go into edit any pages it does not give me the options to drag & drop the features I want to add to the page.
Is there a setting somewhere that I need to change? Help!
Thanks so much!
Finally I bought the item and find it fantastic and I am very happy in all browsers except IE.
I’m testing the initial version with your “dummy data” loaded on my website:
http://www.escalamas.com/cms1 and not see properly with IE10.
http://imageshack.us/a/img856/6718/kqnq.png
http://imageshack.us/a/img823/1973/i1a8.png
The columns and other elements seems as if not addressed properly in this browser, but errors are widespread throughout the web.
My version of browser and OS.
http://imageshack.us/a/img43/3807/drlo.png
In the specifications set that is compatible from version IE8, IE9 and IE10.
And IE10 is the last … do you look this, please?, Many customers use IE and would have to be compatible ..
Thank you very much!
Xavier.
I too would like to see number icons or capital letters, eg, 1, 2, 3, 4, 5 or A, B, C, D, E
I want to be able to search products through the search function embedded in the header however the default wordpress search engine spits out posts and the date they were posted. I tried relevanssi but it does not suffice for my needs. I want something along the lines of how the REPLETE theme by Kriesi where all products with images of the products show up. Would I need to purchase the REPLETE theme for this? Can I just exchange my current license for ENFOLD FOR REPLETE? or is there a work around for this? I’ve tried woocommerce predictive search (which did absolutely nothing for me) and went through extensive amounts of threads but I could not find the answer to my question..
help!!!
I have other pages that aren’t using WordPress, but want to add the Enfold Menu to the header, so at least it looks like it’s integrated website. Can you advise how to show the menu system on other pages?
btw, Enfold is awesome. Great work Kriesi!
Also, how do you put an image on top of a standard blog post like this: http://kriesi.at/themes/enfold/2012/01/14/this-is-a-nice-post/
When I try to add media content, the image only shows inside the blog post rather than on top.
Hi there,
as the WPML translation with Enfold doesn’t work until now, i decided to translate the plugins with CodeStyling Localization plugin. So after translating a bunch of plugins (like Woocommerce Subscriptions) into german language, there is no effect to show the german language either in the background nor in the frontend.
Any idea why it is not shown up? I had contact with Woocommerce support and they tested it with a normal standard theme and it worked perfectly. So I guess it might be a problem with Enfold or within combination of the German market Press plugin maybe ( which you work very close together with). Any help here would be great!
Thomas