Forum Replies Created

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

    Hi,

    Thank you for the update.

    Earlier, we asked if you could clone the site to a staging environment and also requested the FTP details. How did you disable the persistent object cache in cPanel? We may need to edit the wp-config.php file to test this further. Please provide the FTP details so we can access and edit the files if necessary.

    We tried to change the PHP version without the redis and memcached extensions, but it’s not possible to adjust it for the current domain because PHP is handled by PHP-FPM. You’ll need to contact your hosting provider to disable this option and allow the domain to use the system PHP version. (see private field)

    For additional assistance, please contact your hosting provider.

    Best regards,
    Ismael

    in reply to: Enfold theme options non responsive #1480967

    Hi,

    No, it shouldn’t have a negative effect on the site. Once you’re done editing, you can simply re-enable the compression settings. Regarding the other page, the sections still have alternating background colors. Could you provide a screenshot of the issue?

    Best regards,
    Ismael

    Hey sitadi,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the layout that you’re trying to create, and a link to a test page? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Multiple Taxonomies in Masonry Element #1480965

    Hey Daniel,

    Thank you for the inquiry.

    That’s not possible by default and would require significant modifications. You may need to look for a plugin or modify the sort_buttons function in the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php file. For additional assistance, you can also contact Codeable.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hi,

    Please clone the site to a staging environment, then provide the site details in the private field so we can check the error.

    Best regards,
    Ismael

    Hey simog72,

    Thank you for the inquiry.

    This option is not available by default, but you can modify the sort_buttons function in enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php.

    Please note that this type of modification is beyond the scope of our support. For additional assistance, you may consider hiring a freelance developer or contact Codeable.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Masonry Gallery load fade in #1480923

    Hi,

    We removed the other css and keep the following code to override the default avia_masonry_show transition.

    @-webkit-keyframes avia_masonry_show {
      0% {
        opacity: 0.1;
      }
    
      100% {
        opacity: 1;
      }
    }
    
    @keyframes avia_masonry_show {
      0% {
        opacity: 0.1;
      }
    
      100% {
        opacity: 1;
      }
    }

    Please make sure to purge the cache before testing.

    Best regards,
    Ismael

    in reply to: Custom Post Type builder #1480917

    Hi,

    Thank you for the update.

    We can’t reproduce the same layout issue on our end. Please check the screenshot. Are you using Safari? Try testing it on different browsers. You may need to contact the plugin developer for additional assistance regarding the Draw Attention plugin.

    Best regards,
    Ismael

    in reply to: “Invalid form for recaptcha sent” error #1480916

    Hi,

    Thank you for the info.

    It also works when minification is enabled without merging. We recommend disabling the default file compression settings completely and use the Page Optimization settings from the LiteSpeed Cache plugin instead.

    Best regards,
    Ismael

    Hi,

    You can also try this hook:

    add_action( 'template_redirect', function() {
        global $avia_config;
    
        if ( is_admin() ) {
            return;
        }
    
        if ( is_page(27) ) {
            $avia_config['box_class'] = 'boxed';
        } else {
            $avia_config['box_class'] = 'stretched';
        }
    });

    Best regards,
    Ismael

    in reply to: Masonry Gallery load fade in #1480911

    Hi,

    Where can we check the masonry element? Please provide the site URL in the private field. Adding the new avia_masonry_show animation should override the original css with the -webkit-transform: translate(…) property and allow the masonry items to fade in without the flip animation.

    Best regards,
    Ismael

    in reply to: Custom Post Type builder #1480910

    Hi,

    We disabled the Classic Editor and the Draw Attention plugin. You don’t need the Classic Editor because this setting can already be configured in Enfold > Theme Options > Select Your Editor. The second plugin generates a script error, so we temporarily disabled it.

    We created a new Commune post and switched to the Advanced Layout Builder. Please check the private field.

    Also, make sure that the query parameter &classic-editor=1 is not included in the URL. Try accessing the Commune posts directly from the dashboard instead of using the link above.

    View post on imgur.com

    Best regards,
    Ismael

Viewing 30 posts - 691 through 720 (of 66,027 total)