Forum Replies Created

Viewing 30 posts - 91 through 120 (of 67,014 total)
  • Author
    Posts
  • in reply to: Arabic font Change #1492097

    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,
    Ismael

    in reply to: Multilingual cookie policy with Loco Translate #1492096

    Hi,

    You’re welcome! Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Menu Element height and active / hover broken #1492095

    Hey 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,
    Ismael

    in reply to: Contactform Issue on mobile #1492094

    Hey 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,
    Ismael

    in reply to: lien vers une diapositive spécifique d’un slider #1492093

    Hey 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,
    Ismael

    in reply to: Best form builder for Enfold theme #1492091

    Hey 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,
    Ismael

    in reply to: Never Mind I found it: How to change main menu background? #1492089

    Hey collinsfgc2025,

    Glad to know that you figured it out! We’ll go ahead and close the thread now. Have a nice day.

    Best regards,
    Ismael

    in reply to: Color section not showing color or image background. #1492088

    Hey 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,
    Ismael

    in reply to: Theme scripts slowing website down (URGENT) #1492046

    Hey 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:

    Screenshot-2025-12-03-at-2-48-28-PM

    Best regards,
    Ismael

    in reply to: Arabic font Change #1492045

    Hey 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,
    Ismael

    in reply to: Tranlatepress change logo by language in header #1492044

    Hi,

    Glad to know you figured out the issue. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Mobile Sticky Header Not Working #1492043

    Hey 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,
    Ismael

    in reply to: Blog Overview – Image left, copy right #1492042

    Hi,

    Thank you for the update.

    Try to add this css code to show the full image:

    #top .fullsize .template-blog .big-preview img {
        min-width: 300px;
        background-size: contain;
    }

    Screenshot-2025-12-03-at-2-21-01-PM

    Best regards,
    Ismael

    in reply to: Caption of Logo slider below the Logo #1492026

    Hi,

    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,
    Ismael

    in reply to: Multilingual cookie policy with Loco Translate #1492025

    Hey 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,
    Ismael

    in reply to: form: visualisation difference #1492024

    Hey 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,
    Ismael

    in reply to: Tranlatepress change logo by language in header #1492023

    Hi,

    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,
    Ismael

    in reply to: Follow up, Post Link #1491821 #1492022

    Hey 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:

    Screenshot-2025-12-02-at-2-42-48-PM

    Best regards,
    Ismael

    in reply to: Easy Slider title and caption below images #1492021

    Hi,

    Great! Glad you figured it out. Feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Enfold Cild Theme Teplate #1492017

    Hey 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,
    Ismael

    in reply to: Fade by scroll #1491970

    Hey 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,
    Ismael

    Hi,

    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:

    Screenshot-2025-12-01-at-2-30-24-PM

    Best regards,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Caption of Logo slider below the Logo #1491967

    Hey 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,
    Ismael

    in reply to: Tranlatepress change logo by language in header #1491966

    Hey 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,
    Ismael

    in reply to: Editing page not possible #1491918

    Hi,

    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.

    Screenshot-2025-11-28-at-2-44-14-PM

    In the meantime, we recommend downgrading to PHP 8.3 and make sure that the WP_MEMORY_LIMIT is increased to 256M.

    Best regards,
    Ismael

    Hi,

    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):

    Screenshot-2025-11-28-at-2-25-50-PM

    (Phone)

    Screenshot-2025-11-28-at-2-26-12-PM

    Best regards,
    Ismael

    in reply to: page update fails after high number of elements #1491914

    Hi,

    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 = 5000
    

    For additional assistance, we recommend reaching out to your hosting provider and ask them to adjust the settings if necessary.

    Best regards,
    Ismael

    in reply to: Load only used elements #1491913

    Hi,

    Let us know in a different thread if you have more questions. Thank you for your patience.

    Best regards,
    Ismael

Viewing 30 posts - 91 through 120 (of 67,014 total)