Okay
  Public Ticket #2571091
Any way to have VIDEO thumbnails and STILL portfolio hero sections?
Closed

Comments

  • Xavier started the conversation

    My client would like the option to show a video hero as the thumbnail in the showcase / mainpage, but then when opening the portolio to have the still fallback image (instead of the video) in the hero section.

    Is that possible?

  •   Xavier replied privately
  •  1,802
    Support replied

    Hi Xavier, yes it is possible with a small custom work

    try opening /sections/hero_image_section.php and remove or comment this bit

    <?php if( $munio_hero_properties->video ){ ?>
    <div class="hero-video-wrapper">
    <video loop muted class="bgvid">
    <?php if( !empty( $munio_hero_properties->video_mp4 ) ){ ?>
    <source src="<?php echo esc_url( $munio_hero_properties->video_mp4 ); ?>" type="video/mp4">
    <?php } ?>
    <?php if( !empty( $munio_hero_properties->video_webm ) ){ ?>
    <source src="<?php echo esc_url( $munio_hero_properties->video_webm ); ?>" type="video/webm">
    <?php } ?>
    </video>
    </div>
    <?php } ?>

    so lines 16 to 27


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Xavier replied

    That did it, thank you!