Forum Replies Created

Viewing 30 posts - 151 through 180 (of 65,499 total)
  • Author
    Posts
  • in reply to: Disabling Fade Animations on Elements with Sliders #1481108

    Hey kevinraposo7,

    Thank you for the inquiry.

    Did you set the Slide Animation > Slideshow Transition to Slide (sideways/up/down)? If so, you can add this css code to disable the initial fade-in transition of the slider.

    #top .avia-slideshow-inner li {
      opacity: 1 !important;
    }

    This will not work if Fade is selected for the Slideshow Transition.

    Best regards,
    Ismael

    in reply to: Height of headlines in boxes #1481107

    Hi,

    Thank you for the update.

    We adjusted the Zeilen Einstellungen > Zeilenlayout > Vertikale Ausrichtung from Mitte to Oben. Please make sure to purge the cache before checking.

    Best regards,
    Ismael

    in reply to: Show burger menu to the left of the centered logo #1481106

    Hi,

    Thank you for the update.

    The menu is set to be below the logo, so this has be adjusted with css. To make sure that the search bar is still visible on mobile view and that the burger menu is correctly placed, please add this css code:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #header_main_alternate {
        display: block;
      }
    
      .responsive #top #header_main_alternate .av-main-nav .menu-item-avia-special {
        display: none !important;
      }
    
      .responsive #top #header .main_menu {
        width: auto !important;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Header visibility and transparency #1481105

    Hi,

    Thanks for sharing @spooniverse!

    Best regards,
    Ismael

    Hi,

    We cloned your site to our local installation, and the contact form with reCAPTCHA worked correctly. This is definitely an issue related to the server configuration.

    Best regards,
    Ismael

    in reply to: table customization #1481054

    Hi,

    Glad it worked! Please feel free to open another thread if you have any more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Theme fonts not updating #1481053

    Hey neuropetvet,

    Thank you for the inquiry.

    Which font did you select? We tried logging in but the default login URL redirects to a 404 page. Please include the custom login URL in the private field.

    Best regards,
    Ismael

    in reply to: Background colour of masonry ALB element #1481050

    Hi,

    We’ll forward the issue to our channel. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: table customization #1481047

    Hi,

    Thank you for the update.

    You need to use the default Table element to see the default styling. The page contains a standard table added within a Text Block element. If you need to apply the alternating background color to this table, try adding this css code:

    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
        background: #f5f5f5;
    }

    Best regards,
    Ismael

    in reply to: Magazine type size is way too big. #1481046

    Hi,

    Thank you for the update.

    Please provide the WP and FTP details in the private field so we can apply the modification. If FTP is not available, make sure that the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    in reply to: Show burger menu to the left of the centered logo #1481045

    Hey sitadi,

    Thank you for the inquiry.

    You can add this css code to align the burger menu with the logo.

    .av-burger-menu-main.menu-item-avia-special {
        left: 0 !important;
        top: -70px;
    }

    Best regards,
    Ismael

    in reply to: Active class menu #1481044

    Hey bonsaimedia,

    Thank you for the inquiry.

    Both menu items are highlighted because the parent page of “service-support” is “kennis”, and its menu is also a child or submenu of “oplossingen”. You may need to unset the parent page of “service-support”, or add this css code:

    .parent-pageid-29 #header .current-page-ancestor > a > .avia-menu-text {
        border: none;
    }

    Best regards,
    Ismael

    in reply to: Parts of the webpage are not loading #1481043

    Hey rixi,

    Thank you for the inquiry.

    It’s possible that the sections below the gallery are not loading due to the number of images on the page. There are nearly 80 images in the gallery, and most of them are over 100KB in size, accumulating to almost 12MB in total, which is quite large. This could affect the script that triggers the animation for the elements. We recommend reducing the number of images or enabling the pagination or the “load more” button.

    Best regards,
    Ismael

    in reply to: Gallery with Custom Link but NO Fallback #1481042

    Hi,

    Thank you for the inquiry.

    Did you set the Gallery element’s Advanced > Link Settings > Image Link option to ‘Use custom link (fallback is image link)’? When the custom link field is not set, it should default to the image link and open a lightbox if enabled.

    Best regards,
    Ismael

    in reply to: Multiple Taxonomies in Masonry Element #1481041

    Hi,

    There are probably similar requests to this one, but as mentioned, it’s not possible without significant modifications to the sort_buttons function. You may need to use a plugin like FacetWP and a different masonry/grid element from another extension that is compatible with the filter/sorting plugin.

    Best regards,
    Ismael

    Hey consuegracta,

    Thank you for the inquiry.

    The Color Section containing the Magazine element has been hidden on mobile view and replaced with another Color Section containing the Blog Posts element. Please edit the Color Section and adjust the Advanced > Responsive > Element Visibility settings. You may also need to remove the other Color Section containing the Blog Posts element.

    Best regards,
    Ismael

    in reply to: Related entries thumbnails are stretched #1481039

    Hey mosaic,

    Thank you for the inquiry.

    Try to add this css code to adjust the aspect ratio of the thumbnails:

    #top .av-related-style-full .related_image_wrap, #top .av-related-style-full .related_image_wrap img, #top .av-related-style-full .related_image_wrap .related_posts_default_image {
        object-fit: cover;
    }

    Best regards,
    Ismael

    in reply to: Masonry Gallery load fade in #1481038

    Hi,

    It is actually working, but the number of images affects the animation and loading speed. You can see it more clearly on the test page we created. (see private field)

    Best regards,
    Ismael

    in reply to: Booking System shortcode #1481037

    Hi,

    Yes, the builder elements should be translatable, but this doesn’t seem to be working due to the error mentioned above. Fixing the error should allow you to translate the content of the Text Block and place different versions of the wpbs shortcode for different languages.

    Another option is to create a custom shortcode that wraps the wpbs shortcode and alters the id and language attribute based on the active WPML language. Please add this code in the functions.php file:

    function av_wpbs_wpml_cb() {
        $lang = apply_filters('wpml_current_language', null);
        $id = 1;
        $language = 'en';
    
        switch ($lang) {
            case 'nl':
                $id = 1;
                $language = 'nl';
                break;
            case 'fr':
                $id = 2;
                $language = 'fr';
                break;
            case 'de':
                $id = 3;
                $language = 'de';
                break;
            default:
                $id = 1;
                $language = 'en';
                break;
        }
    
        return do_shortcode('[wpbs id="' . esc_attr($id) . '" language="' . esc_attr($lang) . '" title="no" legend="yes" legend_position="side" display="1" year="0" month="0" start="1" dropdown="yes" jump="no" history="1" tooltip="1" highlighttoday="no" weeknumbers="no" show_first_available_date="no" form_id="1" form_position="bottom" auto_pending="yes" selection_type="multiple" selection_style="split" minimum_days="0" maximum_days="0" booking_start_day="0" booking_end_day="0" show_date_selection="no"]');
    }
    add_shortcode('av_wpbs_wpml', 'av_wpbs_wpml_cb');
    

    Instead of using the default shortcode, you can use this instead:

    [av_wpbs_wpml]
    

    Best regards,
    Ismael

    Hi,

    Yes, you can retrieve the label from a custom field.

    add_filter('avf_masonry_sort_first_label', 'avf_masonry_sort_first_label_mod', 10, 1);
    function avf_masonry_sort_first_label_mod($first_item_name) {
        $page_id = get_queried_object_id();
        $custom_label = get_post_meta($page_id, 'your_custom_field_name', true);
        $first_item_name = !empty($custom_label) ? $custom_label : 'Everything';
    
        return $first_item_name;
    }
    

    If you’re using ACF, you can do this:

    add_filter('avf_masonry_sort_first_label', 'avf_masonry_sort_first_label_mod', 10, 1);
    function avf_masonry_sort_first_label_mod($first_item_name) {
        $page_id = get_queried_object_id();
        $custom_label = get_field('custom_label', $page_id);
        $first_item_name = !empty($custom_label) ? $custom_label : 'Everything';
    
        return $first_item_name;
    }

    You can also extend the filters with native conditional functions or based on the masonry config.

    Best regards,
    Ismael

    in reply to: Shortcode Not Displaying #1481035

    Hey jonroot,

    Thank you for the inquiry.

    Where did you get the shortcode? Are you using a plugin? Please provide a link to the documentation or the page where you’re testing this so we can check the issue. We tried creating a test page with the shortcode, but it didn’t render correctly. (see private field)

    Best regards,
    Ismael

    Hi,

    We are not able to reproduce the issue again. Temporarily, we have disabled the Enfold > Performance > File Compression settings. Please install a cache plugin such as WP Rocket or WP Super Cache to improve site performance.

    Best regards,
    Ismael

    in reply to: Make Links NOT underline #1480976

    Hi,

    Thank you for the update. Try to use this css code instead;

    #top #footer-page .av_inherit_color a {
        text-decoration: none;
    }

    Best regards,
    Ismael

    in reply to: Changing the subtitels in the menue – Hello-Theme #1480975

    Hey Michael F,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the Menue-Bar, or post the site URL in the private field? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. We’ll check the site again once the info is available.

    Best regards,
    Ismael

    in reply to: Accordion disapears when another accordion is opened. #1480974

    Hi,

    Thank you for the info. We tried logging in, but we get this instead:

    Tijdelijk niet beschikbaar vanwege gepland onderhoud. Probeer het over enkele minuten nog een keer.

    Did you change the login URL?

    Best regards,
    Ismael

    in reply to: Magazine type size is way too big. #1480973

    Hey extraeyes,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to adjust the title tag of the magazine element:

    function avf_customize_heading_settings_mod( $args, $class, $extra_args ) {
        $args['heading'] = 'p';
        return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'avf_customize_heading_settings_mod', 10, 3 );
    

    Best regards,
    Ismael

    in reply to: Custom Post Type builder #1480972

    Hi,

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

    Best regards,
    Ismael

    in reply to: Masonry Gallery load fade in #1480971

    Hi,

    The images are fading in on our end. Did you install any lazy loading plugins? We recommend enabling pagination and try to reduce the number of images on the page. This should improve the loading speed.

    You can also add this css code to adjust the transition duration:

    .avia_desktop.avia_transform3d .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry,
    .avia_mobile.avia_transform3d:not(.avia-mobile-no-animations) .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    	animation: avia_masonry_show 1.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075);
    }

    Default is 0.8s.

    Best regards,
    Ismael

    in reply to: Add custom image size to enfold ALB elements #1480970

    Hey aledef,

    Thank you for the inquiry.

    You have to add the image size using the avf_modify_selectable_image_sizes filter.

    Example:

    function avf_modify_selectable_image_sizes_mod( array $selectableImgSize, array $imgSizes ) 
    {
        $selectableImgSize['medium_squared'] = 'Medium squared';
        return $selectableImgSize;
    }
    
    add_filter( 'avf_modify_selectable_image_sizes', 'avf_modify_selectable_image_sizes_mod', 10, 2 );
    

    Let us know if this works.

    Best regards,
    Ismael

    Hey Arsène,

    Thank you for the inquiry.

    You can use the avf_masonry_sort_first_label filter in the functions.php file to modify the first label of the sorting buttons:

    add_filter('avf_masonry_sort_first_label', 'avf_masonry_sort_first_label_mod', 10, 1);
    function new_portfolio_first_label( $first_item_name ) {
        $first_item_name = "Everything";
        return $first_item_name;
    }

    Let us know the result.

    Best regards,
    Ismael

Viewing 30 posts - 151 through 180 (of 65,499 total)