Hi,
Thank you for sharing the details.
I’m assuming cpt = capitals?
Also did not mention which title you want to change so I’m assuming that to be the blog title?
Please remove your code and try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
/* CSS - */
body.single .post-title a {
text-transform: uppercase;
}
You may not see the changes until the cached files are cleared in your browser.
Please perform the below steps to clear the browser cache:
1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

Best regards,
Vinay
Hi,
Thank you for sharing the details.
Please follow the instructions provided in the documentation
You may need to adjust the media query to get 4 columns on tablet :)
You may not see the changes until the cached files are cleared in your browser.
Please perform the below steps to clear the browser cache:
1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

Let us know if you have any questions.
Best regards,
Vinay
Hi,
Step 2 is so you will have a backup of the theme settings “just in case”
so in step 3 please import your parent theme settings from: Enfold Theme Options > Import/Export > Import Settings from your Parent Theme you won’t see this button until the child theme is activated.
Please don’t do step 4, there is no renaming the child theme in these steps.
In step 5, you may need to select the correct menu to show, not always, but only if the correct menu is not showing.
Step 6 is only if your css is not showing correctly.
Please review this documentation about the child theme.
Best regards,
Mike
Hey fswagerman,
Please provide a link to the site/page in question so we can look into this issue further. For menu, go to Enfold > Advanced Styling > choose Main Menu Links in the dropdown menu then click on the Edit Element button, then modify the font as you see fit. Hope this helps :)
Best regards,
Jordan Shannon
Hi,
I’m just getting back to this and would like you to just confirm the steps I need to take.
1. I have Enfold and the Enfold Child theme loaded on my WordPress site. Currently, the Enfold theme is active (I have been using this for a year.)
2. I now need to export my theme settings at: Enfold Theme Options > Import/Export > Export Theme Settings File to my computer
3. Activare the Enfold Child theme and import my settings from Step 2. (Enfold Theme Options > Import/Export > Import Settings from your Parent Theme)
4. Name this new theme “MyEnfoldChildTheme” (or whatever).
5. Reset my menu options (what do you mean by this)?
6. From your previous email “Finally, sometimes it is necessary to save your theme options one more time, to encourage the settings to be saved and activated in the merged /wp-content/uploads/dynamic_avia/ folder, a simple way to do this is to go to General Styling > Quick CSS field and place a space in the field so the theme options “Save all changes” button is clickable. ”
So with these steps, I should now have an Enfold Child Theme based on my customizations, right? Is there anything else I should do?
Thanks,
Robert
Hi,
In that case you would add the following to functions.php:
// Register new icon as a theme icon
function avia_add_custom_icon($icons) {
$icons['icon_name'] = array( 'font' =>'fontello', 'icon' => 'ue800');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
// Add new icon as an option for social icons
function avia_add_custom_social_icon($icons) {
$icons['Icon Label'] = 'icon_name';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Changed “fontello” and the icon id to the one you would want to use respectively.
More info found here:
Best regards,
Jordan Shannon
Hi Tommy,
Modifying the skin of the player only works if the video is local but doesn’t work on vimeo or youtube since it’s using an iframe.
As for enlarging the video via lightbox, would this do: https://kriesi.at/themes/enfold-startup/ (click on the play button).
And as for the playback settings, we apologize but video settings doesn’t provide those features yet.
Best regards,
Nikko
Hello to everyone!
I am writing to this thread as I think my problem is the same as the one described in the title!
I have a few anchor links in a submenu in a page, and when you visit the page with the anchor link embedded in the URL you have been directed to the wrong height of the page. But when you click on the anchor link (in our case one of the submenu items) while you are on the page the scrolling works just fine!
Here is an example: https://www.lloyd.nl/eat-drink/#menus
In order to understand which should be the correct scrolling height, you need to click on the anchor link “menus” on the submenu which is located right below from the first section (next to “book your table” button) again after the page loads for the first time.
I don’t have the same issue in other Enfold websites.
See for example here: https://www.hoteldukespalace.com/culinary
Could you please help me solve the mystery?
Thank you.
Hi Daniel,
You can start a new thread by clicking the big blue button on top of the Enfold subforum.
I see that you are running an old version of the theme, could you try to update to the latest version (4.5.7) to see if that helps please? The update to 4.5.x has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or use a plugin to upload the theme zip file: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
After you have updated then try to activate the Classic Editor in the main page of the theme options.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Hey Dee,
Please try the following in Quick CSS under Enfold->General Styling:
.home .slideshow_align_caption .avia-multi-slideshow-button:hover {
background:blue;
}
.home .slideshow_align_caption .avia-slideshow-button-2:hover {
background:green;
}
Best regards,
Rikard
Hi Carsten,
Classes in CSS are what always starts with a dot:
.my-class {
CSS goes here
}
To add your own class to an element then you can activate that option under Enfold->Layout Builder->Show element options for developers. Then add your own class to the element. The documentation is using dummy (made up, example) classes, so you would have to replace my-custom-button in the example with your own class:
.my-custom-button a.avia-button:hover {
background: rgba(112, 112, 112, 1) !important;
}
Best regards,
Rikard
Hi,
Thank you for using Enfold.
There’s a load more button in the Masonry element. Have you tried that? You can select the portfolio entries taxonomy instead of the default posts to display your portfolio items.
Best regards,
Ismael
Hello!
When I try to use the update button, I get the following message:
“An error occurred while updating Enfold: Download failed. A valid URL was not provided.”
So, I tried manually installing it by using the “add new” feature in the themes section, and I get this:
“Destination folder already exists. /home/emxubfgf/public_html/wp-content/themes/enfold/
Theme installation failed.”
I’m currently using 3.3.2
What should I do? Thanks!
I have a question regarding an infinite scroll function. We are looking for a way to have more posts being displayed without clicking a „load more“ button. For example when the user is scrolling past the posts that are currently displayed, additional posts should be loaded. Is there a way to integrate this within Enfold?
I’m looking forward to your feedback.
Best regards
Fabian
Hi Nikko,
That make no sense. Every pagination must follow filters choice…
Even in your kriesi forum when you search something (for example https://kriesi.at/support/search/?bbp_search=enfold+button), the pagination buttons are updated, there are 274 pages, not all the 4521 pages…
Will you plan fixing the problem in the next version ?
Best regards,
Olivier.
What is behind the Share Buttons in the Enfold theme. If you use a facebook share Button, does leads to the same rights problems like a Facebook Like button? (Regarding the EuGH Judgment)
Thanks for Help
Hi,
Happy Birthday!! :) Yay!!
So I created a test page and published and updated again, but I found no “Failed to initialize plugin: avia_builder_button” error, visually on the backend, or in the browser console. When you see the error is it in the console?
Please see the link in the Private Content area.
But I do see that you are getting a 400 error in admin-ajax.php and the 403 for Jetpack, these are both server errors, and would be corrected by deactivating the plugins.
Please try deactivating your plugins and activate them one at a time to find the conflicts, I believe you will find issues with Jetpack, & TinyMCE Advanced, perhaps others like Sucuri.
The Jetpack error is something Jetpack has been working on but so far no clear solutions other than deactivating it.
Did you know that we have included the “Classic Editor” in the theme options at Enfold Theme Options > Select Your Editor? This will allow you to remove your “Classic Editor” plugin and possibly a conflict.
Sorry, I didn’t get this sorted out today, but please try deactivating your plugins to see if you can isolate the conflict.
Best regards,
Mike
Hi slui,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.modified_width .button {
width: 20%;
margin: 0 auto;
display: block;
}
.avia_ajax_form .form_element_three_fourth.modified_width {
width: 100%;
margin-left: 0;
}
If you need further assistance please let us know.
Best regards,
Victoria
Hey Jak73,
In your WordPress Dashboard, go to Enfold > Advanced Styling.
Then click ‘Select an element to customize’ then choose h1 (do this on h2 and h3 as well), then click Edit Element button.
You should be able to change the font size and font weight.
Hope this helps.
Best regards,
Nikko
Dear Victoria
1. I tried to use css you gave me, but it doesn’t work. I delete the div code in the beginning, then it works fine.
.main_color .button.single_add_to_cart_button {
color: aqua;
background-color: navy;
border: green 1px solid;
border-radius: 11px;
font-size: 15px;
}
2. You told me to use filters or modify templates. I try to find some docs
But it’s not enough. would you give me more detail docs teach why to do it?
Best regards.
Thomas
-
This reply was modified 6 years, 8 months ago by
thomasvr4.
Hey ofekw,
Thank you for using Enfold.
You should be able to attach a link to the image and redirect it to a post or page. Edit the image, go to the Caption panel and enable the “Apply a link or buttons to the slide?” settings. You can also add buttons if you want.
Best regards,
Ismael
Heute wurde ein neues EU Urteil zum Datenschutz gefällt: https://datenschutz-generator.de/eugh-urteil-like-button-cookie-opt-in-abmahnbarkeit
Ist bei der Cookie-consnet-Funktion von Enfold ein separates Opt-In für jedes Javascript geplant oder sollte man hier auf plugins zurückgreifen?
Zum Beispiel diese hier: https://de.borlabs.io/borlabs-cookie/
Vielen Dank und mit freundlichen Grüßen
Joachim Biehl
Hi,
I’m having issues with the submit button on the Enfold contact element. I have 29 elements that are checkboxes and are setup to be 1/4 page width. That part works fine. The part that does not work well is that the submit is automatically formatted for 3/4 of a page.
See the screenshot:

Please advise on how to fix this. Thanks.
sl
if you realy want to get rid of that button – you can use remove for it – place that in child-theme functions.php
f.e. you placed an enfold button and give a custom class to it f.e.: button-customclass
function remove_a_button_with_custom_class(){
?>
<script>
(function($){
$(".button-customclass a").click(function(){
$(this).remove();
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'remove_a_button_with_custom_class');
Hello Ismael,
I’m not using the grid function – I only want to be able to change the order of the next / previous buttons on a page.
What determins the order of these arrows, I tried to order by date of creation of the portfoilio entries, but does not work and its also not the alphabetical order.
I neet do sort this our, please.
This is an issue since years, why is it so complicated to order the portfolio entries via ENFOLD, not understandable for clients.
Thank you in advance,
PS I tried this code but the lines do not match !
Open up /enfold/functions-enfold.php and change lines 395 – 403 from this.
{
$entries[‘prev’] = get_previous_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
$entries[‘next’] = get_next_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
}
else
{
$entries[‘prev’] = get_previous_post($settings[‘same_category’]);
$entries[‘next’] = get_next_post($settings[‘same_category’]);
}
To this.
{
$entries[‘next’] = get_previous_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
$entries[‘prev’] = get_next_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
}
else
{
$entries[‘next’] = get_previous_post($settings[‘same_category’]);
$entries[‘prev’] = get_next_post($settings[‘same_category’]);
}
Best regards,
Elliott
Best AB
Dear Enfold team,
I put button on the back of “icon grid” – unfortunately they do not work.
Obviously a number of people are facing the same problem. What is the solution?
Thanks !
Bob
Hi mike2805,
You can click the massive blue button on top of the Enfold sub forum, or follow this link to open a new thread.
Best regards,
Rikard
Dear Support – Team from Enfold,
I have buyed the enfold theme and I am already on making a website with it, but I stumbled on two problems, I can’t solve alone (when somebody has already an answer to this published, please link to it :) )
1. With Enfold, I can use the “Advanced Layout Builder” – so far so good. But I can just use it for new posts – not for the posts I created before using Enfold (I used a free theme before Enfold). At this posts I can’t find the “Advanced Builder” – Button.
Is there a way to solve this problem?
2. When I click on a category, all articles are in their whole length on the site. How can I change that, so that only the preview text and the image for each article can be seen?
I´am not a English native speaker, so I apologize for eventual mistakes :)
I look forward to your answer,
Best regards
Hi
Before Gutenberg, Enfold used to have a button below the editor icons that made the editor go full width and the icons used to stick to the top of the screen.
This was very useful for long pages. Am I going mad or has it disappeared?
Kind Regards,
Hi,
Oops, wrong button :)
Glad we were able to help, we will close this now. Thank you for using Enfold.
For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)
Best regards,
Mike