I have joined a company that has several websites, made by different companies. On one of the websites use enfold version 3.1.5. We have purchased the latest version from themeforest and we cannot update the existing one on the web.
More information to help me.
WP version 6.2.6
PHP 5.6
When I install enfold via FTP the page experiences an error and cannot be loaded.
I don’t know how to proceed.
Hi Thank you for your response.
i implemented it that way:
/**
* Barrierfree Menu Close with ESC Key
* - enhance Enfold menu keyboard usabillity
* @see https://kriesi.at/support/topic/menu-focus-trap-accessibility-keyboard-usage-improvement
*/
enfold_menu_close_by_key = function(){
var options = {
key_code: 27, // ESC
classNames:{
active: 'is-active',
container_active: 'av-burger-overlay-active',
container_active_delayed: 'av-burger-overlay-active-delayed',
},
selectors: {
trigger: '.av-hamburger',
container: 'html',
overlay: '.av-burger-overlay',
}
},
trigger = document.querySelector(options.selectors.trigger),
container,
overlay,
menu_close = function(){
var classNames = options.classNames;
if ( trigger.classList.contains(classNames.active) ) {
trigger.classList.remove(classNames.active);
container.classList.remove(classNames.container_active);
container.classList.remove(classNames.container_active_delayed);
overlay.style.display = 'none';
overlay.style.opacity = 0;
}
};
if ( trigger instanceof HTMLElement ) { // if an overlay is used
document.addEventListener('keydown', function(event){
if ( event.keyCode === options.key_code ) {
// get elements only once
if ( typeof container === 'undefined' ) {
container = document.querySelector(options.selectors.container);
}
if ( typeof overlay === 'undefined' ) {
overlay = document.querySelector(options.selectors.overlay);
}
// close the menu
menu_close();
}
});
}
},
enfold_menu_close_by_key();
While it works fine i seem to need some text-hint near the close button.
Anyway i hoped you will consider it for an update, so i will work on my own solution.
-
This reply was modified 1 year, 5 months ago by
tom.
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 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
I have purchased the enfold theme on themeforest.net When I go to install the theme on wp it won’t let me because it has detected malware in the file. I have run the file through different antivirus programs and indeed the file contains Trojan.PHP.Shell.JS
I need a solution on how to proceed
Hi,
Thank you for the screenshots.
We can reproduce the issue, and it occurs because the width of the mega menu is only calculated on hover. For some reason, the site doesn’t refresh when you click on the links or menu items, so the mega menu remains visible when the site redirects to a different page. Have you tried enabling the Enfold > Theme Options > Page Preloading option?
Best regards,
Ismael
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,
To disable it, open js/avia.js go to line 90 and comment it like this:
// new $.AviaAjaxSearch({scope:'#header, .avia_search_element'});
then disable both Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files Then clear your browser cache and any cache plugin a few times, and check.
Please remember that clearing javascript files can take a few tries. I tested this and it works to remove the ajax function:

Best regards,
Mike
Hi,
To change the widget titles, please see this thread.
For us to find the over-riding Footer font color we will need to see your site, so once it is online please open a new thread, as this is not your thread posting your admin login here will not be private and you will not see our comments in the Private Content area.
Thank you for your patience and understanding and for using Enfold.
Best regards,
Mike
The Siteground Optimiser Plugin is still disabled, yet the slider issue continues, and now it’s also affecting the ads.
At least the photos on the K’gari blog can be seen now, or they could be the last time I looked.
I’ve no idea which widget you’re referring to in your last message.
Please don’t put this issue in the too-hard basket. I’m not a tech guru and I’ve already been through this with Siteground, who advised me to contact Enfold.
Best regards,
Jocelyn
I’m using the plugin WP Table Builder. I placed the shortcode to a table in the footer widget but I’m getting this weird notifcation about “looks like you are offline, please reconnect to the internet”. any idea how to fix this? I’m using this plugin on other enfold sites and never have this notifcation till now…

PS… I’ve had no issues with the ads. What you’ve shown there is the first I’ve seen of that. However, when the slider issue started, I also had a similar issue with the photos on the first blog that’s on my site about K’gari. The photos were loaded correctly, but couldn’t be seen on any device screens. Did you get the email sent from Siteground that I re-sent via Private an hour or so ago. That shows Siteground registered an Enfold error. As I said, I’ll continue this in the morning.
Thank you for your assistance, Mike. I’d like to mention though, that I took the slider off, as mentioned in my previous emails, because it wasn’t working. I’ve had a full-width easy slider on the home page of my site for some years with no issues, but recently, possibly two or three weeks ago now, it disappeared. By that I mean the slider was still where it had been all along within Enfold, but on the page it showed as a big white space. Because it’s taken so long to get this issue sorted out, I couldn’t leave it like that for my readers. It just wasn’t user friendly, so I took it off until this was sorted. I tried again about half an hour ago, and the slider still showed as a big white black space.
That said, it’s late here now so I’ll go through the other things you’ve written about in the morning.
Best regards,
Jocelyn
I’d like to add some more playfullness to columns by applying a mask / cut-out,
for example, I’ve build:


how would I apply a mask to that column to give a custom shape to it. (don’t have the shape ready yet, am trying to understand how to achieve this with enfold)

also, how would I add a shape behind it?

first – there is an enfold option to use some predefined forms on image element : Advanced Tab – Mask Overlay:

if you look what enfold does in your DOM :

so there is a mask-image definition and a svg file is used on that.
you see the path of those predefined svg files – so it might be possible to have custom mask-images too. Maybe there is a way via filter (f.e. avf_mask_overlay_images) to define custom images – similar to custom dividers.
I check that – or maybe a mod/dev can tell us how to have custom mask-images.
on many sites I see that images are being cut-out by a custom shape (a mask I belief), such as:

how do i achieve this with Enfold?
also, how would I achieve a similar content block like this in Enfold? (background color, title, 2 colums left with title and text… column right with image? I tried several times but honestly I have no idea)
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
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
I should note, something is over-riding the Footer font color settings under he Footer tab in the Enfold settings.
I have a similar question: where in the Enfold “stylings” can you change the footer widget “Title” colors in the footer?? Mine are a light blue and It does not match any of the changes I have made anywhere to my knowledge. Sorry My site is not live yet.
Hi,
Please add [nolink] to the copyright field, see our documentation here.
Best regards,
Mike
GREAT ! Thank you for your help !
I would like to delete the text in the footer “powered by Enfold…” . It’s not possible in Enfold options theme, where can I access to this setting ?
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 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
Hey biggsuccess,
I can’t see any image attached to your message, but you can select to show a bar above the header under Enfold->Header->Extra Elements.
Best regards,
Rikard
Hey Mike,
Could you try updating the theme to the latest version (6.0.3) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.
Best regards,
Rikard
Hi,
Thanks for letting us know. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard