Thanks Yigit. I have no idea how or where to enter any line of code into my website. I have created the entire website using Enfold’s drag and drop interface. I did some research. There doesn’t seem to be any simple Settings option to increase memory. I read that the .config file needs to be modified. Unfortunately, I have no idea where that is. I have not used FTP yet. Simply used drag and drop available inside the Enfold theme. For now the website is up and running and I can add, edit, delete pages as I like. So I’m ok.
But I will need to start changing Enfold Settings in the future again. Any suggestions on how I can increase memory without messing with lines of code?
Thanks.
Kunal.
Hey MeisDesign!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
img {
border-radius: 0!important;
}
Cheers!
Yigit
Hi Martin!
Can you please firstly update Enfold to the latest version 2.9.1 via FTP – http://vimeo.com/67209750
Cheers!
Yigit
Not sure if this an Enfold issue, Plugin Issue, or Host provider (crapy cheap shared hosting with OVH)
However every three or four times that I load a page the website times out and goes to a blank white page.
I have to hit refresh on the browser to bring back the page? This keeps happening and is starting to annoy me.
I know it may not be Enfold theme but is the issue happening when you visit my site ? (ShutterLIVING.com)
And is there any recommendations you can make to resolve this ?
I have Super cache installed, however disabled as Im working on the site)
Hi David!
Thank you for choosing Enfold!
Please import dummy content in Enfold theme options > Import & Export tab.
Please also take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
If you would like to request a feature or vote requested features, please go to – https://kriesi.at/support/enfold-feature-requests/
If you have any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)
Cheers!
Yigit
Hi!
Look for Enfold > General Styling > -scroll down to the bottom- Quick CSS.
Best regards,
Josue
Hi
Ok, I’m the new kid here so please excuse me if I ask a stupid question. I purchased the Enfold theme and installed it but I was expecting the sample page to be the same as the live preview on Theme Forest so that I had a base to start with. But instead a very simplistic basic sample page has installed. Have I done something wrong?
Kind regards, David
Thanks Devin,
I am going to set “Blog pages show at most” 24 items.
1. Blog main page is fixed to 18 items by enfold theme.
2. Category pages show good because all of them have less than 24 items,
3. Label pages now do not have more than 24 items, so they are shown in only one page.
I think it could be a good solution. But can i change the number of items of the grid layout at enfold theme?
Regards, Raúl.
-
This reply was modified 11 years, 7 months ago by
ribanezg.
Hi,
there is a little yellow mouse over box with the text “Page 1” on most of my text boxes. Does anybody know how i can deactivate the mouse over?
Thanks!
Thank you!
A dynamic field on the tables would be a great add to enfold!
Hey!
Go to Enfold > General Styling and select this setting (Boxed Layout):

