Hey ibgestionprivee,
This seems to be a duplicate of one of your other posts that has already been answered:
Unfortunately we don’t have a way that you can just import the menu, try reviewing our Maga Menu documentation, then choose your mega menu “pages” and then where you want the columns:

and drag the menu items in to stagger them.
Best regards,
Mike
Hey ibgestionprivee,
Thank for your question, but unfortunately we don’t have a way that you can just import the menu, try reviewing our Maga Menu documentation, then choose your mega menu “pages” and then where you want the columns:

and drag the menu items in to stagger them.
Best regards,
Mike
Hello,
I am trying to get the menu you implemented on the Enfold Classic Demo -> Tab Pages..
We have 4 Columns that appears : Examples Pages, Slider, Blank Pages and Special Pages.
I would like to import this menu and then modify it with my own pages.
But when I imported the Classic Demo, I got the pages, but my menu remains mine and not yours.
Could you help me with that ?
Thanks
Delphine
Hello,
I am trying to get the menu you implemented on the Enfold Classic Demo -> Tab Pages..
We have 4 Columns that appears : Examples Pages, Slider, Blank Pages and Special Pages.
I would like to import this menu and then modify it with my own pages.
But when I imported the Classic Demo, I got the pages, but my menu remains mine and not yours.
Could you help me with that ?
Thanks
Delphine
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,
When I check the image of the ship is 300px by 137px, or the medium size. When you choose the image please select a larger size in the display settings:

if you still have trouble please include a admin login in the Private Content area.
Best regards,
Mike
zweifelmediaGuest
Hello, I have bought a new enfold theme recently but I cannot post in the Support forum. It says I have no access cause the key is not valid anymore. But my purchase is fresh. Pls help.
Hey zweifelmedia,
For the arrow try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .avia-arrow {
display: none;
}
and try using the “no scaling” image size if you want them to be different sizes.
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,
Thanks for the screenshots, unfortunately as Ismael pointed out your plugin has stripped the HTML out and all of the text is in one paragraph tag:

so ther is no way to style only half of the text.
But when I look at your webshop all of the items have the same text “Scarf in knittet and feltet pure wool” so based on this text we can add the italic to the text.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function custom_script() { ?>
<script>
function wrapText(node, text, wrapper) {
if (node.nodeType === 3) {
const idx = node.nodeValue.indexOf(text);
if (idx !== -1) {
const span = wrapper.cloneNode();
const wordNode = node.splitText(idx);
wordNode.splitText(text.length);
span.appendChild(wordNode.cloneNode(true));
wordNode.parentNode.replaceChild(span, wordNode);
}
} else if (node.nodeType === 1) {
Array.from(node.childNodes).forEach(child => {
wrapText(child, text, wrapper);
});
}
}
const textToWrap = "Scarf in knittet and feltet pure wool";
const wrapperSpan = document.createElement('em');
document.addEventListener("DOMContentLoaded", function() {
wrapText(document.body, textToWrap, wrapperSpan);
});
</script>
<?php
}
add_action('wp_footer', 'custom_script', 99);
Then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .all_colors p em {
font-style: italic;
font-family: "open sans";
font-weight: 400;
}
then clear your browser cache and check.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
Mike
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Please try the following in Quick CSS under Enfold->General Styling:
.main_menu .avia-menu-text {
font-family: 'tommaso' !important
}
Best regards,
Rikard
Hey Mike,
I see, I guess that would be the Printful integration plugin then as I don’t see any other plugin that would be related.
Thanks!
By the way, below are my plugins, do I need the Envato Market plugin as I am able to update my Enfold on my other site without it?
https://www.dropbox.com/scl/fi/n15zadwaxz9fx2e2c7ssn/Screenshot-2023-11-25-at-9.06.43-AM.png?rlkey=u3ic2r3b8vejd3pf8290wt97y&dl=0
Hey gb,
I’m not seeing this notice, are you sure it is not from a woocommerce extension plugin?
It seems that you don’t need to do anything for woocommerce and Enfold to work correctly, but one of your third party plugins may have trouble so you will need to get an update from that plugin author.
To find out which plugin it is from, disable your plugins one at a time until the notice disappears, or click the notice “learn more”
Best regards,
Mike
gbParticipant
Is anyone else seeing this notice in their WordPress dashboard (link below):
What should Enfold users do if anything to prepare for this change?
All the best,
GB
https://www.dropbox.com/scl/fi/290y76ymolnh0satts0u1/Screenshot-2023-11-25-at-8.16.03-AM.png?rlkey=rpd1r7fihbaq10ikf9d5q1vxn&dl=0
This reply has been marked as private.
Hey mustafa-alani,
The image of the boat for the background of your cell is a “medium” size, which is too small, please choose a larger one so it won’t be “blurry”
Please check the theme setting Enfold Theme Options ▸ General Layout ▸ Dimensions ▸ Maximum Container width and ensure your max-width is 100% it looks like it is set to 1310px right now. Then check your pages that the color sections have no left & right padding.
Best regards,
Mike
Hi,
Please try going to Enfold Theme Options ▸ Blog Layout ▸ Share Links At The Bottom Of Your Blog Post and if the “Twitter” option is deactivated, try enabling it and saving the theme option and the deactivating it and saving again.
I’m not sure why this might be occuring on your site, but we don’t have another way to do this.
Best regards,
Mike
Hi,
I recommend reaching out to the original developer and ask them to convert your custom named theme into a official Enfold named theme so the updates will work.
Since there is a update available, this is a good time for them to do this.
the text string in your URL looks like a cache version, so it sould be from your cache plugin or your server cache, I’m not sure, but this was not there the last time I checked so I’m not sure what changes you have made. I don’t want to “tinker” with it while you are in the process of contacting the original developer. As I pointed out earlier your custom site has custom code that I don’t understand so my “tinkering” could do more harm that good.
Best regards,
Mike
This reply has been marked as private.
This reply has been marked as private.
I see now there is a changelog:
Current fixes for upcoming version 5.6.9 are as follows ( last update 2023-11-24 )
When I check enfold manually it says I have the most updated version:
Theme Updates
No Updates available. You are running the latest version! (5.6.8)
Check Manually
I received an email that there was an update to Enfold this a.m. However, your changelog shows the last change was on October 24th.
Please advise if there is an update and what is the latest version available. I have 5.6.8 as the latest. See your changelog too:
Thank you!
This reply has been marked as private.
Hey Diana,
Thank you for the link to your site and the screenshots, some of them didn’t work, so as I understand this text link on your homepage is not landing correctly for you:

