Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the link.
Add this code in the functions.php file to load the Cairo font:
function av_load_google_fonts() { wp_enqueue_style( 'google-fonts-cairo', 'https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap', array(), null ); } add_action('wp_enqueue_scripts', 'av_load_google_fonts');After that, add the following css to make the font the default body text:
#top, body, p, span, li, a, h1, h2, h3, h4, h5, h6, input, textarea, button { font-family: 'Cairo', sans-serif; }Let us know the result.
Best regards,
IsmaelHi,
You’re welcome! Please don’t hesitate to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey ti2media,
Thank you for the inquiry.
You can adjust the initial height of the header in the Enfold > Header > Header Layout > Header Size settings. To correct the menu color issue including the active state color on a scrolled header, please add this css code.
.header_color.header-scrolled .main_menu ul:first-child > li.current_page_item > a { color: #ffffff !important; } .header_color.header-scrolled .main_menu ul:first-child > li > a { color: #0d3c63 !important } .header_color .main_menu ul:first-child > li.menu-item-language > a { color: #0d3c63; } .header_color.header-scrolled .main_menu ul:first-child > li.menu-item-language > a { color: #ffffff; }Let us know the result.
Best regards,
IsmaelHey ti2media,
Thank you for the inquiry.
The color of the email field is different due to this css code:
#top .kontaktformular input[type='text'] { background-color: #ffffff !important; border: none !important; color: #0d3c63 !important; }To correct it, please replace it with the following css:
#top .kontaktformular input[type='text'], #top .kontaktformular input[type='email'] { background-color: #ffffff !important; border: none !important; color: #0d3c63 !important; }Then add this css code to adjust the width of the form fields:
#top fieldset { margin-bottom: 20px; overflow: hidden; }Best regards,
IsmaelHey Pierre,
Thank you for the inquiry.
Unfortunately, this option is not available by default. It’s possible to implement, but it would require a custom script or significant modifications, which is beyond the scope of support. We recommend looking for a plugin or hiring a freelance developer to add the feature for you. Please check the link below.
— https://kriesi.at/contact/customization
Best regards,
IsmaelHey John,
Thank you for the inquiry.
The theme has its own Contact Form element, but if you need more options, we recommend Contact Form 7 for simplicity or WPForms for more advanced features. Please check the links below:
— https://wordpress.org/plugins/contact-form-7/
— https://wordpress.org/plugins/wpforms-lite/If you find any styling issues, you can always correct them with custom css. Let us know if you need any additional assistance.
Best regards,
IsmaelDecember 4, 2025 at 6:08 am in reply to: Never Mind I found it: How to change main menu background? #1492089Hey collinsfgc2025,
Glad to know that you figured it out! We’ll go ahead and close the thread now. Have a nice day.
Best regards,
IsmaelDecember 4, 2025 at 6:06 am in reply to: Color section not showing color or image background. #1492088Hey dnewkirk,
Thank you for the inquiry.
You may need to temporarily disable the cache plugin, as well as the Enfold > Performance > File Compression settings, while editing the site. You can enable them again once you’re done. Let us know if the issue persists.
Best regards,
IsmaelHey tristen1,
Thank you for the inquiry.
We didn’t find any script issues on the frontend when we checked the Query Monitor overview. Would you mind providing a screenshot of the issue? You can upload it using platforms like Savvyify, ImgBB, PostImages or Dropbox.
This is what we get from Query Monitor:
Best regards,
IsmaelHey tariqyacoub82,
Thank you for the inquiry.
Unfortunately, it’s not possible to set a different font for each language from the theme options. You will need to modify this with custom css. If you can create a test page and share the site URL, we’ll check it out.
Best regards,
IsmaelHi,
Glad to know you figured out the issue. Thank you for your patience.
Best regards,
IsmaelHey jimmiemoreland,
Thank you for the inquiry.
You can add this css code to make the header sticky on mobile. Make sure to adjust the top padding based on the header’s height.
@media only screen and (max-width: 989px) { /* Add your Mobile Styles here */ .responsive.html_mobile_menu_tablet #top #wrap_all #header { position: fixed; } .responsive.html_header_top #top #main { padding-top: 120px !important; margin: 0; } }Let us know the result.
Best regards,
IsmaelHi,
Thank you for the update.
If you want to create it manually using html, try to add this code in a text or code block element:
<div class="av-logo-row"> <div class="av-logo-item"> <img src="logo1.png" alt="Logo 1"> <span>Text 1</span></div> <div class="av-logo-item"> <img src="logo2.png" alt="Logo 2"> <span>Text 2</span></div> <div class="av-logo-item"> <img src="logo3.png" alt="Logo 3"> <span>Text 3</span></div> <div class="av-logo-item"> <img src="logo4.png" alt="Logo 4"> <span>Text 4</span></div> <div class="av-logo-item"> <img src="logo5.png" alt="Logo 5"> <span>Text 5</span></div> <div class="av-logo-item"> <img src="logo6.png" alt="Logo 6"> <span>Text 6</span></div> <div class="av-logo-item"> <img src="logo7.png" alt="Logo 7"> <span>Text 7</span></div> <div class="av-logo-item"> <img src="logo8.png" alt="Logo 8"> <span>Text 8</span></div> <div class="av-logo-item"> <img src="logo9.png" alt="Logo 9"> <span>Text 9</span></div> </div>Then use this css:
.av-logo-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; } .av-logo-item { flex: 1 1 calc(100% / 9 - 20px); display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 20px; } .av-logo-item img { width: 40px; height: 40px; margin-bottom: 8px; } .av-logo-item span { font-size: 14px; color: #333; } @media (max-width: 1024px) { .av-logo-item { flex: 1 1 calc(33.333% - 20px); } } @media (max-width: 600px) { .av-logo-item { flex: 1 1 100%; } }Best regards,
IsmaelHey RollandH,
Thank you for the inquiry.
Unfortunately, it’s not possible to translate the content of the cookie or privacy options using Loco Translate. As a solution, we added this code to the functions.php file.
function av_lang_cb( $atts, $content = null ) { $atts = shortcode_atts( array( 'only' => '', ), $atts ); $current_locale = get_locale(); if ( strtolower( $current_locale ) === strtolower( $atts['only'] ) ) { return do_shortcode( $content ); } return ''; } add_shortcode( 'av_lang', 'av_lang_cb' );You can now use these shortcodes to control the visibility of content in different languages.
[av_lang only="en_US"] This text is visible only on English pages. [/av_lang] [av_lang only="fr_FR"] Ce texte n'est visible que sur les pages en francais. [/av_lang]Best regards,
IsmaelHey maryenvato,
Thank you for the inquiry.
Did you modify the styles for the <select> and <option> elements? Please try to add this css to adjust the color of the option fields.
option { padding: 8px; background: #FFFFFF; color: #333333; } option:hover { background: #EEEEEE; }Let us know the result.
Best regards,
IsmaelHi,
Thank you for the update.
We may need to inspect the page to properly understand the issue. Please create a test page and provide the URL in the private field. We also recommend reaching out to the plugin developers for additional assistance.
Best regards,
IsmaelHey Eleina,
Thank you for the inquiry.
Please add this code in the Quick CSS field to adjust the layout of the top bar on mobile view:
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ #top #header_meta .phone-info>div>div { display: flex !important; align-items: center !important; justify-content: start !important; flex-direction: column; gap: 4px !important; } }Result:
Best regards,
IsmaelHi,
Great! Glad you figured it out. Feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelDecember 2, 2025 at 7:34 am in reply to: Product not showing in the cart without logged in to the website #1492020Hi,
Glad to know that the issue is resolved. Please feel free to open another thread if the issue occurs again.
Have a nice day.
Best regards,
IsmaelHey Rompf,
Thank you for the inquiry.
The child theme should be included in the package you downloaded from Themeforest, but you can also download it directly from the documentation.
— https://kriesi.at/documentation/enfold/child-theme/
Let us know if you need more info.
Best regards,
IsmaelHey limedrop,
Thank you for the inquiry.
You can try the fixed or parallax background effect in a Color Section element or Slider, but it wouldn’t be exactly the same as the scroll effect found on the site above. This is possible with the Layer Slider, but it would require a standalone license because the scroll effects are not available in the native Layer Slider plugin included in the theme. Hope this helps.
Best regards,
IsmaelDecember 1, 2025 at 7:31 am in reply to: Comment form for an article on mobile is not displaying correctly #1491969Hi,
Thank you for the inquiry.
Adding this code in the Quick CSS field should correct the layout issue on mobile view:
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ #commentform label { position: relative; left: auto; top: 0; } #top .comment-form-cookies-consent label { top: -30px; } }Screenshot:
Best regards,
IsmaelDecember 1, 2025 at 6:43 am in reply to: Problems with Hivepress plugin / Does Enfold redirect searches? #1491968Hi,
Glad to know that you’ve found the issue. To override the current filter, you can use the remove_filter function so you can define your own.
— https://developer.wordpress.org/reference/functions/remove_filter/
Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey Sebastian,
Thank you for the inquiry.
That is not possible without significant modifications to the theme, unfortunately. We recommend using the Content Slider instead so you can control the content for each slider. Try manually adding an image and text for each slide.
Best regards,
IsmaelHey coredesignsupport,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue? The logo image cannot be translated by default, but you can use the avf_logo filter to assign a different logo image based on different conditions, like different language.
Example:
function avf_logo_mod($logo){ $currentlang = get_bloginfo('language'); if($currentlang == "fr_FR"){ $logo = 123; // <-- replace with the FR logo image } return $logo; } add_filter('avf_logo','avf_logo_mod');Best regards,
IsmaelHi,
Thank you for the inquiry.
We can reproduce the issue but we are not yet sure what is causing it. Have you tried increasing the WP_MEMORY_LIMIT from 40M to at least 256M? This is the recommended minimum for many modern themes and plugins including Enfold.
In the meantime, we recommend downgrading to PHP 8.3 and make sure that the WP_MEMORY_LIMIT is increased to 256M.
Best regards,
IsmaelNovember 28, 2025 at 7:27 am in reply to: Header size changes when switching to “tablet” and “mobile” sizes #1491916Hi,
Thank you for the inquiry.
Have you tried selecting standard screen sizes instead of manually adjusting the screen width or height? We made some adjustments to the css code and re-added it in the Quick CSS field.
@media only screen and (max-width: 989px) { .responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container { height: 50px; line-height: 50px; } .responsive.html_mobile_menu_tablet.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 50px; margin-top: 50px !important; } .responsive #header_main .container { height: 50px !important; } .responsive #top .logo { height: 48px !important; } #top #menu-item-search { top: 4px; } }(Tablet):
(Phone)
Best regards,
IsmaelHi,
Thank you for the info.
You may need to adjust a few PHP settings to resolve this issue. If you have access to the php.ini file or PHP configuration, you can try setting the following options.
memory_limit = 512M max_execution_time = 300 post_max_size = 64M max_input_vars = 5000For additional assistance, we recommend reaching out to your hosting provider and ask them to adjust the settings if necessary.
Best regards,
Ismael -
AuthorPosts







