Forum Replies Created

Viewing 30 posts - 4,711 through 4,740 (of 67,479 total)
  • Author
    Posts
  • in reply to: post navigation #1462132

    Hi,

    Great! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Duplicate ID #1462131

    Hi,

    Duplicate id – the same ID is used on more than one element.
    id=aviaPrivacyGoogleWebfontsDisabled id=aviaPrivacyGoogleWebfontsDisabled id=aviaPrivacyGoogleMapsDisabled id=aviaPrivacyGoogleMapsDisabled id=aviaPrivacyVideoEmbedsDisabled

    UPDATE: Tabs 3 and 4 of the privacy modal popup window contain the same privacy toggles. Did you configure this?

    Best regards,
    Ismael

    in reply to: Duplicate ID #1462130

    Hey Advantage09,

    Thank you for the inquiry.

    Did you manually add a privacy toggle inside a tab section? This causes duplicate IDs for these elements:

    id=aviaPrivacyGoogleWebfontsDisabled id=aviaPrivacyGoogleWebfontsDisabled id=aviaPrivacyGoogleMapsDisabled id=aviaPrivacyGoogleMapsDisabled id=aviaPrivacyVideoEmbedsDisabled
    

    Although it is not necessary, if you want to remove the role attributes from certain elements, you can use this script:

    function ava_remove_roles_script()
    {
        ?>
        <script>
            (function ($)
            {
                function g()
                {
                    $('#header').removeAttr('role');
                    $('.main_menu').removeAttr('role');
                }
    
                $(document).ready(function ()
                {
                    g();
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_remove_roles_script');
    

    Best regards,
    Ismael

    in reply to: 360°-Panorama (KRPano)? #1462129

    Hey 360buddy,

    Thank you for the inquiry.

    We are not familiar with it but we’ve found a few plugins that might help. Please check the links below:

    // https://wordpress.org/plugins/panorama/
    // https://wordpress.org/plugins/search/panorama+360/

    Best regards,
    Ismael

    in reply to: position .avia-caption-content in slide-show modul #1462128

    Hey strumpumpel,

    Thank you for the inquiry.

    I would like that the .avia-caption-content below the .avia-caption-title.

    This is the default position of the title and caption, but it was altered using this css code:

    #seowie .caption_framed .slideshow_caption .avia-caption-title {
        top: 105px;
        position: relative;
    }

    Please remove the css code, then temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Link Handling – Portfolio Grid #1462127

    Hey woogie07,

    Thank you for the inquiry.

    If you don’t want the portfolio item to link to anywhere, you can set the Additional Portfolio Settings > Link portfolio item to external URL field to a hashtag (#). Let us know if this works for you.

    Best regards,
    Ismael

    Hi,

    Great! Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: How to remove dropdown box (in background)? #1462125

    Hey Jak73,

    Thank you for the inquiry.

    1.) Please add this css code to remove the background of the language switcher.

    .av-main-nav ul li.menu-item-language, .av-main-nav ul li.menu-item-language a, .av-main-nav .menu-item-language .sub-menu {
        background: transparent !important;
        box-shadow: none;
        border: none;
    }
    

    2.) To reduce the space between the language switcher and the active language, please include this css rule:

    .av-main-nav .menu-item-language .sub-menu {
        margin-top: -20px;
    }
    

    Best regards,
    Ismael

    in reply to: show marker in certain pictures in portfolio grid #1462092

    Hey fabienneRedUmb,

    Thank you for the inquiry.

    Yes, you have to override the shortcode file in your child theme. Please check the documentation below:

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    You will find the portfolio entry container around line 966 of the ]enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php file.

    $post_class = "post-entry post-entry-{$the_id} grid-entry-overview grid-loop-{$post_loop_count} grid-parity-{$parity} {$last}";
    

    Best regards,
    Ismael

    in reply to: Trouble with accepting purchase code by WordPress #1462091

    Hey Aleksandra,

    Thank you for the inquiry.

    Did you follow the instructions in the documentation below? Please try to generate another token, and make sure that the required permissions are checked.

    // https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token

    Best regards,
    Ismael

    in reply to: Email not sent #1462090

    Hi,

    Great! Glad to know that this has been resolved. Please don’t hesitate to reach out if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Breadcrumbs #1462088

    Hi,

    Alright! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: videos werden nicht angezeigt #1462087

    Hi,

    Thank you for the update.

    We may need to access the site to further check the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: post navigation #1462086

    Hey Advantage09,

    Thank you for the inquiry.

    You can add this css code to hide the featured image in the post nav container:

    .avia-post-nav .entry-info span.entry-image {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Filter by price #1462060

    Hey Aubin,

    Thank you for the inquiry.

    Where do you expect to see the widget? Please note that the filter widget will only display on the base shop page and the default product archive or category pages. The widget will not display on a custom product page or post.

    Best regards,
    Ismael

    in reply to: Pauseable video in Header section #1462059

    Hey reqonsult,

    Thank you for the inquiry.

    You can use this css code to disable the click overlay or the invisible play/pause control.

    #top .av-video-slide.av-video-playing {
        pointer-events: none;
    }

    Best regards,
    Ismael

    in reply to: Reduction of the font size on mobile devices #1462058

    Hey reqonsult,

    Thank you for the inquiry.

    Are you using the Fullscreen Slider element? Try to edit one of the slides, go to the Styling > Font Sizes panel and adjust the Caption Content Font Size and the Caption Title Font Size settings. It’s possible to set a custom font size for different screen sizes.

    Best regards,
    Ismael

    in reply to: videos werden nicht angezeigt #1462057

    Hey Lambert,

    Thank you for the inquiry.

    Looks like the page is set to use a custom template. Please edit the page and check the Page Attributes > Template settings. Make sure that it is set to Default Template.

    Best regards,
    Ismael

    in reply to: Page Builder with Event Calendar #1462056

    Hi,

    Thank you for the inquiry.

    The name of the event post type is tribe_events, so you have to use the following filter.

    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
      $supported_post_types[] = 'tribe_events';
      return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    

    However, please note that not all event elements are supported, and activating the ALB might limit the functionality of the event pages.

    Best regards,
    Ismael

    in reply to: full width video dont work with consent plugin #1461899

    Hey snitt,

    Thank you for the inquiry.

    The background video will only load once the user has accepted the cookies because it’s a YouTube video, which stores cookies locally and requires consent. Since you’re using a custom cookie and privacy plugin, we are not sure if there is an option that allows YouTube videos to play without user consent. Please contact the plugin author for more info.

    Best regards,
    Ismael

    in reply to: Breadcrumbs #1461898

    Hi,

    Thank you for the update.

    In the single post page, the default breadcrumb structure is: Home > Blog Page > First Category > Post, which is why you’re seeing the “News” category in the breadcrumb. If you want to remove the category and include the archive date instead, you can use the following code in place of the previous filter:

    function avia_breadcrumbs_trail_mod($trail) {
        global $post;
    
        if ( is_singular( 'post' ) ) {
            $end = $trail['trail_end'];
            unset($trail['trail_end']);
            unset($trail[2]);
    
            $post_month = get_the_date('F Y', $post); 
            $trail[] = '<a href="' . get_month_link(get_post_time('Y'), get_post_time('m')) . '" title="' . esc_attr($post_month) . '" rel="">' . $post_month . '</a>';
    
            $post_year = get_the_date('Y', $post);
            $trail[] = '<a href="' . get_year_link($post_year) . '" title="' . esc_attr($post_year) . '" rel="">' . $post_year . '</a>';
    
            $trail[] = $end;
        }
    
        return $trail;
    }
    add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);

    Best regards,
    Ismael

    in reply to: How to remove the slug from the homepage #1461897

    Hi,

    We will definitely forward the site on our channel. Thanks for sharing!

    Best regards,
    Ismael

    in reply to: Cookie information for an accessible website #1461895

    Hi,

    Alright! Glad to know that this has been resolved. If you have more questions, please don’t hesitate to open another thread.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    We just noticed that this filter is incorrect:

    /**
     * previous and next opposite order posts & reverse
     */
    add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3);
    function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries)
    {
        $settings['same_category'] = true;
        return $entries;
    }

    To keep the navigation in the same category, you have to replace it with this code instead:

    add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings)
    {
        $settings['same_category'] = true;
        return $settings;
    }
    

    Also, make sure that the posts belong to a single category; having multiple categories will not work.

    Best regards,
    Ismael

    in reply to: Top banners gone after Enfold 6.0 #1461893

    Hi,

    Thank you for the update.

    The update should fix the banner, but we are not sure about the tabs. Try adding this css code to display the initial tab on load.

    #top div div.product .woocommerce-tabs #tab-description {
        display: block;
    }

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: YouTube background video not looping #1461891

    Hi,

    Thank you for the update.

    After further checking, we confirmed that the background videos in the color section are already set to loop, so you don’t need to add the parameter. The video loops automatically when we tested it on our end.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We checked the elements in the Advanced Layout Builder but didn’t see anything unusual in the setup. Did you add any custom scripts to the site? We are unable to check the modifications because the Appearance > Theme File Editor is not accessible. Please enable the editor and try temporarily disabling all plugins. Let us know if the issue persists after the plugins are disabled.

    Best regards,
    Ismael

    Hi,

    Sorry to hear about that. Unfortunately, implementing a dedicated option for this shortcode or toggle will require a significant amount of modification, which is beyond the scope of our support. If it is crucial for you to have this functionality implemented, you have the option to hire a freelancer who can assist you with the customization. You can find freelancers who specialize in theme customization by visiting our customization page.

    If you have any other questions or require further assistance, please feel free to let us know.

    Best regards,
    Ismael

    in reply to: Animated Numbers Styling #1461888

    Hi,

    Thank you for the update.

    If you need to adjust the default style of the animated numbers, you can add the following modification in the Quick CSS field and adjust it as necessary.

    #top .avia-animated-number {
        border: 1px solid red;
        padding: 10px 20px;
        background: blue;
    }

    Best regards,
    Ismael

Viewing 30 posts - 4,711 through 4,740 (of 67,479 total)