it is meant to land on a empty color section:

when I test it lands correctly, the blue in this screenshot is your empty color section:

I tested with Windows in Chrome & Edge and Mac in Safari & Chrome, and all worked correctly, only Firefox on both Windows & Mac didn’t work correctly, I’m not sure why firefox is having an issue, but to try to adjust for the firefox error I added this code to your functions.php:
function custom_smooth_scroll_to_id_for_firefox_script() { ?>
<script>
function slowScrollToAnchor() {
var urlHash = window.location.hash;
if (urlHash) {
var target = document.querySelector(urlHash);
if (target) {
var targetPosition = target.offsetTop;
var startPosition = window.pageYOffset;
var distance = targetPosition - startPosition;
var duration = 1000;
var startTime = null;
function scrollAnimation(currentTime) {
if (startTime === null) startTime = currentTime;
var timeElapsed = currentTime - startTime;
var scrollY = easeInOutQuad(timeElapsed, startPosition, distance, duration);
window.scrollTo(0, scrollY);
if (timeElapsed < duration) {
requestAnimationFrame(scrollAnimation);
}
}
function easeInOutQuad(t, b, c, d) {
t /= d / 2;
if (t < 1) return c / 2 * t * t + b;
t--;
return -c / 2 * (t * (t - 2) - 1) + b;
}
requestAnimationFrame(scrollAnimation);
}
}
}
window.addEventListener('load', slowScrollToAnchor);
</script>
<?php
}
add_action('wp_footer', 'custom_smooth_scroll_to_id_for_firefox_script', 99);
and after clearing your site cacke and my browser caches for all of my test browsers the anchor link is now correct, even in Firefox. Most of my tests landed correctly even on firefox, but in one case on firefox the script scrolled the page backwards to land in the land place. So the script shows to correct the issue.
If you want to adjust the one second delay you can change var duration = 1000; to a higher or lower number 1000 equals one second, it seem to work good just the way it is.
BTW – your Header Footer Code Manager plugin don’t seem to allow PHP snippets, so if you are not going to use a child theme I recommend the WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets.
Best regards,
Mike
Hey ConDevWa,
Please try the rotate animation in the element options:

If this is not the kind of rotate animation that you are looking for, then please create a test page on your site and explain what you are trying to do with an admin login in the Private Content area so we can examine.
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,
I would like to rotate an image with the parallax rules (https://kriesi.at/themes/enfold-parallax/) instead of moving it from left to right or similar when scrolling. Is this possible and can you help me?
Best regards
Hi,
Thank you for the update.
The screenshot above is not accessible. Please try to use Savvyify, Imgur or Dropbox to upload and share the screenshot.
Did you add this css code somewhere?
.container {
max-width: 1010px;
}
Please try to override it with this css code.
/*
Desktop Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
@media only screen and (min-width: 989px) {
/* Add your Desktop Styles here */
#footer .container {
max-width: 1360px;
}
}
Or try to adjust the Maximum Container Width value in the Enfold > General Layout > Dimensions tab.
Best regards,
Ismael
Hey FW,
Thank you for the inquiry.
Have you tried using the avf_load_google_recaptcha_api_prohibited filter as described in the previous thread? Please check the link below.
// https://github.com/KriesiMedia/enfold-library/blob/a2a93f0004d530dedaa1576ae63a3f2915ac407d/actions%20and%20filters/External%20Services/avf_load_google_recaptcha_api_prohibited.php
Best regards,
Ismael