Forum Replies Created

Viewing 30 posts - 1 through 30 (of 66,939 total)
  • Author
    Posts
  • in reply to: lien vers une diapositive spécifique d’un slider #1492157

    Hi,

    Thank you for the update.

    The theme includes a plugin called LayerSlider and what you’re looking for should be possible with it. However, as mentioned above, this will require some modifications and custom scripts. If you want to proceed, you can check out the documentation.

    https://layerslider.com/documentation/#layerslider-api

    Best regards,
    Ismael

    in reply to: Arabic font Change #1492156

    Hi,

    Thank you for the update.

    We adjusted the code so that the Cairo font only loads on the Arabic version of the site.

    function av_load_google_fonts() {
         $locale = get_locale();
    
        if (strpos($locale, 'ar') === 0) {
            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');

    This is the updated css code:

    [lang="ar"],
    [lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, [lang="ar"] h4, [lang="ar"] h5, [lang="ar"] h6,
    [lang="ar"] p, [lang="ar"] span, [lang="ar"] li, [lang="ar"] a,
    [lang="ar"] input, [lang="ar"] textarea, [lang="ar"] button {
        font-family: 'Cairo', sans-serif;
    }

    Best regards,
    Ismael

    in reply to: Altering Images on Masonry Gallery #1492155

    Hi,

    Thank you for the update.

    The images in the masonry seem to be displaying in their original sizes now. Have you tried adjusting the width of the container so the images display the same as on the previous site?

    .page-id-1562 #section-width .container {
        max-width: 1350px;
    }
    

    Adjust the max-width value as necessary.

    Screenshot:

    Screenshot-2025-12-05-at-2-13-48-PM

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    We just tested the code again and it seems to be working as it should.

    Screenshot-2025-12-05-at-2-08-44-PM

    Have you tried removing this css code?

    #top #header.header-scrolled a {
        color: #ffffff !important;
    }
    

    Please provide a screenshot of the element that you’d like to change. You can use platforms like Savvyify, ImgBB, PostImages or Dropbox.

    Best regards,
    Ismael

    in reply to: Preview Changes, Edit Socket #1492153

    Hey collinsfgc2025,

    Thank you for the inquiry.

    You have to look for the View icon in the top right corner of the editor. Please check the screenshot below:

    Screenshot-2025-12-05-at-1-57-40-PM

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: Mobile Menue Links not working when double ID #1492151

    Hi,

    Glad to know that this has been resolved! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We can set a custom cookie to persist the info-box status across the entire site. Please locate the existing script block and replace it with the following code:

    <script>
    (function() {
    
        function setCookie(name, value, days) {
            var expires = "";
            if (days) {
                var date = new Date();
                date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
                expires = "; expires=" + date.toUTCString();
            }
            document.cookie = name + "=" + (value || "") + expires + "; path=/";
        }
    
        function getCookie(name) {
            var nameEQ = name + "=";
            var ca = document.cookie.split(';');
            for (var i = 0; i < ca.length; i++) {
                var c = ca[i];
                while (c.charAt(0) == ' ') c = c.substring(1, c.length);
                if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length);
            }
            return null;
        }
    
        var infoBox = document.getElementById('stickyInfoBox');
        var closeBtn = document.getElementById('closeInfoBox');
        var toggleBtn = document.getElementById('infoToggle');
    
        if (getCookie('av-infobox-closed') === '1') {
            infoBox.classList.add('hidden');
            toggleBtn.classList.add('visible');
        }
    
        // Close the info box
        closeBtn.addEventListener('click', function() {
            infoBox.classList.add('hidden');
            toggleBtn.classList.add('visible');
            setCookie('av-infobox-closed', '1', 30);
        });
    
        // Show the info box again
        toggleBtn.addEventListener('click', function() {
            infoBox.classList.remove('hidden');
            toggleBtn.classList.remove('visible');
            setCookie('av-infobox-closed', '0', 30);
        });
    
    })();
    </script>

    To add a DE version, replace the code with the version below and make sure to include both the existing style block and the updated script block.

    function add_sticky_info_box() {
        $locale = get_locale();
    
        if ( $locale === 'en_US' ) {
            $title      = "Important Information";
            $message    = "This is your information box! You can customize this message to display any content you'd like to share with your visitors.";
            $buttonText = "Learn More";
            $buttonLink = "/your-page-url";
        }
    
        elseif ( $locale === 'de_DE' ) {
            $title      = "DE Important Information";
            $message    = "DE This is your information box! You can customize this message to display any content you'd like to share with your visitors.";
            $buttonText = "DE Learn More";
            $buttonLink = "/your-page-url";
        }
    
        else {
            $title      = "Information";
            $message    = "Here is an information box.";
            $buttonText = "More";
            $buttonLink = "/";
        }
        ?>
    
        // style block here
    <div class="sticky-info-box" id="stickyInfoBox">
    <div class="sticky-info-box-header">
    <h3 class="sticky-info-box-title"><?php echo esc_html($title); ?></h3>
    <button class="sticky-info-box-close" id="closeInfoBox" aria-label="Close">×</button></div>
    <div class="sticky-info-box-message">
    
    <?php echo esc_html($message); ?>
    
    </div>
    <a href="<?php echo esc_url($buttonLink); ?>" class="sticky-info-box-button">
                <?php echo esc_html($buttonText); ?>
            </a></div>
    <button class="sticky-info-toggle" id="infoToggle" aria-label="Show information">ℹ</button>
    
        // script block here
    <?php
    }

    Best regards,
    Ismael

    in reply to: Icon Title on Hover #1492149

    Hi,

    Thank you for the inquiry.

    Try to add this code in the functions.php file to remove the title element inside the svg icons:

    add_action( 'wp_footer', function() { ?>
        <script>
            jQuery(function ($) {
                $('svg title').remove();
            });
        </script>
    <?php }, 999 );

    Best regards,
    Ismael

    Hey SpiderLabz,

    Thank you for the inquiry.

    Did you also update the theme to version 7.1.3? Please make sure the theme is updated to the latest version, create a test page and then provide the site details in the private field. We’ll take a look.

    Best regards,
    Ismael

    in reply to: Color section not showing color or image background. #1492104
    in reply to: Altering Images on Masonry Gallery #1492103

    Hi,

    Thank you for the update.

    In the Masonry edit panel, go to Styling > Masonry Settings, then locate the Image Size settings. Set this to the first option No Scaling to display the image at its original size. Please let us know the result.

    Best regards,
    Ismael

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

    Hi,

    Glad we could be of help! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Having trouble installing the theme ENFOLD #1492100

    Hey colince742,

    Thank you for the inquiry.

    Looks like there are many PHP errors, which may be related to the currently installed version. Please make sure that PHP is upgraded to version 8.0 or later. You can also hide the warnings by adding the following code to your wp-config.php file.

    define('WP_DEBUG', false);
    define('WP_DEBUG_DISPLAY', false);
    define('WP_DEBUG_LOG', false);
    

    If you need help upgrading PHP, you can contact your hosting provider for assistance. Please let us know the result.

    Best regards,
    Ismael

    in reply to: Bullets not showing up #1492099

    Hey navindesigns,

    Thank you for the inquiry.

    Try to add this css code to override the default style:

    ul {
        list-style: disc outside;
        margin-left: 7px;
    }

    Screenshot-2025-12-04-at-2-33-21-PM

    Best regards,
    Ismael

    in reply to: Altering Images on Masonry Gallery #1492098

    Hey condonp,

    Thank you for the inquiry.

    You can use this css code to apply borders to the masonry images:

    .av-fixed-size .av-masonry-image-container, .av-fixed-size .av-masonry-outerimage-container {
        border: 1px solid #000000;
    }
    
    .av-fixed-size .av-masonry-image-container .av-masonry-image-container, .av-fixed-size .av-masonry-outerimage-container .av-masonry-image-container {
        border: 10px solid #ffffff;
    }

    Result:

    Screenshot-2025-12-04-at-2-30-15-PM

    Best regards,
    Ismael

    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

Viewing 30 posts - 1 through 30 (of 66,939 total)