Forum Replies Created
-
AuthorPosts
-
Hi,
Glad Guenni007 could help, thank you Guenni007, 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,
MikeHi,
I’m not sure what is smaller, did you click your Accessibility Tools plugin?
Try adding a screenshot on the issue, yo add a screenshot please try using an Screenshot service and pasting the image URL in your post.
The css above should only be for the horizontal gallery.Best regards,
MikeHey esther nijhuis,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.flex_column:hover { background-color: red; }
and change the color to suit.
If you want this to only work on this one page then add the page class like this:.page-id-23244 .flex_column:hover { background-color: red; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeHey Susanne Knoll,
Please note that we did not create or host your site, we created the theme that your site uses.
Nonetheless, when I test your contact form it seems to work correctly:
Since you are using an old version of the theme (v4.1.2) you should update to v7.1.1
To update your version of Enfold you will need to download the latest <strong style=’color:#000′>installable WP version from your Theme Forest account and upload it to your <strong style=’color:#000′>WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a <strong style=’color:#000′>This theme is already installed message because you are updating, you can continue
then you will see the <strong style=’color:#000′>Theme updated successfully message.
I also see that your updates are disabled, so if you don’t have a theme forest account you will need to purchase a new license. Envato (Theme Forest) handles all of our licenses and we can not create licenses and Envato will only recognize account owners, this sometimes happens with a site is built by a developer who in the future can not be found, Envato will not issue a new license to the website owner, one must be purchased. The upside to this is that by purchasing a new license you will also get 6 months of support on our forum to help with any issues. I recommend upgrading to a full year of support for just a little more, as the cost of the theme and a full year of support costs the same as a single hour of support from many developers.
Then you can register for our support forum and open a new thread. You have asked your question through the contact form which is not for support requests.
Thank you for your understanding.Best regards,
MikeHey John,
While I’m not a podcaster, the only feature that I can think of is posting links to your mp3’s to download which should not be a problem. While you could also play the files directly on your site, as I understand podcasters track the number of “downloads” as a metric so playing the files directly on the site is not what most want to do.
I recommend reading: https://podcastindex.org/ and Podcasting 2.0: https://www.noagendashow.net/about/podcasting20Best regards,
MikeHey Jake,
While I don’t expect any issues with updating from v3.85 to v7.1.1, I recommend creating a full site backup with your web host backup tool, not a plugin, as good practice.
If they are not using a a Child Theme check the functions.php for any customizations that they may have added, it will be lost in the update. If they are using a child theme, and have any customized php files like header.php or footer.php or any element php files, save these to your computer and remove them from the server before updating. With a version this old they will cause errors, you will need to copy the new version of the files and make the changes to them before adding them to the child theme.
Typically a good practice is to create a staging site first and update it and then compare the two sites for any difference, if this works fine then update the live site.
If you have any further questions please register to our support forum here and create a new thread and we will gladly try to help you.
You have asked your question through the contact form which is not for support requests.
Thank you for your understanding and for using Enfold.Best regards,
MikeHi,
Please try disabling your Password Protect WordPress Lite plugin, or perhaps all of your plugins as we can’t view your page.Best regards,
MikeHi,
I don’t see the error on Safari on Mac with Responsive Design Mode to emulate a iPhone, unfortunately I don’t have a real iPhone to test with.
Please try Guenni007’s solution and let us know if that helped.Best regards,
MikeJune 14, 2025 at 8:37 pm in reply to: Settings import: couldnt’t import the config because the server didnt resp #1485460Hi,
We are not able to login to your site as we don’t have the password, you need to post the password in the Private Content area. We don’t have access to the email address that you used.
I believe that you see this error because your webhost doesn’t have the PHP ZipArchive Extension enabled, so WordPress can extract the zip file, please check with your webhost that this is enabled.Best regards,
MikeHi,
I have researched this and while there is a long technical explanation for why the WAVE test tool is flagging this, I found a solution in my research. Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function remove_link_from_search_icon_and_add_it_back_on_click() { ?> <script> document.addEventListener('DOMContentLoaded', function() { const searchLink = document.querySelector('#menu-item-search a'); if (searchLink) { // Store the original href const originalHref = searchLink.getAttribute('href'); // Remove the href on page load searchLink.removeAttribute('href'); // Add click event to restore href searchLink.addEventListener('click', function() { if (!searchLink.getAttribute('href')) { searchLink.setAttribute('href', originalHref); } }); } }); </script> <?php } add_action( 'wp_footer', 'remove_link_from_search_icon_and_add_it_back_on_click', 99 );
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
and ensure that it is activated, then add the above code and save.
I tested this on the WAVE Web Accessibility Evaluation Tool and it removed the error.Best regards,
MikeHey gerardlok1,
You probably have not finished setting up the woocommerce plugin, try going to woocommerce plugin start, and look for “add your products”:
it probably won’t be crossed out like in the image, click it and on the next screen click “View more product types” then click “Load Sample Products”
This will add 9 sample products and woocommerce will know you have products, then the widgets will show:
Best regards,
MikeHey David Mawad,
Typically, this error is from trying to install the full theme zip file with the documentation, you will need to download the installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
as for posting a question on the support forum, if you have not registered to our support forum yet you can do so here and enter your purchase code.Best regards,
MikeHey Alan,
When I check the footer on your site, I see three 1/3 columns which are centered, see image 1 below.
Since each column is 1/3 and the content is minimal there is a lot of empty space, see image 2 below.
I assume that you want to make the two columns with text smaller so they are closer together and the center all of them.
Is the correct?Best regards,
MikeHey SurigliaStudio,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function blog_title_above_image() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.slide-entry').each(function() { $(this).find('.entry-content-header').insertBefore( $(this).find('a.slide-image')); $(this).find('.av-vertical-delimiter').css('display','none'); }); })(jQuery); }); </script> <?php } add_action( 'wp_footer', 'blog_title_above_image', 99 );
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
and ensure that it is activated, then add the above code and save.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Please see the screenshot in the Private Content area of the expected results.Best regards,
MikeHi,
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,
MikeHi,
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,
MikeHi,
Glad Guenni007 could help, thank you Guenni007, 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,
MikeJune 11, 2025 at 9:07 pm in reply to: Before – After Slider : Button Translations for bilingual websites #1485350Hi,
Glad Guenni007 could help, thank you Guenni007, 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,
MikeHey JoStudioDeRijp,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.av-masonry-date { display: none; }
If it doesn’t help, please link to your page so we can examine.
Best regards,
MikeHey jedediahzilberberg,
I would point out that the class “ai-optimize-*” is from a plugin, not the theme.
So this is from the plugin, or from your copy/paste or from hitting the “enter key” while in visual mode in the text editor.Best regards,
MikeJune 9, 2025 at 9:53 pm in reply to: Background overlay gradient behind text with background image #1485247Hi,
Glad that we were able to help, please note that in this code, the first class is the page:
.page-id-76
so it is only for this page.
the next class is for the first element on the page, which in this case is a column element:
.avia-builder-el-0
if you wanted to add this to multiple pages, you could add a custom class or ID to these column elements under “Developer Settings” on all of the pages.
When you add custom classes in the field you don’t need to add the “dot”, just the class name.
the third class is for the text block:
.av_textblock_section
and then the paragraph text in the text element:
p
Hopefully this will help, if it does let us know and we will close this thread.
You can always open a new thread in the future for further questions.Best regards,
MikeHi,
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,
MikeHi,
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,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.header_color .menu-item:not(.current-menu-item) .avia-menu-fx { opacity: 1; visibility: visible; background: gold; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
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,
MikeHey rixi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (min-width: 768px) { #av_section_2 .flex_column_table .avia-button-wrap { position: absolute; bottom: 0; left: 20%; transform: translateX(-13%); padding-bottom: 20px; } #av_section_2 .flex_column_table .av_textblock_section { padding-bottom: 50px; } }
Best regards,
Mike -
AuthorPosts