Forum Replies Created
-
AuthorPosts
-
Hi,
It looks like you are using a email address for your domain, so I assume that you are getting the email on your web host. Did you check your “spam” box?
Your web host may be using “SpamAssassin” to detect spam, sometimes it will delete spam before it gets to your inbox or spam box, it depends on how it is set up.
“yahoo” address are often marked as spam, check with your web host to disable “SpamAssassin”Best regards,
MikeHey northorie,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 450px) { #top.home #av_section_1 .av_two_third { height: 750px !important; } .responsive #top.home #wrap_all #av_section_1 .flex_column.av_one_third { margin-bottom: 0; } }
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,
MikeFebruary 19, 2025 at 4:44 pm in reply to: Portfolio Items mit “Lorem ipsum dan massa” in der Suche #1477398Hey baumhoff,
I don’t find “Lorem” on your site, please link to the page with it and include a admin login in the Private Content area so we can examine.Best regards,
MikeHi,
Try creating a staging site and disable all of your plugins and CDN, if this works fine, then try changing the sidebar settings again, if this causes the error, revert the change and include a admin login to the staging site in the Private Content area so we can examine.Best regards,
MikeFebruary 19, 2025 at 4:23 pm in reply to: Enfold Theme, WooCommerce Checkout does not show the tax #1477393Hi,
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,
MikeHey walhai,
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,
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,
MikeHey Ad-Min747,
Sorry, I don’t understand your question, please explain further, and include screenshots to demonstrate.
To add a screenshot please try using an Screenshot service and pasting the image URL in your post.
An admin login may also help.Best regards,
MikeHi,
I check while logged in and both logos show correctly.
Please clear your browser cache and login and check.
This points to a caching issue, please disable your LiteSpeed Cache and clear your server cache and check again.Best regards,
MikeHey lara666,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #header .av-main-nav > li.current-menu-item > a .avia-menu-text, #top #header .av-main-nav > li.current-menu-item > a .avia-menu-subtext { color: #ED1C24; } .header_color .main_menu ul:first-child > li > a { color: #fff; }
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,
MikeHey Köln,
This is a duplicate, I answered your other thread, please check.Best regards,
MikeHey Köln,
I don’t believe that you will have any trouble, but I do recommend first creating a full backup of the site and database, just in case.
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
then you will see the Theme updated successfully message.
Best regards,
MikeFebruary 17, 2025 at 5:37 pm in reply to: Fullwidth Easy Slider > Fallback image not working #1477265Hi,
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:@media only screen and (max-width: 767px) { #footer-page .av_one_fifth .avia-image-container { padding: 10px 0; } }
adjust the padding to suit.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeHi,
Try adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .small-preview, .big-preview { max-height: 200px; } .small-preview img, .big-preview img { width: 100%; height: 200px; object-fit: cover; } }
and adjust the height to suit.
Best regards,
MikeFebruary 17, 2025 at 5:22 pm in reply to: Fullwidth Easy Slider > Fallback image not working #1477261Hi,
Glad to hear that you have this sorted out, this seems fine. Shall we close this thread then?Best regards,
MikeFebruary 17, 2025 at 5:19 pm in reply to: The Effects from masonry gallery is not showing in new version #1477260February 16, 2025 at 7:12 pm in reply to: Footer visibility problem in Safari (Enfold 6.0.9) #1477201Hi,
Thank you for your patience. but the vertical black line is from a special element in the fusion plugin, Enfold doesn’t have such an element, we have a horizontal hr element.
If you would like to request this feature, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.Best regards,
MikeHi,
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,
MikeHey northorie,
The image is in a 1/3 column and the image width fills it, I assume that you want it taller without stretching it.
So try changing your columns to a larger size, or this css:@media only screen and (min-width: 1024px) { .responsive .home #av_section_1 .container { max-width: 100%; } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeHi,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.single-post').each(function() { $(this).find('.entry-content-header').css({'margin-top':'15px'}).insertAfter($(this).find('.big-preview').css({'margin-top':'0'})); }); })(jQuery); }); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
To use the full size featured image for single posts with a sidebar, instead of the 845×321 size that will be upscaled, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter( 'post_thumbnail_size', 'custom_single_event_post_thumbnail_size' ); function custom_single_event_post_thumbnail_size($size) { if( !is_singular('post') ) { return; } if( ! has_post_thumbnail() ) { return; } $size = 'full'; return $size; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeFebruary 16, 2025 at 1:23 pm in reply to: Problems with Enfold and Ninja Forms Paypal Add on #1477194Hi,
Unfortunately since we can not find any errors in the console as to the conflict, we don’t have a solution.
We are limited to offering support for third party plugins.Best regards,
MikeFebruary 16, 2025 at 1:17 pm in reply to: The Effects from masonry gallery is not showing in new version #1477193Hey edgar,
I don’t see a “Random Faded” option for the masonry gallery:
To add a screenshot please try using an Screenshot service and pasting the image URL in your post.Best regards,
MikeHey lilijabula,
When I login the logo shows, but not when logged out, this is a caching issue, I cleared your LiteSpeed Cache and now it shows.
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,
MikeHi,
Thank you for your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #header_main_alternate { background-color: red; } #top #header .av-main-nav > li > a { background-color: red; }
Change the color to suit and Then clear your browser cache and any cache plugin, and check.
Best regards,
MikeHi,
It looks like you are using the plugin Kadence Blocks, this was created for the WP Block Editor and doesn’t seem to offer shortcodes, so it may not be compatible with Enfold.
So changing the behavior of the lightbox may not be possible, try asking the plugin author for a solution, they may have one.Best regards,
MikeHi,
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,
MikeHi,
I can not see your screenshot as it requires a login, To add a screenshot please try using an Screenshot service and pasting the image URL in your post.Best regards,
Mike -
AuthorPosts