Forum Replies Created

Viewing 30 posts - 31 through 60 (of 66,126 total)
  • Author
    Posts
  • Hey onlineprodcontent,

    Thank you for the inquiry.

    The dynamic css will be generated during these instances: importing a demo, saving the theme options, updating a page or toggling the file compression settings. We recommend to toggle or temporarily disable the file compression upon deployment or resave the theme options to regenerate the required resources.

    Unfortunately, we can’t provide more details about the Docker setup because we’re not familiar with your compose settings. However, based on your description, each WordPress container is a clone of the original that shares the same volume, so it’s possible that a conflict occurs with the dynamic stylesheets. Are the WP containers accessible separately? Can you save the theme options for each container individually?

    Best regards,
    Ismael

    Hey ORC,

    Thank you for the inquiry.

    When the toggle has a color and the thumb or handle is positioned on the left, it means that it is enabled. If it’s gray and the handle is on the right, then it’s disabled.

    These toggles are disabled:

    View post on imgur.com

    These are enabled:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Open Sans ZIP #1486843

    Hey Alex,

    Thank you for the inquiry.

    The font seems to be displaying correctly on our end. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.

    If you need to adjust the letter spacing, try to add this css code:

    p {
        letter-spacing: 0.1em;
    }

    Result:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Tab section – Link a tab to a new page? #1486842

    Hey amyncuih,

    Thank you for the inquiry.

    There is no option for this by default, but you might be able to apply the link using a custom script. Unfortunately, this type of modification is beyond the scope of support.

    Please check the documentation below:

    https://www.w3schools.com/jsref/prop_loc_href.asp
    https://www.w3schools.com/jsref/met_element_addeventlistener.asp

    Best regards,
    Ismael

    in reply to: Featured image box #1486783

    Hi,

    Thank you for the update.

    We checked the site, but we haven’t yet figured out why the featured image option is missing. Please try to clone the site to a staging environment, then provide the WP and FTP login details so we can investigate further.

    Best regards,
    Ismael

    in reply to: Enfold Mobile Menu Will Not Update #1486782

    Hey Michael Canger,

    Thank you for the inquiry.

    The mobile menu seems to be displaying correctly on our end. Did you manage to resolve this? Please check the screenshot below.

    View post on imgur.com

    If the issue persists, please provide a screenshot using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: Shop pages and product page – Sidebar on left #1486781

    Hey whdsolutions,

    Thank you for the inquiry.

    You can add this code to the functions.php file to override the default layout of the shop page.

    add_action( 'init', 'avia_woocommerce_sidebar_pos_left_cb' );
    
    function avia_woocommerce_sidebar_pos_left_cb() {
        remove_filter( 'avf_sidebar_position', 'avia_woocommerce_sidebar_pos', 10 );
    
        function avia_woocommerce_sidebar_pos_left( $sidebar ) {
            if( is_product() ) {
                $sidebar = 'sidebar_left'; 
            }
            return $sidebar;
        }
    
        add_filter( 'avf_sidebar_position', 'avia_woocommerce_sidebar_pos_left', 10, 1 );
    }

    Let us know the result.

    Best regards,
    Ismael

    Hi,

    There is no option to sort the order of the categories and will require modifications that are beyond the scope of support. You may need to use a third party sorting plugin such as FacetWP, but it will require some template modifications.

    https://facetwp.com/

    For this type of customization, you can contact Codeable.

    https://kriesi.at/contact/customization

    Thank you for understanding.

    Best regards,
    Ismael

    in reply to: GA4 blocking #1486779

    Hey dburton77,

    Thank you for the inquiry.

    Yes, you have to put the tracking code in the Enfold > Google Services > Google Analytics > Google Measurement ID field. This is the only way the theme can detect if the tracking script is present on the site and allow the privacy cookies to control it.

    Best regards,
    Ismael

    in reply to: Hierarchy for portfolio entries #1486778

    Hi,

    Great! Glad to know that his has been resolved. Please don’t hesitate to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Advanced Builder Gray Screen #1486777

    Hi,

    Thank you for the update.

    Try to include this css code to remove the read more link with arrow.

    #top .bloglist-simple .read-more-link {
        display: none;
    }

    This should remove these elements.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Customize the Contact Form EMAIL #1486776

    Hi,

    i have 2 Elements to show side-by-side on the webpage front-end by changing their style width to 1/2.

    The reason the elements got split is that the empty line adds a br tag even on the frontend. The filter we provided above should remove those line breaks. Try to avoid placing the empty line element within rowed elements.

    Best regards,
    Ismael

    in reply to: Accordion element moving page #1486726

    Hey nebuddlho,

    Thank you for the inquiry.

    The document should scroll a bit after clicking on the toggle to focus on the content or the toggle heading, but not all the way to the top. We can’t reproduce the issue on our local installation, so it’s probably a conflict with a plugin or a custom modification. Please try deactivating the plugins temporarily, remove all custom modifications, purge the cache, and then test it again. Let us know the result.

    Best regards,
    Ismael

    in reply to: Hierarchy for portfolio entries #1486725

    Hi,

    Thank you for the update.

    We tried adding the code to the functions.php file around line 43, but encountered an error afterward. Would you mind posting the FTP details in the private field so we can investigate the issue further? Where exactly did you add the code?

    Best regards,
    Ismael

    Hey Blatze,

    Thank you for the inquiry.

    Have you tried using a different image element, maybe a slider (Fullwidth or Fullscreen), on mobile view instead of the Horizontal Gallery element? If you need the slider to resize based on the dimensions of the images, you can use the Fullwidth Easy Slider. Let us know the result.

    Best regards,
    Ismael

    Hi,

    Great! Glad to know this has been resolved. Please feel free to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold generating errors from WP SMTP Mail plugin #1486722

    Hi,

    Thank you for the info.

    Yes, unfortunately, the Enfold Numeric Captcha can be easily bypassed nowadays. We recommend activating Google reCAPTCHA or use a more advanced contact form plugin with security-related extensions, such as Contact Form 7, Gravity Forms, or WPForms. Please check the links below.

    https://wordpress.org/plugins/contact-form-7-honeypot/
    https://wpforms.com/docs/how-to-set-up-and-use-recaptcha-in-wpforms/

    We’ll keep the thread open.

    Best regards,
    Ismael

    in reply to: Flip box behavior all wrong #1486721

    Hey earthnutvt,

    Thank you for hte inquiry.

    Make sure the aspect ratio of the images is square. Remove any text from the image and use it instead as the Grid Item Title of the icon flipbox item. If that’s not possible, you can add the following css code to make sure the entire image is visible, but the image size may not stay proportional to the flipbox content.

    #top .avia-icon-grid-container .avia-icongrid-flipbox .avia-icongrid-wrapper .avia-icongrid-front.bg-img:before {
        background-size: contain;
    }
    

    Best regards,
    Ismael

    in reply to: Featured image box #1486720

    Hey cuccarini,

    Thank you for the inquiry.

    We can’t reproduce the issue with the featured image on our installation, so it’s possible that it’s caused by a plugin or a custom modification.

    Regarding the enfold-child notice or warning, you need to add the template declaration at the very top of the style.css file.

    /*
    Theme Name: Enfold
    Description: <strong>A superflexible and responsive Business Theme by Kriesi</strong> -
    Update notifications available on Facebook and via newsletter:
    - <a href='http://www.facebook.com/pages/Kriesi/333648177216'>Join the Facebook Group</a> - <a href='http://kriesi.at/newsletter'>Subscribe to our Newsletter</a>
    Version: 7.1.1
    Author: Kriesi
    Author URI: https://kriesi.at
    License: Themeforest Split Licence
    License URI: -
    Theme URI: kriesi.at/themes/enfold/
    Envato_ID: 4519990
    */
    
    /*
    * PLEASE DO NOT EDIT THIS FILE!
    *
    * This file is only in your themefolder for WordPress to recognize basic theme data like name and version
    * CSS Rules in this file will not be used by the theme.
    * Instead use the custom.css file that is located in your themes /css/ folder to add your styles.
    * You can copy a style rule from any of your css files and paste it in custom.css and
    * it will override the original style. If you just want to add small css snippets you might also
    * want to consider to add it to the designated CSS option field in your themes backend at: Theme Options->General Styling
    */
    
    

    Looks like you’ve made some css modifications and removed this part.

    Best regards,
    Ismael

    in reply to: Events calendar #1486719

    Hey lelouxwebdesign,

    Thank you for the inquiry.

    The container with the text “Er zijn geen aankomende evenementen” is generated by the Tribe Events Calendar plugin, not by the theme. You may need to contact the plugin developers to ask whether the notice or message container can be disabled.

    You can try this css code, but it might disable the notice container completely, which may not be necessary.

    .tribe-events-header__messages.tribe-events-c-messages {
        display: none !important;
    }
    

    Best regards,
    Ismael

    in reply to: Customize the Contact Form EMAIL #1486718

    Hi,

    Thank you for the update.

    We simply mean that it may not work on email clients that do not support html. They should render correctly on major email clients such as Gmail or Outlook. You can test this by using the following filter in the functions.php file, sending a message, and checking whether the heading and test strings render properly with the html formatting applied.

    add_filter('avf_form_message', 'avf_form_message_mod', 10, 3);
    function avf_form_message_mod($message, $new_post, $form_params) {
        $message = "<h1>Heading</h1><strong>TEST</strong>" . $message;
        return $message;
    }
    

    – but i have no idea what to put there.

    You can manipulate the content of $message as shown in the previous examples. You can inject html into specific parts of the text or prepend/append additional content to the message. Unfortunately, this level of customization is beyond the scope of our support. If you’re not sure how to proceed, consider hiring a freelance developer or contact Codeable.

    https://kriesi.at/contact/customization

    Regarding the issue with “Print in email only”, which email client are you testing this with? Try to add the following code to the functions.php file to remove al line breaks from the message:

    add_filter( 'avf_form_mail_form_field', 'avf_form_mail_form_field_mod', 10, 7 );
    function avf_form_mail_form_field_mod( $form_field, $new_post, $form_elements, $form_params, $element, $key, $field_value ) {
        $form_field = preg_replace( '#<br\s*/?>#i', '', $form_field );
        return $form_field;
    }
    

    Best regards,
    Ismael

    in reply to: Secondary menu #1486637

    Hi,

    Thank you for the update.

    Did you add the css code as is? You have to modify it a bit to target the appropriate element.

    Example:

    #top .av_header_transparency #header_meta {
        padding-top: 20px;
        border-bottom: 0;
    }
    
    #top #wrap_all .av_header_transparency .sub_menu > ul #menu-item-21 a {
        border: 2px solid #ffffff;
        border-radius: 2px;
        padding: 9px;
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Change blog in website made with a demo #1486635

    Hi,

    Thank you for the update.

    You can use this css code to hide the pagination on the main blog page:

    .blog .pagination-wrap.pagination-slider {
        display: none;
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Contact Form Lightbox #1486634

    Hey cnpetr,

    Thank you for the inquiry.

    There’s no built-in option for this by default, but you can try creating custom script to close the lightbox on form submission or when the submit button is clicked. For example:

    jQuery(document).on('av_resize_finished', function() {
        setTimeout(function() {
            if (jQuery('.ajaxresponse:visible').length) {
                // close popup here
                // open a new tab with the pdf
            }
        }, 300);
    });
    

    OR

    jQuery(document).ready(function($) {
        $('.avia_ajax_form input[type="submit"]').on('click', function(e) {
                // close popup here
                // open a new tab with the pdf
        });
    });
    

    Another alternative is to place the download form on its own page instead of using a lightbox.

    Best regards,
    Ismael

    in reply to: Button only half visible #1486633

    Hi,

    Thank you for the inquiry.

    You may need to apply a minimum height to the search wrapper or add more content below the search form.

    .search-wrapper {
        min-height: 400px;
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Favicon Not Appearing #1486632

    Hi,

    Thank you for the update.

    We couldn’t find the favicon tag on the page when we checked. It should look something like this:

     	<link rel="icon" href="http://site.com/favicon.svg" type="image/x-icon">
    

    If you can provide the login details in the private field, we’ll look into this further. Please make sure that Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    in reply to: Secondary menu #1486631

    Hey Antonio,

    Thank you for the inquiry.

    The button-style will get applied for the items in the main menu, not for secondary menu items. You may need to manually apply the styles to secondary menu items using the Quick CSS field.

    These are the css rules for the bordered menu item, which can be adjusted based on your requirements.

    #top .av-menu-button > a .avia-menu-text {
        border: 2px solid;
        border-radius: 2px;
    }
    
    #top .av-menu-button > a .avia-menu-text {
        padding: 9px;
    }

    Best regards,
    Ismael

    Hey steviger,

    Thank you for the inquiry.

    You may need to adjust the background-position and right padding a bit. Please try this css code:

    .av_searchform_wrapper {
        border: #2c7d95 1px solid!important;
        border-radius: 40px!important;
        background-image: url('https://www.steviger.nl/wp-content/uploads/2025/07/vergrootglas.webp');
        background-repeat: no-repeat;
        background-position: right 20px center;
        padding-right: 50px;
    }

    To disable the ajax response container, include this:

    #top .ajax_search_response {
        display: none !important;
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Enfold generating errors from WP SMTP Mail plugin #1486629

    Hi,

    Thank you for the info.

    If the autoresponder fields are empty, the contact form will not send an autoresponse when a message is submitted.

    Based on the debug event details, it seems that spam messages are being blocked as indicated in the following lines, which is probably a good thing.

    SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: Spam message rejected
    SMTP code: 554 Additional SMTP info: 5.7.1
    

    Are you experiencing any issues receiving messages from the contact form?

    Best regards,
    Ismael

    Hey aintzerga,

    Thank you for the inquiry.

    There’s no built-in option for this, but you can use the following css code to move the sorting items to the left of the portfolio grid.

    .av-portfolio-grid-sorting-container {
        display: flex;
        flex-direction: row;
    }
    
    .av-portfolio-grid-sorting-container .sort_width_container {
        max-width: 200px;
        flex: 0 0 auto;
        margin-right: 50px;
    }
    
    .av-portfolio-grid-sorting-container .grid-sort-container {
        flex: 1 1 auto;
    }
    
    #js_sort_items a {
        float: none;
        text-decoration: none;
        line-height: 2em;
    }
    
    #js_sort_items .text-sep {
        display: none;
    }

    Result:

    View post on imgur.com

    Best regards,
    Ismael

Viewing 30 posts - 31 through 60 (of 66,126 total)