Hey tonyiatridis,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
.html_header_sidebar #header .av-main-nav > li > a .avia-menu-subtext {
font-size: 16px;
}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
adjust the font size to suit and clear your browser cache
Best regards,
Mike
Hi,
The Feature A section is #ffffff set here:

the line is #e1e1e1 from enfold-alternate-color-border and is automatic if the color sections don’t have a manually added color:

ignore the other colors in the screenshot as it is not the same demo.
Best regards,
Mike
Hey Alexandra,
Thanks for reaching out to us. A child theme can be downloaded here: https://kriesi.at/documentation/enfold/child-theme/
The problem with spaces not working is usually caused by plugin conflicts, what happens if you deactivate all plugins? If you should need further help with this, then please include admin WordPress login details in private.
What exactly are you doing when trying to register? You should first of all add your purchase code here: https://kriesi.at/support/register/. If you only want a new password, then please let us know which email you used when registering and we’ll reset it manually for you.
If you want a refund then please reach out to Envato/Themeforest, as they handle all sales related matters.
You can add this text to a translation service like Google Translate in order to translate this message.
Best regards,
Rikard
It wouldn’t be such a problem if the Learn More button didn’t link to my other website’s privacy policy.
I cannot find where to turn this off (I looked in Enfold Child > Cookies and Privacy and everything is off. I cannot find where to change the what the Learn More button points either. In Settings, I define the privacy page as the page on this site (see private box).
Hi,
This is an example with using text elements to hold the text for each popup and the script in a code block element that automatically numbers each box and link so you can add as many popup boxes as you wish. The boxes and links are number from the top down so the first link on the page will open the first box on the page.
For this example this is how the backend looks:

you can add the text elements anywhere on your page, top or bottom it doesn’t matter because they will not show on the frontend.
Each text element will have the custom classes: multi-popup mfp-hide

notice that the classes have no dots and the space between them.
Then in your code block element add this code:
<script>
window.addEventListener('DOMContentLoaded', function() {
(function($) {
function assignUniqueIDs() {
$('.multi-popup').each(function(index) {
var uniqueID = 'multi-popup-' + (index + 1);
$(this).attr('id', uniqueID);
});
$('.multi-popup-link').each(function(index) {
var uniqueID = 'multi-popup-' + (index + 1);
$(this).attr('href', '#' + uniqueID);
});
}
assignUniqueIDs();
$('.multi-popup-link').magnificPopup({
type: 'inline',
midClick: true
});
})(jQuery);
});
</script>
<style>
.multi-popup {
position: relative;
background: #FFF;
padding: 20px;
width: auto;
max-width: 500px;
margin: 20px auto;
}
</style>
<a class="multi-popup-link" href="#">Link to box one</a></br>
<a class="multi-popup-link" href="#">Link to box two</a></br>
<a class="multi-popup-link" href="#">Link to box three</a></br>
<a class="multi-popup-link" href="#">Link to box four</a></br>
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
notice the four links at the bottom, you can add these in a different element if you wish, this is to show you the custom class that the links must have.

then on the frontend when you click a link the popup box will show:

Best regards,
Mike
Alexandra KittlGuest
Hallo an das Enfold-Theme,
ich bin ziemlich frustriert.
Ich habe gestern das Enfold-Theme bei Themeforest gekauft.
Zunächst hatte ich die allergrößten Probleme damit ein Child-Theme anzulegen.
Was mir dann letztendlich mit einem Plugin dann doch gelungen ist.
Ich habe unter anderem auch deshalb Enfold gewählt, da der Support usw. auch in Deutsch möglich ist, so wie ich es gelesen hatte. Was mir sehr wichtig ist.
Mein Englisch ist zu schlecht um diese technischen Dinge zu verstehen, die für mich als nicht Nicht-Profi in Deutsch teilweise schon schwierig genug sind.
Nun versuche ich Texte in das Theme rein zu kriegen.
Bei den Überschriften nimmt Enfold KEINE Leerzeichen…. Was ziemlich nervig ist, da ich keine Satz vernünftig schreiben kann, und die Leerzeichen nach jedem Wort extra rein kopieren muss….
Das möchte ich so nicht.
Nun habe ich auch versucht mich im Support-Forum anzumelden.
Auch das funktioniert leider nicht…. Ich habe jetzt bereits ca. 10 mal diverse Passwörter angefordert, um in das Support-Forum reinzukommen. Es geht einfach nicht.
Bitte gebt mir Bescheid, ob man das irgendwie schnell alles richten kann, oder ob ich mein Geld zurück bekommen kann, weil ich dann wohl lieber doch ein anderes Theme kaufen werde. Und was ich hier machen muss.
Das hält mich jetzt schon zu Beginn zu sehr auf und meine Motivation mit Enfold weiter zu machen, ist ziemlich gesunken, weil es schon am Beginn nicht klappt.
Schade, dass das so ist. Ich habe schon eine andere Webseite mit Enfold erstellt, vor Jahren. Insgesamt hab ich schon 3 Mal das Theme gekauft…
Ich bedanke mich schon mal im Voraus
Viele Grüße von
Alexandra
Hi,
Glad to hear that this helped you sort it 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
I had the same problem and i can verify that after applying the instruction that you have provided above, I successfully imported the Agency – Enfold Parallex Demo. Just for your information I am using the XAMPP server.
Hey epkdesign,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2);
function enfold_customization_postnav($entries, $settings)
{
if($settings['type'] == 'portfolio')
{
$settings['same_category'] = true;
$entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
$entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
}
return $entries;
}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
Mike
Hey tammiviestinta,
Thanks for the link to your page, I’m not able to add a single GDPR checkbox to my mailchimp form, instead I see this:

