Hi this is Yiannis, and i have purchased Enfold theme one year ago.
I build up a website and everything was great and successful!!!
But today i tried to upload some new products and i found out that no matter what i do,
ajax portfolio doesn’t work. Specifically i can see all the products on the portfolio grid and it opens the products window above when i click on a product, but when i try to open an other one it stops working.
Please help, i already have a huge problem because we are in a middle of an international exhibition!!!!
thank you in advance
Hi!
1- It does seem to work fine on my end – http://i.imgur.com/HV2u9MI.png Have you already figured it out?
2- Please add following code to Quick CSS in Enfold theme options under General Styling tab
form#mc-embedded-subscribe-form .clear {
visibility: visible!important;
overflow: visible!important;
}
3-
.header-scrolled a.wpmenucart-contents {
line-height: 44px!important;
height: 44px!important;
}
Regards,
Yigit
Hi!
add a button it only displays the shortcode text in the sidebar, not a button
Are you referring to Enfold buttons? if so, try putting them in a Text widget.
Best regards,
Josue
Hey!
You are using older version of Enfold. Please update Enfold to the latest version 2.9.1 via FTP – http://vimeo.com/67209750
Advanced Styling tab should appear in Enfold theme options
Best regards,
Yigit
This reply has been marked as private.
Hey welti!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.widgettitle { text-transform: none; }
Cheers!
Yigit
Hi Enfold Team
Can i set the .widgettitle to NOT uppercase…
Thanks for the CSS code
Hello,
-Question 1
I’m setting up a megamenu with 4 columns.
Each column has a small image (240x135px) and a short paragraph.
It looks good on a 1920×1080 screen, but when I resize the browser window to make it smaller (around 1200px wide), the menu gets cut on the left, showing only 3 columns and half of the 4th column width. If I downsize it even further (around 800px wide), it only shows 2 columns and half of the 3rd column. Below the 800px, it converts to mobile menu.
Is there a way to make the megamenu responsive, to it adapts to the viewport?
-Question 2
On a mobile device, or when downsizing the viewport to a smartphone width, the mobile menu shows the megamenu items repeated, I mean, including the Custom item used for description. Can this behavior be changed?
Thanks in advance for your support.
Daniel
Hi,
I want to be able to show the summary of the snippet on the blog home page. I do NOT want to use the Read More Tag for this. Not only is this a lazy way of doing things you also cannot customise what content you want in your snippet.
How can this be achieved with Enfold – with the following:
1. The snippet is drawn from the Excerpt and not the read more tag.
2. It appears on Blog home page.
Thanks and appreciate the help
Vince
Hi!
You can manage your subscriptions here: https://kriesi.at/support/profile/edelabarre/subscriptions/
Seems you have by accident subscribed to the whole “Enfold” forum, not only this thread :)
Best regards,
Kriesi
Hello,
I try to install the plugin “Image Zoom” from Woocommerce. Unfortunately the zoom function will not work with the standard product image within woocommerce. What is to take into account to make it work? Or does this plugin does not work with the theme? Can it be that I have to modify the naming of the image class in the settings of the plugin (standard is image class : images? If there is a possibility to make it work please let me know. Thanks a lot, Ciao, Jens
Hey MacMyDays!
Please open up enfold/archive.php and replace:
<div class="category-term-description">
<?php echo term_description(); ?>
</div>
with:
<h1 class="category_archive_title">
<?php
single_cat_title( 'Posted in: ', true );
single_month_title( ' ', true );
?>
</h1>
<div class="category-term-description">
<?php echo term_description(); ?>
</div>
Regards,
Peter
Hi odmv91!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
1-
p.toggler.activeTitle {
background-color: #0f8fc1;
color: white;
}
2-
.tab { font-size: 16px!important; }
3-
span.image-overlay-inside {
background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
background-repeat: no-repeat;
background-position: 50%;
}
span.image-overlay-inside:before { display: none; }
Regards,
Yigit
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 768px) {
.html_header_transparency #top #wrap_all #main { margin-top: -82px; }}
Regards,
Yigit
Hey christopherd6!
Please go to Appearance > Editor and open Functions.php file and add following code
function add_custom_header(){
?>
<script>
jQuery(window).load(function(){
jQuery('.logo img, .logo a, .av-main-nav > li > a, #header_main .container').addClass('small-header');
if ( jQuery("body#top").hasClass("home") ) {
jQuery(".logo img, .logo a, .av-main-nav > li > a, #header_main .container").removeClass('small-header') };
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_header');
then add following code to Quick CSS in Enfold theme options under General Styling tab
.small-header { height: 58px!important; line-height: 58px!important; max-height: 58px!important; }
Regards,
Yigit
Dear Dude,
Thank you for that code sample. Actually, it can be done with it. A working example can be found here:
http://www.tweekeertwee.nl/handleidingen/reveal-footer-test/.
The only weird things are that the width of the #footer goes to waste when it gets the position:fixed property, although a simple width:100% already seemed to be the right remedy. Also, it seems the z-index of the footer must be set to -1 for it to work. The only thing that’s tricky is get the socket down at the bottom, but you can actually use the same trick for that. When all that is implemented, you get:
<style type="text/css">
#wrap_all{
z-index:2 !important;
position:relative !important;
}
#main{
/* It appears in the newer versions of Enfold you can't set the margin to the #wrap_all. It gets me a grey streak and no footer. */
/* Unless you're working with a lot of Color Sections at the bottom of your content this shouldn't be a problem. */
/* The dynamic solution using JavaScript listed next actually does take care of that. Then you can forget this #main selector */
margin-bottom:509px !important; /* Hard coded. Not ideal. */
}
#footer{
bottom:0 !important;
margin-bottom:51px !important; /* Hard coded. Not ideal. */
position:fixed !important;
z-index:-1 !important;
height:458px !important; /* Hard coded. Not ideal. */
width:100% !important;
}
#socket{
bottom:0 !important;
position:fixed !important;
width:100% !important;
z-index:-1 !important;
}
</style>
Adding that to the Custom CSS works, although you have to hard-code the heights in. I based these values on the Enfold demo site, but depending on how a client might choose to shape the footer or even socket, this can cause problems. You could set the heights dynamically though with some JavaScript after the whole thing is loaded. Adding something like this to a footer Text widget does the trick:
<script type="text/javascript">
window.onload = function(){
var footerr = document.getElementById("footer"); // Weird names to easily dodge variable-naming conflicts
var sockett = document.getElementById("socket");
var mainn = document.getElementById("main");
var wrapalll = document.getElementById("wrap_all");
var deltaMainn = wrapalll.offsetHeight - mainn.offsetHeight; // Margin needs to be on the #main but must take #wrap_all into account
footerr.style.marginBottom = sockett.offsetHeight + "px"; // Set the footer margin to reveal the socket
mainn.style.marginBottom = (footerr.offsetHeight + sockett.offsetHeight) + "px"; // Set the main margin to reveal footer + socket
}
</script>
The risk is of course that you get a code jungle, something that Google probably doesn’t like either (is it actually so paranoid as to always recognize footer code as bad news?). But it is a working solution to get this effect up and running.
Kind regards,
Lucas
Hi Ismael,
Thank you for helping.
Afterwards the white background seems not pretty for the table :) So I leave it standard.
The quick CSS code for making all table columns the same with works great. But if I have a table with only 4 columns it seems not great. So is there another option?
Is there also a option to remove blank table fields?
Or can gain more flexibility in the tables options for next updates of Enfold? It would be awesome to make great pretty pricing and data tables :)
Regards,
Mike
Hi jdrijver!
Please try re-updating the theme via FTP – http://vimeo.com/67209750
make sure to overwrite all files including Enfold/JS folder
Best regards,
Yigit
Hi!
1- Please add following code to Quick CSS in Enfold theme options under General Styling tab
.single .blog-meta { display: none!important; }
2- You can add Button shortcode to your posts and link it to your main blog pag
Regards,
Yigit
Hi,
I was able to resolve my problem. Optimizing images is not the correct direction. As I thought Enfold was resizing my images and creating the poor Google page test score ! why ? When using Enfold ‘blog post’ do not enable “set the image size automatically’, this sets in motion the resizing of the main image(which was 1860X1238)! instead use the ‘set the preview size manually’, then select a resized image. The Google speed test no longer shows these images in the Optimize image drop down.
I mentioned that I export with Photoshop, which already strips jpeg data.
I am using hyper cache, I own W3TC and had installed before I moved to Enfold. I deactivated W3TC until my theme design and content becomes stable. (It is a hassle clearing caches during debug process)
Hi,
I’d like to thank again the amazing work of Kriesi’s support team !
A question about design…
One one of my pages I’d like to do the same thing as on this page : http://www.gt3themes.com/demo/?theme=Oyster%20WP
a background photo with a block with a coloured background under my text…
I’ve played with enfold and tried to find a way around that, but it doesn’t seem to work.
Do you guys have a solution that I didn’t see ? ( as always it’s probably right in front of me but I’m too blind !! ^^ )
Thanks for your help !
-
This topic was modified 11 years, 7 months ago by
nnn666nnn.
Hi Peter,
Thank you very much for the speedy reply!
– I tried to update WordPress and failed, I get the following message:
“Downloading update from https://downloads.wordpress.org/release/wordpress-3.9.2-no-content.zip…
Unpacking the update…
Could not create directory.
Installation Failed”
– I tried to update all the plugins you mentioned and I got the following message:
“An error occurred while updating Akismet: Could not create directory.”
– There is no option under Theme section to update the Enfold theme, should I do that via the FTP?
– Should WPML also be updated through FTP? If not where do I update?
Thanks and regards,
Hi, I have made an earlier comment (but that topic is closed)
Comment number: #305862
I had a page wide Google Map on this page: http://gildesw.megaexposure.nl/contact/
Now it is gone while the element is still there in the backend. I removed the smaller map from the widget in the footer but no result.
I added some code i saw on this forum to the functions.php but no result.
I am using Enfold 2.9.1 combined with a child theme and WordPress: 3.9.2
All plugins are up to date. And so is the parrent theme.
Can you take a look please? Looking forward to your rpely.
Hey newpappa!
Please turn on Custom CSS field for ALB elements ( http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and then edit your image element and give it a unique class. Then add following code to Quick CSS and adjust as needed
.your-custom-class {
position: relative;
top: -80px;
}
Regards,
Yigit
Hi eurekastudios!
1) Please update Enfold to v2.9.2. You’re using Enfold 2.7.1 which is not fully compatible with WordPress 3.9.x.
2) Update WordPress to 3.9.2
3) Update the plugins (except WordPress SEO) to the latest version.
4) Update WPML to 3.1.7. You’re using version 3.1.5 at the moment.
Cheers!
Peter
Hey newpappa!
Please edit your Color Section element and give it a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png
and then add following code to Quick CSS in Enfold theme options under General Styling tab
input#inf_field_FirstName, input#inf_field_Email {
max-width: 24%!important;
float: left;
margin-right: 5px!important;
}
Since your input fields are placed in a small column, they will look small. You can add them inside a bigger column element and adjust the values as needed
Cheers!
Yigit
It’s so wonderful, so wonderful …
Danke, Adrian
Wenn ich mir das Template aus dem Plugin rauskopiere und bearbeite, wo muss ich das im Enfold Child ablegen? In einen speziellen Unterordner oder auf Ebene von functions.php?
Hi newpappa!
Please edit your Color Section element and give it a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png
and then add following code to Quick CSS in Enfold theme options under General Styling tab
#your-custom-id .content { padding-top: 0; padding-bottom: 0; }
Regards,
Yigit
Hey newpappa!
Please firstly update Enfold to the latest version 2.9.1 via FTP – http://vimeo.com/67209750
then you can make the changes using header configurator – http://kriesi.at/documentation/enfold/portfolio-item/intro-to-the-header-configurator/
Cheers!
Yigit
Hi!
You can add following code to Quick CSS in Enfold theme options under General Styling tab and decrease the padding between menu items
@media only screen and (max-width: 990px) {
.av-main-nav > li > a { padding: 0 5px; }}
Best regards,
Yigit