Hi Enfold Support Team,
I’m having an issue with YouTube videos in the Easy Slider (Video Slide).
My client wants a YouTube video to start at a specific time. In the video URL field I enter for example: [in Private Content]
Unfortunately, the start time is not respected – the video always starts at 0 seconds. I have tried both &t=8s and &start=8, and also the plain watch URL with ?start=8, but none of these work in the Easy Slider. According to your video documentation and several support threads, controlling YouTube via URL parameters should basically be possible.
Could you please let me know
– which exact URL syntax should be used in the “Video URL” field to achieve this, or
– if there is a recommended workaround (e.g. shortcode, custom embed code, etc.)?
Thank you very much in advance for your help.
Best regards,
Emil
-
This topic was modified 1 month, 1 week ago by
emilconsor.
Hi,
You need to save the page while the Enfold layout builder is active. I’ve done that for you and the German start page looks like your French one after that.
Best regards,
Rikard
Hi,
Great, I’m glad that we could help. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
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
Hey Fred1969,
Did you check the header documentation? https://kriesi.at/documentation/enfold/header/#sticky-header-on-mobile
Best regards,
Rikard
Hey Christian,
You can submit feature requests here: https://github.com/KriesiMedia/Enfold-Feature-Requests/issues
Best regards,
Rikard
Hi,
You can set the footer under Enfold->Footer.
I’m not sure which border you are referring to. Did you check your settings in both languages?
Best regards,
Rikard
DearSirs,
My Facebook header has now disappeared see the facebook widget on the right hand side of the page https://respectaclecompany.co.uk/journal/.
Can you help. Iam on the latest version of Enfold 7.1.3
Hey A,
Upon further investigation, I found that you forgot to enable the Additional Translate Icon option in Enfold theme options > Custom Elements > WPML Specific Options ( see https://imgur.com/a/U7MYDJ0 ). I also missed checking this option at first.
I enabled this option and tried translating the Custom Element, and it worked as expected. I shared a screen recording in the private content field.
Please let us know if you have any other questions.
Regards,
Yigit
Hi,
Please try the following in Quick CSS under Enfold->General Styling:
.home .main_menu {
display: none;
}
Best regards,
Rikard
Thanks Ismael, but I don’t have the 1st CSS code in my style.css file… what do you mean when you say “This sets the header height to 90px on tablet view”? You mean “…in the standard CSS of the Enfold theme”?
My request is to have the same height of the header (50px) to all screen sizes, and always transparent on top (if possible)…
Anyhow: CSS #2 of your email is fixing between 768px and 989 onlypx, but it is not transparent.
At < 768px no changes, of course.
If I remove the “min-width: 768px” of your CSS, the header size is still 80x, and in addition to that, the Burger menu is not centered anymore: see here
Hey collinsfgc2025,
Thank you for the inquiry.
You may need to deselect the pages in Enfold > Theme Options > Custom Error 404 Page and Maintenance Mode settings. Try to re-enable the options temporarily, then deselect the currently selected page in the dropdown or set it to
“Select Page”. Please refer to the screenshot below.

Best regards,
Ismael
My guess is that WP Rocket is interfering again. I can’t see the font (or the arrows) with your code either, Ismael.
try to insert mine for testing.
the section is set to alternate_color and this is in your system set to :
.alternate_color { color: var(–enfold-alternate-color-color) }
and this is on your setting #000
so this :
#top .av_inherit_color * {
color: inherit;
}
will cause the font to be color: #000
Hello,
I finished setup Enfold theme on my website in English. Now I want to install Arabic language which is RTL. I installed WPML but it didn’t work saying it needs woocommerce. My website is not an ecommerce website so what should I do to have Arabic.
Thank you
Hi,
I’m trying to do the same thing, but when I add the new code, there are no longer icons before the email adddress and the phone number, which I would like. Here’s the code I added, using your suggestions above:
Enfold Theme Options > Header > Extra Elements > Phone Number Or Small Info Text:
(Email address hidden if logged out) “> (Email address hidden if logged out)
941-462-9082
Custom CSS:
/* Phone info */
.phone-info-top {
display:inline-block!important;
padding:4px 10px;
}
I would like the icons before the email (ue805) and phone (ue854) – and I would like them to be a different color than the text, like this site: https://www.coastlinetree.com/
How can I accomplish this?
Thank you so much!
Hi,
Great, I’m glad that Ismael could help you out. 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
Dear Ismael,
thank you very much, yes, these js has been disabled.
I do not use countdown now (I used before), but it is still there.
/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.min.css?ver=7.1.3
I also do not use tabs.
/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.min.css?ver=7.1.3
/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.min.css?ver=7.1.3
Could you give me the commands to disable these css?
I will experiment with them and see how it works.
Sincerely yours,
Igor
Hey Daniel,
Great! Thanks for the update.
The translation for these strings was missing in Enfold. We’ll add it in the upcoming version.
Please let us know if you have any further questions.
Regards,
Yigit
Hey Ana Birliga,
Did you register your theme license? https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Ana BirligaGuest
Hello,
We want to update the Enfold theme from version 6.0.2 to version 7.1.3, and we would like to know the best way to proceed. There is a message that Automatic updates are not available for this theme.
PS : If these products are assigned to a category that has the members-only function, then the code will of course also work with category exclusion.
just see the comments on the snippets with product_tag versus product_cat
for ajax search it might be neccessary to have:
// ENFOLD AJAX-SEARCH: exclude members-only slug
add_filter('avf_ajax_search_query', 'exclude_member_products_from_enfold_ajax', 10, 1);
function exclude_member_products_from_enfold_ajax($search_parameters) {
// Only for users who are not logged in
if (!is_user_logged_in()) {
// Parse parameters
parse_str($search_parameters, $params);
// Add Tax Query
$params['tax_query'] = array(
array(
'taxonomy' => 'product_tag', // or 'product_cat'
'field' => 'slug',
'terms' => array('members-only', 'premium'),
'operator' => 'NOT IN'
)
);
// Convert back to string
$search_parameters = http_build_query($params);
}
return $search_parameters;
}
Unfortunately, I can’t test it myself, as I’m not currently managing any shop websites.
Seems like a pretty big item, since most websites need a working contact form. Am I the only one that has issues with the submissions? I have around 20 Enfold theme websites and its the main thing that stops me from using the theme more. I really don’t want to do Divi for all my future sites and trying to find solutions here. At least if I could capture the submission, we wouldn’t miss anything if the emails didn’t sent. Or I guess I have to use Contact Form or Elfsight ever time? Thanks
Alex K.Guest
Hi,
are there coming new demos? the existing demos are so old and nothing new came out for years. so i have to ask is the theme still in progress/development for new upcoming versions like 8.0 etc. ? or will you stop to develop the theme in the future? i bought 96 licenses and it would be great if the advanced layoutbuilder would be as flexible as the elementor or others. i would highly appreciate it if we have the great enfold theme still in 3, 5 or more years.
thank you for feedback.
Alex
Hi,
Great, I’m glad to hear that you found a solution. 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 Yigit,
thank you very much for your response!
I would still like to explain why I think using a translation platform like Crowdin could be beneficial for Enfold in the long run, even if there are currently only a few active contributors for translations.
From my experience, the main reason why there are so few contributors is the barrier to entry:
Creating an account in your support forum or learning how to contribute via GitHub is something that most users simply won’t do. Especially if they only want to fix a few strings.
Platforms like Crowdin lower this barrier:
– users can log in with Google or easily create an account with email address + password
– no technical knowledge is required (like git)
– contributing a single small fix becomes extremely quick
– many people contribute occasionally without ever becoming regular / active translators
I work for Aternos and we use Crowdin for all translations (see https://crowdin.com/project/aternos). Although we don’t have many dedicated translators, we receive regular contributions from many users who translate only a few strings. These small improvements add up and have helped us provide our website in 20+ languages.
A major benefit of Crowdin is also the built-in quality control: Translations can be upvoted or reviewed/approved before they are included. This keeps the quality high without adding a lot of manual work.
I believe Enfold could benefit from the same advantages, and it would make it much easier for the community to help you maintain high-quality translations.
I would still kindly ask you to reconsider using a translation platform, because I think it could significantly improve both the quality and the amount of translation contributions in the future.
Best,
Paul
-
This reply was modified 1 month, 2 weeks ago by
pvogel.
Hi,
Thanks for letting us know. 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
Hey Munford,
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 Daniel,
I translated the “Category” and “Categories” strings in Enfold using the Loco Translate plugin, but I cannot reproduce the issue on my end.
Could you please send us a link to your site and temporary admin login credentials so we can investigate the issue?
Best regards,
Yigit
Hey,
Thank you for your feedback and for your contribution. We will review and merge it soon.
Everyone has to find the translations first, download them, upload them to their website, etc. Wouldn’t it be easier to just provide good translations as standard that ship with the theme…?
When translations are contributed through our support forum or GitHub, we merge them and make them available in the upcoming version.
Since there are only handful of active translation contributors (Italian, Dutch, French, Croatian), we prefer not to use translation tools and send the language files to the contributors in advance. Most updated translations make to the current version.
Please let us know if you’d like to receive the language files in advance and we’ll send them to you as well.
Best regards,
Yigit
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