Regards,
Josue
Hey!
No, it doesn’t, you can only set an image or a video to fullscreen elements (color sections, sliders, etc).
P.S. a fullscreen Google Maps element was added in 2.6.
Best regards,
Josue
Hi guys
I am looking to place an image in the background of the Enfold theme but not sure if it can be done and how to do it. I am looking for something like this site http://www.flowermarket.com.au/contact
Any suggestions would be appreciated
Hey Mauro!
This seems to be a bug (happens here too), i’ll report it.
Edit: I applied a potential fix on your install.
Best regards,
Josue
-
This reply was modified 11 years, 7 months ago by
Josue.
Hey!
Please update the theme to the latest version (2.9.1).
Best regards,
Josue
Hi blankonblank!
Thank you for using Enfold.
Unfortunately, it is not possible to specify a transparency value for background images inside a color section. It is possible if you applied a solid background color. You should edit the image on photo editor then set the transparency, save it as PNG format.
Cheers!
Ismael
Hey j1980mac!
Thank you for using Enfold.
You’re referring to a single page navigation system. Please refer to this link: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
Cheers!
Ismael
Hi!
Thank you for the info.
Please use this on Quick CSS or custom.css:
.avia-button-wrap.avia-button-center.avia-builder-el-7.el_after_av_heading.avia-builder-el-last a.avia-button.avia-icon_select-no.avia-color-custom.avia-size-large.avia-position-center {
background: transparent !important;
border: 1px solid white !important;
box-shadow: inset 0 0 10px white;
}
Another way to do that is to apply a unique css selector for the button or any advance layout builder elements. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_template_builder_custom_css');
Edit the button element then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “transparent-button”.
You can add something like this on your custom.css or Quick CSS:
.transparent-button a.avia-button {
background: transparent !important;
border: 1px solid white !important;
box-shadow: inset 0 0 10px white;
}
Refer to this link for more info: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Regards,
Ismael
Hi storyboardsolutions!
Thank you for using Enfold.
I’m sorry but you can’t slice the shortcodes. You need to put it inside the do_shortcode function as a whole. This will echo out the default tab shortcode:
<?php echo do_shortcode("[av_tab_container position='top_tab' boxed='border_tabs' initial='1']
[av_tab title='Tab 1' icon_select='no' icon='']
Tab Content 1 goes here
[/av_tab]
[av_tab title='Tab 2' icon_select='no' icon='']
Tab Content 2 goes here
[/av_tab]
[/av_tab_container]"); ?>
Best regards,
Ismael
Hello, I am running Enfold 2.9.1 and WordPress 3.9.1.
I have created a custom sidebar in the widget area but when I choose the custom sidebar in a page under “Sidebar Setting”, the custom sidebar does not show and appears blank.
Can you please tell me what the issue is.
Thank you.
Hey axelfx07!
Thank you for using Enfold.
The Enfold uses MagnificPopup as default lightbox plugin. You can add this on functions.php:
function popup_inline() { ?>
<script type="text/javascript">
jQuery(window).load(function(){
jQuery('.open-popup-link').magnificPopup({
type:'inline',
midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href.
});
});
</script>
<?php }
add_action('wp_head', 'popup_inline');
Then use this on a text block:
<div id="test-popup" class="white-popup mfp-hide">
<p>PLACE CONTENT HERE</p>
</div>
<a class="open-popup-link" href="#test-popup">Show inline popup</a>
Add this on Quick CSS or custom.css:
.white-popup {
position: relative;
background: #FFF;
padding: 20px;
width: auto;
max-width: 500px;
margin: 20px auto;
}
Remove browser cache then reload the page a few times.
Cheers!
Ismael
Hey rswildview!
Thank you for using Enfold.
Change the horizontal rule element color with this on Quick CSS or custom.css:
span.hr-inner {
border-color: green !important;
}
Cheers!
Ismael
Hey alessandro!
Thank you for using Enfold.
Please go to Enfold > Header Layout > Mobile Menu > Header Mobile Menu activation panel. Choose the second option to force the theme to show the mobile menu earlier. Remove browser cache then reload the page a few times.
Cheers!
Ismael
Hey jberickson!
Thank you for using Enfold.
Your css is correct. Please try to remove browser cache then reload the page a few times. You can hide the related products section with this on Quick CSS or the custom.css file:
.related.products {
display: none !important;
}
You can manually add a related product by adding an Up-Sell product for the item.
Cheers!
Ismael
Hey!
Thank you for using Enfold.
Are you referring to the 3D transition of the layer slider? This is an issue with Chrome and the latest update of the plugin should fix the issue. We already reported the problem to Kriesi. It should be included on the latest patch of the theme which is not release yet. For now, please use the 2D transitions.
Best regards,
Ismael
Hey responsecrm!
Thank you for using Enfold.
Unfortunately, you’re using a very old version of the theme, 1.7.1 which is not compatible with WP 3.9.2. Please download the latest version 2.9.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/
Note that updating the theme might break some of the options and elements on the theme. You might need to reconfigure them or create them from scratch. Please update the theme immediately if certain patch are available.
Regards,
Ismael
Hi Mauriweb!
Thank you for using Enfold.
Please use this on Quick CSS or custom.css:
#top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
font-size: 13px !important;
line-height: 1.3em !important;
height: 30px;
min-height: 30px;
}
Cheers!
Ismael
Hey!
Thank you for using Enfold.
You can create a temporary post to generate the icon shortcode then copy it. Place it on the text widget right before the phone numbers numbers or addresses. You can also add your own icons. Please refer to this link: http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/
Cheers!
Ismael
Hi Josue
I added
function avia_add_custom_icon($icons) {
$icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue859');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
function avia_add_custom_social_icon($icons) {
$icons['Cart'] = 'cart';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
but received the following error:
Parse error: syntax error, unexpected ‘&’, expecting ‘]’ in /home/content/p3nexnas06_data02/13/2173913/html/wp-content/themes/enfold/functions.php on line 506
According to Coda, line 506 is:
`
$icons[‘cart’] = array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue859’);
‘
Thoughts?
-
This reply was modified 11 years, 7 months ago by
moprosk. Reason: syntax