Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Alex

    (@ahoereth)

    Your theme adds a div which overlays the featured videos – the click event never reaches the video itself because the .mask element blocks them:

    <span class="thumbnail-post">
        <div class="featured-video-plus [...]">[...]</div>
        <div class="mask"><div class="icon"></div></div>
    </span>

    To work around that you either

    • need to remove the .mask element using jQuery:
      jQuery(document).ready(function($) { $('.mask').remove(); });
    • or disable pointer events for them:
      .mask { pointer-events: none }

    This is nothing to be fixed by the plugin because its very theme specific.
    Best regards, Alex

    Thread Starter redzacii

    (@redzacii)

    Hi Alex,

    the second solution works perfectly ?? Thanks a lot!!!

    Best,
    Kevin

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can't press play Featured Video’ is closed to new replies.