Forum Replies Created

Viewing 30 posts - 1 through 30 (of 66,075 total)
  • Author
    Posts
  • 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

    in reply to: Hierarchy for portfolio entries #1486627

    Hi,

    Thank you for the info.

    We forgot to include support for page-attributes. The login account doesn’t have administrator rights, so we were not able access the theme file editor. Please try this again:

    add_action('init', function() {
        function avf_portfolio_cpt_args_mod( $args ) {
            $args['hierarchical'] = true;
            $args['supports'][] = 'page-attributes';
            return $args;
        }
        add_filter( 'avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod' );
    });

    You should see this after adding the filter:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Element Preview not showing in backend #1486582

    Hey Michael,

    Thank you for the inquiry.

    Please check if the Enfold > Layout Builder > Disable Advanced Layout Builder Preview In Backend is toggled.

    View post on imgur.com

    Let us know if the issue persists.

    Best regards,
    Ismael

    Hi,

    Great! Glad it worked. Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Blank space underneath header photo on mobile #1486579

    Hi,

    Try adding this css code:

    @media only screen and (max-width: 489px) {
    
      /* Add your Mobile Styles here */
      .home #full_slider_1, .home #full_slider_1 .avia-slideshow, .home #full_slider_1 .avia-slideshow-inner, .home #full_slider_1 .avia-slide-wrap {
        min-height: 158px;
        height: 158px !important;
      }
    }

    Result:

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Thank you for the screenshot. You could try applying a minimum height to the grid content to keep them aligned and eliminate the blank space.

    #top .grid-content {
        min-height: 124px;
    }

    Adjust the min-height value as needed.

    Best regards,
    Ismael

    in reply to: Submit button style change #1486569

    Hi,

    No problem! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    Hey leosaraceni,

    Thank you for the inquiry.

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings and the cache plugin to ensure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Let us know the result.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We encountered a 403 Forbidden Server Error when we checked the screenshot. Please try using platforms like Savvyify, Imgur, or Dropbox instead.

    Best regards,
    Ismael

    in reply to: Accordion Slider Responsive #1486565

    Hi,

    No problem! Please don’t hesitate to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Header Button #1486564

    Hey cnpetr,

    Thank you for the inquiry.

    Unfortunately, it’s not possible to move the widget inside the burger menu. You may need to create a dedicated menu item for the “Request a Consultation” button in the main menu, hide it on desktop, and display it only on mobile view using css.

    Best regards,
    Ismael

    in reply to: Hierarchy for portfolio entries #1486563

    Hey envisageiam,

    Thank you for the inquiry.

    You can use the avf_portfolio_cpt_args filter to make the portfolio post type hierarchical. You will also find the full post type registration in the enfold/includes/admin/register-portfolio.php file.

    function avf_portfolio_cpt_args_mod( $args ) {
        $args['hierarchical'] = true;
    
        return $args;
    }
    add_filter( 'avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod' );
    

    The default portfolio templates don’t support this out of the box, so you may need to customize them if needed.

    Best regards,
    Ismael

    in reply to: Customize the Contact Form EMAIL #1486561

    Hey syberknight-tb,

    Thank you for the inquiry.

    Unfortunately, there is no built-in option for this. You can try using the avf_form_message filter to modify the message content, but adding html may not work as expected.

    add_filter('avf_form_message', 'avf_form_message_mod', 10, 3);
    function avf_form_message_mod($message, $new_post, $form_params) {
        // do something with the message here
        return $message;
    }
    

    We recommend using advanced contact form plugins such as WPForms, Contact Form 7, or Gravity Forms.

    Best regards,
    Ismael

    in reply to: Pictures are not 4:3 they are 1:1 #1486560

    Hi,

    Sorry, the file editor is still not accessible.

    View post on imgur.com

    Try to edit the wp-config.php file as described in the article, and set DISALLOW_FILE_EDIT to false.

    define( 'DISALLOW_FILE_EDIT', false );
    

    We recommend reaching out to your hosting provider for additional assistance.

    Best regards,
    Ismael

    in reply to: Submit button style change #1486558

    Hi,

    Thank you for the info.

    We edited the Quick CSS field and adjusted the selector in the css rule. Please purge the cache before checking.

    #top #wrap_all .main_color .button, .main_color #submit, #top #wrap_all .contact-form :is([type=submit], button:not([type=reset]))
    

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Side nav within portfolio items on mobile device #1486495

    Hey tonyiatridis,

    Thanks for the inquiry.

    You can use this css code to display the post navigation on mobile view:

    @media only screen and (max-width: 789px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .avia-post-nav {
        display: block;
      }
    }

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache.

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Blog Feed and Portfolio Feed title size #1486494

    Hi,

    Great! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Container width #1486493

    Hey nebuddlho,

    Thank you for the inquiry.

    This is usually caused by an invalid width value, which causes it to fall back to the default width of 1010px. Could you please provide a screenshot of the General Layout > Dimensions > Maximum Container Width field, or share your login details in the private field? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    Hey GWS,

    Thank you for the inquiry.

    You can add this css code to move the donate button below the logo on mobile view.

    @media screen and (max-width: 768px) {
      .header_main {
        display: flex;
        flex-direction: column;
      }
    
      .widget_text {
        order: 2;
      }
    
      .av-logo-container {
        order: 1;
      }
    
      .header_main_alternate {
        order: 3;
      }
    
      #header_main #custom_html-22 {
        margin-top: 0 !important;
        padding: 10px 0;
       }
    }
    

    View post on imgur.com

    Best regards,
    Ismael

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

    Hi,

    Thanks for the update. You will find the option in the Contact Form element. To disable the autoresponder, just leave the Content > Backend > Autorespond field empty.

    Best regards,
    Ismael

    in reply to: Accordion Slider Responsive #1486488

    Hey cnpetr,

    Thank you for the inquiry.

    Have you tried reducing the number of items in the slider? Please create a test page and provide the site URL and login credentials in the private field so we can inspect the slider.

    Best regards,
    Ismael

    in reply to: Blog Feed and Portfolio Feed title size #1486442

    Hey Ivana,

    Thank you for the inquiry.

    Did you modify the H3 heading element in the Enfold > Advanced Styling panel? The blog and portfolio post titles inherit the styles from the advanced styling configuration. If you want to override it, you can try using this css code:

    #top #wrap_all .all_colors h3.grid-entry-title, #top #wrap_all .all_colors h3.slide-entry-title.entry-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
        display: block;
        margin-bottom: 0;
    }

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings to ensure that the changes take effect.

    Best regards,
    Ismael

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