I also don’t have a paid account so I can not create two lists to choose from in the newsletter element to determine the error. I assume that when you test the checkboxes in both languages that they work correctly and the only issue is the language of the text.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, it will change the text for your Swedish page:
function replace_the_checkbox_label_in_a_mailchimp_form_to_a_different_language() { ?>
<script>
(function($){
$('html[lang="sv-SE"] #element_avia_av_privacy_agreement_1 label').text("Jag samtycker till att min information kommer att läggas till i Starck Coaching Oys marknadsföringsregister Reset Your Beliefs i enlighet med registerutlåtandet och jag kommer att få ett nyhetsbrev i framtiden. Jag kan avregistrera mig från nyhetsbrevet när som helst.");
})(jQuery);
</script>
<?php
}
add_action( 'wp_footer', 'replace_the_checkbox_label_in_a_mailchimp_form_to_a_different_language', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
Mike
Hey ThiloKiefer,
This looks like the same issue as this feature request, in which the Dev Team writes yesterday: A solution will be added to Enfold 6.0 We don’t have a ETA for when Enfold 6.0 will be available, but thank you for your patience while this is added along with other improvements.
Best regards,
Mike
Hi,
When I check the two pages that you linked to I see two opening and closing header tags:

one set is around the theme header, and the othr set is around the woocommerce page template title, since both are closed this should not cause any issues.
But if you want to change the woocommerce header tag to a div, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function change_woo_header_tag_to_div() { ?>
<script>
(function($) {
$(function() {
function replaceElementTag(targetSelector, newTagString) {
$(targetSelector).each(function(){
var newElem = $(newTagString, {html: $(this).html()});
$.each(this.attributes, function() {
newElem.attr(this.name, this.value);
});
$(this).replaceWith(newElem);
});
}
replaceElementTag('header.woocommerce-products-header', '<div></div>');
});
}(jQuery));
</script>
<?php
}
add_action( 'wp_footer', 'change_woo_header_tag_to_div', 99 );
Best regards,
Mike
Hi,
To me your example page the popup:

is the same as our lightbox popup examples, I think this solution would be the best one to follow, it uses buttons but with a minor adjustment it could use plan text links, you can see that the popup has the “X” to close, in the screenshot there is only two words, but you can add as much text as you like:

In your example page there are five links and popups:

Are you going to use this in the same way? If so how many popups do you want to use?
Best regards,
Mike
Christoph GniadekGuest
Ich verwende Enfold und CF7 mit recaptcha.
Gibt es möglicherweise ein Problem, das recpatcha mit Wert 0,0 bewertet?
Recaptcha ist soweit okay denke ich, der Entwickler von CF7 sieht auch kein Problem.
Können Sie weiterhelfen?
Hi,
Currently your background-color is #888, but the demo page FEATURE B is #fcfcfc

you can change the color directly in the color section:

or in the theme settings:

but note that any color that you add to the element will overide the theme setting color.
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,
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 see link to landing page in the private section below.
Have you tried adjusting the Alternate Content Background Color value in the Enfold > General Styling > Alternate Content tab?
I am not sure what you mean by this? Thanks
Hi,
Thanks for the update, we’ll go ahead and close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
You can upload the most current theme files like you would if it was new, or you can follow this: https://kriesi.at/documentation/enfold/theme-update/
Best regards,
Rikard
Hi,
Please try the following in Quick CSS under Enfold->General Styling:
#top .avia-button:hover .avia_button_background {
opacity: 0;
}
Best regards,
Rikard
Hey -wol-,
Thanks for the login details. 13px is the default theme setting, did you try to activate and change the Default Content Font Size option under Enfold->General Styling->Typography to see if that helps?
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
Hey reqonsult,
Please try the following in Quick CSS under Enfold->General Styling:
.avia_ajax_form input.input_checkbox_label {
color: #fff;
}
Best regards,
Rikard
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
Hello, we would like to change the color of the text below the contact form from blue to white. The text is the privacy policy next to the check box (Screenshot 1). This text was inserted and activated under Enfold > Privacy and cookies > Privacy policy (Screenshot 2). Is this possible? Thank you for your support.
Dear Rikard
yes do whar needed. We had tested latest enfold version on another staging site – same issue. Also done a update of YOAST tried to fix it. Same behaviour. Have done the enfold update.
Best Regards Marc
Good eye! Thank you. Everything is beautiful now So appreciative for Enfold support!
Close ticket.
Hi,
I recently added the ACF custom field plugin because I need an additional field on the category page. I can see it on the back end (admin) but the field content does not display on the front end. I saw several people posting about ACF support but it’s not clear if Enfold supports ACF yet or not. Thx.
BrigitteGuest
OK, this is the last time I will answer your question you something because it is terrible annoying that I have to open a new threat, and it is not possible to answer to the old one.
Your theme shows </p> but NO <p>. Please open the Enfold Classis Demo. click right and choose “view page source” and go to line 436, here you will find it. I did not check the other demos.
Regards, Brigitte
The former post:
Hi, I can not answer your question in another way, because I can’t log in, because I didn’t buy something. The subject number is: #1449294
Here is just the end-tag – no <p>:
Error: No p element in scope but a p end tag seen.
From line 436, column 1; to line 436, column 4
</p>
</div></div></div><!– close content main div –>
Regards, Brigitte