-
AuthorSearch Results
-
April 1, 2024 at 1:19 pm #1438894
In reply to: Masonry no entries fallback
Hi @Guenni007,
I added a fix for 5.7:
LIMITATION: relation “AND” does not provide a fallback if empty categories are selected !!!
Best regards,
GünterApril 1, 2024 at 12:16 pm #1438889In reply to: Header on desktop and mobile
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,
MikeApril 1, 2024 at 11:05 am #1438884Hi,
Thanks for the update. Please try adding this to functions.php in your child theme:
/** * Filter to skip css file generation. * You can add logic to skip for certain pages/posts only. * * @since 4.8.6.1 * @param boolean $create * @return boolean true | false or anything else to skip generation of css file */ function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );Also make sure to clear all caches after you have added the code, and toggle the file compression options and option to delete old CSS and JS files under Enfold->Performance as well.
Best regards,
RikardApril 1, 2024 at 7:28 am #1438878In reply to: Logo covering icons on mobile
Hi!
Sorry for the delay. Please try to set the Enfold > Main Menu > General > Menu Items For Mobile settings to the second option (Active for Smartphones and Tablets) to ensure the mobile menu displays earlier or when the screen width is less than 989px.
Best regards,
IsmaelApril 1, 2024 at 7:26 am #1438877In reply to: Can’t Save Anything on My Home Page
Hey MichelleArmstrong,
Thank you for the inquiry.
The Enfold > Theme Options > Frontpage Settings is not set. Please create a new page, then try to select it as front page.
Best regards,
IsmaelApril 1, 2024 at 6:55 am #1438875Hi,
The settings in Enfold for the video is NOT SET TO MUTE!
Yes, that is correct, but it is set to autoplay, and as we mentioned before, the theme automatically mutes the video if autoplay is enabled. Please review the link to the browser policy for autoplay provided above.
Best regards,
IsmaelApril 1, 2024 at 4:14 am #1438873In reply to: Mobile menu header covering logo
Hi,
@Sethkonkel: You can set the Enfold > Main Menu > General > Menu Items For Mobile settings to the second option (Active for Smartphones and Tablets) to ensure the mobile menu displays earlier or when the screen width is less than 989px. If the issue persists or if you need further assistance, please open a new thread.Best regards,
IsmaelApril 1, 2024 at 3:45 am #1438869In reply to: Contact form
Hey aaronjosephhall1,
Thank you for the inquiry.
Do you receive emails when using plugins like Contact Form 7 or WPForms? Please test the plugins or check the link below for more info on troubleshooting the default contact form.
// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelApril 1, 2024 at 1:02 am #1438864Hey northorie,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { #hello .avia_textblock img { width: 50%; } }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.
Please see the screenshot in the Private Content area of the expected results for mobile.Best regards,
MikeApril 1, 2024 at 12:52 am #1438863In reply to: Header on desktop and mobile
Hey dreamreader,
Your desktop header is using the option in the admin sidebar for Header visibility and transparency ▸ Header is invisible and appears once the users scrolls down this option doesn’t work for mobile.
You could try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { #header.av_header_transparency { display: none; } #top #wrap_all #header.av_header_transparency ~ #main { padding-top: 0 !important; } }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,
MikeApril 1, 2024 at 12:31 am #1438862In reply to: Add a header widget area
Hi,
Your header is transparent the gray that you see is from the top color section on the page:

when the header is scrolled the #897270 color is from your Logo Area Color:

if you don’t want a transparent header change the setting on the page in the backend in the admin sidebar:

As for the header widget, I disabled the above css and added this:@media only screen and (min-width: 990px) and (max-width: 1670px) { #header_main .inner-container .widget .textwidget { margin-left: -196%; } } @media only screen and (min-width: 990px) and (max-width: 1440px) { #header_main .inner-container .widget .textwidget p span { font-size: 14px !important; } } @media only screen and (min-width: 1441px) and (max-width: 1670px) { #header_main .inner-container .widget .textwidget p span { font-size: 18px !important; } } #header_main .inner-container { display: flex; flex-wrap: wrap; justify-content: center; align-content: center; } #header_main .inner-container .widget { padding: 0; } #header_main .inner-container .widget .textwidget { align-content: center; height: 100%; }please clear your browser cache and check.
Best regards,
MikeMarch 31, 2024 at 10:34 pm #1438859In reply to: Button position on sliders
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (min-width: 768px) { #top .caption_bottom .slideshow_caption .slideshow_inner_caption { position: relative; text-align: center; } #top .slideshow_inner_caption .avia-slideshow-button.avia-button { width: 300px; height: 100px; font-size: 24px; } .html_header_transparency #top #main .caption_bottom .slideshow_caption { padding-top: 0; } } @media only screen and (max-width: 767px) { #top .caption_bottom .slideshow_caption .slideshow_inner_caption { position: relative; text-align: center; } #top .slideshow_inner_caption .avia-slideshow-button.avia-button { padding: 10px 6px; font-size: 10px; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 31, 2024 at 10:13 pm #1438858In reply to: only on this page
Hi,
Try this CSS instead in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (min-width: 1440px) { #top:not(.page-id-3288,.page-id-3593) #footer { display: none; } } @media only screen and (max-width: 1439px) { #top #footer { display: none; } }Best regards,
MikeMarch 31, 2024 at 10:02 pm #1438857Hi,
To change the color of the burger menu icon on desktop try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .av-burger-overlay li li .avia-bullet, #top .av-hamburger-inner,#top .av-hamburger-inner::before, #top .av-hamburger-inner::after { background-color: red !important; }To adjust the width of the mobile menu go to Enfold Theme Options ▸ Main Menu ▸ Burger/Mobile Menu Styling ▸ Flyout Width
Best regards,
MikeMarch 31, 2024 at 9:55 pm #1438855In reply to: Image of symbol-box
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #main .iconbox_left_content .iconbox_icon { width: 100px; height: 100px; }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,
MikeMarch 31, 2024 at 2:34 pm #1438841In reply to: only on this page
Hi,
This assumes that you want the footer to show only on this page at screen sizes over 1440px, feel free to adjust to a different screen size if you wish.
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (min-width: 1440px) { #top:not(.page-id-3288) #footer { display: none; } } @media only screen and (max-width: 1439px) { #top #footer { display: none; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 31, 2024 at 2:23 pm #1438840In reply to: Change words color when hover
March 31, 2024 at 2:04 pm #1438837In reply to: Layer Slider Arrow down
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,
MikeMarch 31, 2024 at 2:03 pm #1438836In reply to: Tabs Text alignement
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,
MikeMarch 31, 2024 at 2:03 pm #1438835In reply to: sorting posts
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,
MikeMarch 31, 2024 at 12:51 pm #1438831In reply to: sorting posts
Hello Mike,
i am sooooo glad that you found that out – thank you very much, that made my easterday!!!!!
I changed it now and it works perfect :)Have a great eastertime and thanks again.
This enfold support team is absolutely perfect :)
Best regards
rixiMarch 31, 2024 at 8:52 am #1438825Hi Mike,
I have checked the plugin which you shared, It basically copies all the wp-files and databases used in one wordpress site and helps us to move it to another one, But we ourselves have already taken the same files and databases dump from our existing site and used it here, But why are we getting only some plain texts with ENFOLD in the header and not the complete page, Also we could see lots of Error / Warning notices while previewing the theme, Could please help us fix this issue ASAP.
FYR: Have attached the Warning and error messages in the private content section, Please check.
Regards
LeadliaisonMarch 31, 2024 at 5:32 am #1438820Topic: contact form notification in Chinese?
in forum Enfoldgatehealing
ParticipantThis is intermittent, but it has happened 3 times today as I’ve been testing the form. It happened when I used the Enfold math verification thing, and it happens with Google Recaptcha v2 (it tests fine in Enfold Child options).
Here is the email I got from the form:
퍍ⷔ㽪㬤ꊧ交샠磚띔샑鮐㧵駯້힡禩択ܨ頪➵伪庵ﺙ媊眡檻Ặ➵亶Ʇቷ⡶⧠涫ừ蓦ᛖ厢҆蚀키勔혖雃ꈇ㛦猃ʹچ혖雂킥㝖⚦嘷䎢҆蚀킥چ厢̓ጓጓጓጓაꃐꓖ圷㘖癓ꃐꐧ暆ꚶ⃐ꃐ괴틝䏶ꎲ䨪瓪䇽䰎ލꭵ乸簍ᦹΟ妞鈆굺រ阩覂ꉻ庞퓲ꗫ廆뙩岅ꫬ竛굿삨黗Ꞵ能၏㣯溄폑㤓輁ݯ㳯�୍篧渧橪歷巩꺇梺ꉇ⢘⨧뗩뚧뇷ꬒ眨瘩욇䛖쏠킣욆嘖䏠킣웖坆ሆ蝇䜂홗靣툤㛶囧䋕䞗ْ∆㛶囧䏒❆垇䋶蝆훃눆㚆ᜧ㙗䏗坆拓舣ꏂ嘖䏠킣옦鏠키홓ꈄ蚆舃옧⏠키勔혖雃ꈇ㛦猃ʹچ혖雂φ✣ꔷ嘦Ꙗ㝃ꈄ蚆舃옧⏠킥چ厢̓ጓጓጓጓሃ옧⏠킣옧⏠키홗㜶ᙶ厢φ✣ꐧ暆ꚶ∃옧⏠킣옧⏠킣싶⛶䞓ꏂ䛖쏠킣䴴띐ﶨ誝㪐罓鸟͆***By the way, as a point of interest, google Translator only identified Bird, erosion, tarantula, and house.***
March 31, 2024 at 12:58 am #1438816I think I have identified and specific progression to recreate the issue:
Editing WP dashboard in FireFox. Testing in Google Chrome.
1) Edit something in Enfold Child Options (I edited recaptcha….enabled it, saved, then tested it, then it autosaves)
2) Go to a page and edit/update. I updated the Contact page, specifically editing the Contact Form, and activating Recaptcha v2.
3) Go to a different browser and go to the home page. For me, it has consistently been the Counseling Services page that has the error, and the Feeling Stressed vs Being Stressed blog post.Jon
March 30, 2024 at 11:37 pm #1438810Hey northorie,
To have a mobile menu when the header is transparent and change to the full menu on scroll for desktop screens, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 2500px) { #top #header.av_header_transparency .av-main-nav > li.menu-item { display: none!important; } #top #header.av_header_transparency .av-burger-menu-main { cursor: pointer; display: block!important; } }Best regards,
MikeMarch 30, 2024 at 11:17 pm #1438808In reply to: Tabs Text alignement
Hey dreamreader,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#tab-id-1-content .tab_inner_content { padding-top: 0% } #tab-id-2-content .tab_inner_content { padding-top: 4% } #tab-id-3-content .tab_inner_content { padding-top: 11% } #tab-id-4-content .tab_inner_content { padding-top: 18% } #tab-id-5-content .tab_inner_content { padding-top: 25% } #tab-id-6-content .tab_inner_content { padding-top: 33% } #tab-id-7-content .tab_inner_content { padding-top: 39% } #tab-id-8-content .tab_inner_content { padding-top: 46% } #tab-id-9-content .tab_inner_content { padding-top: 53% } #tab-id-10-content .tab_inner_content { padding-top: 60% } #tab-id-11-content .tab_inner_content { padding-top: 66% }you may need to adjust this a little, it the only solution I could think of.
Best regards,
MikeMarch 30, 2024 at 11:04 pm #1438807In reply to: Image Size on mobile in column
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,
MikeMarch 30, 2024 at 11:04 pm #1438806In reply to: Seiten Editor lädt nicht
Hey Chancenzeit,
When I check your homepage the text editor opens and saves correctly:

perhaps a screenshot of your trouble would help.Best regards,
MikeMarch 30, 2024 at 10:50 pm #1438800In reply to: Contact Form: Message Sent Label doesn’t appear
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 -
AuthorSearch Results
Viewing 30 results - 8,971 through 9,000 (of 244,463 total)
-
Search Results
-
This is intermittent, but it has happened 3 times today as I’ve been testing the form. It happened when I used the Enfold math verification thing, and it happens with Google Recaptcha v2 (it tests fine in Enfold Child options).
Here is the email I got from the form:
퍍ⷔ㽪㬤ꊧ交샠磚띔샑鮐㧵駯້힡禩択ܨ頪➵伪庵ﺙ媊眡檻Ặ➵亶Ʇቷ⡶⧠涫ừ蓦ᛖ厢҆蚀키勔혖雃ꈇ㛦猃ʹچ혖雂킥㝖⚦嘷䎢҆蚀킥چ厢̓ጓጓጓጓაꃐꓖ圷㘖癓ꃐꐧ暆ꚶ⃐ꃐ괴틝䏶ꎲ䨪瓪䇽䰎ލꭵ乸簍ᦹΟ妞鈆굺រ阩覂ꉻ庞퓲ꗫ廆뙩岅ꫬ竛굿삨黗Ꞵ能၏㣯溄폑㤓輁ݯ㳯�୍篧渧橪歷巩꺇梺ꉇ⢘⨧뗩뚧뇷ꬒ眨瘩욇䛖쏠킣욆嘖䏠킣웖坆ሆ蝇䜂홗靣툤㛶囧䋕䞗ْ∆㛶囧䏒❆垇䋶蝆훃눆㚆ᜧ㙗䏗坆拓舣ꏂ嘖䏠킣옦鏠키홓ꈄ蚆舃옧⏠키勔혖雃ꈇ㛦猃ʹچ혖雂φ✣ꔷ嘦Ꙗ㝃ꈄ蚆舃옧⏠킥چ厢̓ጓጓጓጓሃ옧⏠킣옧⏠키홗㜶ᙶ厢φ✣ꐧ暆ꚶ∃옧⏠킣옧⏠킣싶⛶䞓ꏂ䛖쏠킣䴴띐ﶨ誝㪐罓鸟͆***By the way, as a point of interest, google Translator only identified Bird, erosion, tarantula, and house.***


