Forum Replies Created

Viewing 30 posts - 4,831 through 4,860 (of 67,591 total)
  • Author
    Posts
  • 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

    Hi,

    Thank you for the info.

    The changes will be included in the next patch according to @Guenter.

    Best regards,
    Ismael

    in reply to: (Really) slow website with Enfold 6.0 #1461819
    in reply to: Save Entry as Template not working #1461817

    Hi,

    Thank you for the update.

    The templates option still works correctly on our installation. What is the current version of the theme installed on your site? We tried checking it under Tools > Site Health > Info > Parent Theme, but the theme info has been altered and the version is missing. Please ensure that the theme is updated to version 6.0, and try temporarily disabling the cache plugin. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Animated Numbers Styling #1461816

    Hey envisageiam,

    Thank you for the inquiry.

    The Animated Numbers element doesn’t have this configuration by default, but you can place it inside a Column element. Then, configure the Column element’s Layout > Borders and Styling > Background settings as needed. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: YouTube background video not looping #1461815

    Hi,

    Thank you for the update.

    It looks like the video URL is invalid. Could you provide the video URL you’re using or post the login details in the private field so that we can test it?

    Best regards,
    Ismael

    in reply to: Sticky posts display on home page only #1461814

    Hi,

    Thank you for the update.

    Are you trying to suppress the sticky posts on the backend? Category is a type of taxonomy, so the changes above should affect the category pages. We may need to check the actual category page and access the dashboard to properly check the modification. Please provide the login details in the private field.

    Best regards,
    Ismael

    Hey Roberta,

    Thank you for the inquiry.

    We can see the issue on your site but on our local installation, the mp4 video is not automatically muted when we use the Video element. Please provide the login details for an admin account in the private field. We’ll try to check the issue further.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We don’t get the same result on our end using one of the theme demo (see screenshot below). However, looks like this is going to be patched on version 6.0.1 according to @Guenter.

    Query Monitor: https://1drv.ms/i/s!AjjTfXSRbKTvguMUSEUNg-tBr4-UKg?e=rjGqkO

    Best regards,
    Ismael

Viewing 30 posts - 4,831 through 4,860 (of 67,591 total)