Hey Guenter,
Thank you for the inquiry.
We are not seeing any difference with the lightbox in the 2017 and the parallax demo. Would you mind providing a screenshot?
We checked the lightbox in the following demo pages.
// https://kriesi.at/themes/enfold-parallax/#portfolio
// https://kriesi.at/themes/enfold-2017/portfolio-item/imac-revolution/
Are you trying to disable scrolling when lightbox is opened? There seems to be no dedicated option for it based on the documentation.
// https://dimsemenov.com/plugins/magnific-popup/documentation.html
Best regards,
Ismael
Hi,
Where can we check the issue? Please open a new thread and provide a link to the site so that we can test the issue properly. Make sure to update the theme to version 5.0.1 and toggle or temporarily disable the Enfold > Performance > File Compression settings.
Best regards,
Ismael
Yes – please give me a bit time to think about. What i have allready done is to combine animate.css : Link with the transition between the images. see here the galleries in the tabs: next Link
But i guess it will be hard to differ between in- and out-transition.
Edit: Well – this is not perfect – and the question remains whether it is worth the effort.
You have to write your own MagnificPopup script for it, and still drive css adjustments here and there. : https://enfold.webers-webdesign.de/#portfolio
I do not see where the fault is with closing the lightbox in a nice way.
Hi
I have the same issue on two of my websites where the same issue is happening after I updated the Enfold theme.
Here’s a link on a page where I have testimonials (right below the FAQs): https://silviafindings.com/faqs
Looking for a solution I can apply on my websites.
Thanks
Lyse
Hi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi
Today I updated to Enfold 5.0.1
Since update, I’ve noticed that a circular image I had to top right of contact section is not showing
I see it in the backend, but does not show on front end
Hi,
If you want to set general font sizes for headings, then you can do so under Enfold->General Styling->Typography. If you are referring to the captions in the Full Width Easy slider on your front page, then you can set font sizes for each screen size if you click in to each slide, then change the font sizes in the Styling->Font Sizes tab.
Best regards,
Rikard
Here is the original thread: https://kriesi.at/support/topic/enfold-css-js-merging-function-not-working-on-most-recent-update/#post-1354358
I can’t show you the problem because we can’t identify the problem, which is what this thread is about. We’re just getting an error.
I am using the latest version of Enfold (5.0.1) which I re-downloaded, just in case it was corrupted. I am also using WordPress version 6.0. Testimonials that have worked for YEARS are no longer fading and moving; the theme appears to have reverted to some “default” behavior (despite current auto settings.) Giant arrows were added to the testimonials (not my doing) and now the testimonials slide sideways (rather than fading). This problem is visible on every page where testimonials show. Please advise. Thanks.
Hallo there,
i can not update my Theme Enfold any more (it worked for a long time!!). Enfold always says:
No Updates available. You are running the latest version! (4.9.2.2)
But: there is an update available…
Any ideas how to fix this? Thanks a lot, Sven
Hey cristinagrafik,
Could you try updating the theme to the latest version (5.0.1) to see if that helps please? https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update.
Best regards,
Rikard
Hey Shari,
Please try the following in Quick CSS under Enfold->General Styling:
#top .avia-slideshow-arrows.avia-slideshow-controls a:before {
left: -4px;
}
Best regards,
Rikard
What has changed in Enfold 5?
on previous versions of Enfold I think it was that when the lightbox was open it was fixed, and only the body could still scroll.
This is not the best behavior, a fixed body with the lightbox open would be best.
But now we have scrolling for the lightbox container as well? Is there a reason for this?
Open an image and scroll with your mouse:
https://kriesi.at/themes/enfold-parallax/#portfolio
PS:
Looking at the old Enfold demos, I guess my assertion is not true. But wouldn’t that be a desirable behavior of the lightbox?
yes i can put this to child-theme functions.php to have that:
function custom_lightbox_script(){
?>
<script type="text/javascript">
(function($) {
function a() {
$('body').on('click', '.lightbox-added', function() {
if($('.mfp-bg').length >= 1) {
$('html').css("overflow-y", "hidden");
}
});
$('body').on('click', function() {
setTimeout( function() {
if($('.mfp-bg').length == 0) {
$('html').css("overflow-y", "scroll");
}
},500);
});
}
a();
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'custom_lightbox_script');
but i think some settings on the lightbox options will be more performant
fixedBgPos true/false
overflowY auto / scroll / hidden
see: https://enfold.webers-webdesign.de/#portfolio
main part is – i think for you to slow down the transition between – maybe you try first only:
.mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
opacity: 0; /*** here you can influence the transition opacity - test with 1 to see the difference ***/
-webkit-transition: all 2s ease-out;
transition: all 2s ease-out;
-webkit-transform: scale(0.75);
-ms-transform: scale(0.75);
transform: scale(0.75);
}
___________________________________
– on my page i had :
.mfp-ready .mfp-figure {
opacity: 0;
}
.mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
opacity: 0; /*** here you can influence the transition opacity - test with 1 to see the difference ***/
-webkit-transition: all 2s ease-out;
transition: all 2s ease-out;
-webkit-transform: scale(0.75);
-ms-transform: scale(0.75);
transform: scale(0.75);
}
.mfp-zoom-in.mfp-bg,
.mfp-zoom-in .mfp-preloader {
opacity: 0;
-webkit-transition: all 2s ease-out;
transition: all 2s ease-out;
}
.mfp-zoom-in.mfp-image-loaded .mfp-figure, .mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler{
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg,
.mfp-zoom-in.mfp-ready .mfp-preloader {
opacity: 0.85;
}
.mfp-zoom-in.mfp-removing .mfp-figure, .mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
-webkit-transform: scale(0.75);
-ms-transform: scale(0.75);
transform: scale(0.75);
opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg,
.mfp-zoom-in.mfp-removing .mfp-preloader {
opacity: 0;
}
.mfp-iframe-scaler{ overflow: visible; /*so the close button is shown*/}
.mfp-zoom-out-cur { cursor: auto; }
.mfp-zoom-out-cur .mfp-image-holder .mfp-close { cursor: pointer; }
the scale-factor is up to you – maybe a scale-factor nearby the 1 looks better
Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
We had an issue with JS/CSS merge/compression function and you told us that a specific 3rd party file is causing that to fail. We removed that file from the equation but it’s still not working and we are still seeing the same error message in the database as before. Can you please help us figure out which file is causing it to fail this time? Is there a way we can manually see/debug it without needing to ask you to find it since this seems to be a recurring problem for us? If that’s not possible, please send us the current file which is causing the merge/compression to fail. I really appreciate your help on this!
Hi,
Thanks for the link to your site, I’m seeing this error: Uncaught TypeError: $ is not a function

typically this occurs when a script is loaded before the jQuery is loaded, please check that WP rocket is not forcing jQuery in the footer, and check that the option at Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is not enabled.
There could be a conflict if the WP rocket plugin and Enfold are trying to do the same thing.
If this doesn’t help try disabling the WP rocket plugin lazy load option and clear your cache and check again.
If this doesn’t help please include an admin login in the Private Content area so we can check.
Best regards,
Mike
We had an issue with the Enfold’s built-in JS/CSS merge/compression function and you told us that a specific 3rd party file is causing that to fail. We removed that file from the equation but it’s still not working and we are still seeing the same error message in the database as before. Can you please help us figure out which file is causing it to fail this time? Is there a way we can manually see/debug it without needing to ask you to find it since this seems to be a recurring problem for us? If that’s not possible, please send us the current file which is causing the merge/compression to fail. I really appreciate your help on this!
Hi,
Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad that Ismael could help, you can add the edited /portfolio/portfolio.php to your child theme so future updates won’t overwrite this customization, please see our documentation here.
Best regards,
Mike
Hallo,
seit dem letzten Update von WordPress und Enfold erhalte ich folgende Fehlermeldung:
Notice: Undefined index: nav_visibility_desktop in /home/www/wordpressWIM19/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/traits/trait-sc-slideshow-ui-controls.php on line 59
Wie kann ich diesen Fehler beheben?
Link zur Website bei den privaten Inhalten.
Vielen Dank und herzliche Grüße
Vera
I have implemented the “Dots Menu” based on the following documentation: https://kriesi.at/documentation/enfold/menu/#dots-menu
My question is: how do I get the Menu-Titles to display on the Dots Menu? For example, the first Dot would say “Item One” directly to the right of the dot in the first position of the menu.
I have been experimenting with changing visibility settings as per the CSS that comes along with the documentation, but have so far had no luck.
Any feedback you could provide would be greatly appreciated.
Thanks in advance!
Hey Ida,
Thanks for reaching out to us. To say that Enfold is slow simply because it’s a premium or multi purpose theme is simply not true, load speed depends on your content and server configuration, more than anything else. We’re always trying to improve the theme, and load speed is included in that.
Best regards,
Rikard