Jump to content

Recommended Posts

Posted

Hi,

in order to play a Video I have to click on the video and after that I have to click play video... is it possible to just click on the video and play it?

 

Best Regards

Loaky

Posted

Hi, have you noticed the play buttons that overlay the poster?

 

Try hovering the mouse over a poster. Thanks !

Posted

yes, after hovering for 2 seconds a play button appears but that is too slow.. right click and play is faster but annoying.

Posted

It will be less than one second for the next release. Thanks.

  • Like 1
Posted

ok, thank you very much.

Posted

I changed it myself... it is not perfect but it works.

 

I open list.js and changed overlayPlayButton: !1 to overlayPlayButton: !0  so instead of the "more menu" the play button appears.

And after that I changed the CSS for the playbutton in card.css so it will take up the entire thumb.  So now I can click on the thumbs and the videos start playing. :-)

  • Like 1
Happy2Play
Posted

I changed it myself... it is not perfect but it works.

 

I open list.js and changed overlayPlayButton: !1 to overlayPlayButton: !0  so instead of the "more menu" the play button appears.

And after that I changed the CSS for the playbutton in card.css so it will take up the entire thumb.  So now I can click on the thumbs and the videos start playing. :-)

 

You will have to do this with every server update as these files get replaced.

 

You are better off finding a custom css route that won't be affected by updates.

Posted

well it is a workaround... It would be easier if it would be implemented in a proper way.

Happy2Play
Posted

well it is a workaround... It would be easier if it would be implemented in a proper way.

Well there are more posts out there disliking this feature all together. I myself just removed the button via custom css as I can't stand it.
  • Like 1
Guest asrequested
Posted (edited)

Well there are more posts out there disliking this feature all together. I myself just removed the button via custom css as I can't stand it.

Tell me how to do that. The thing is really annoying me. I click play by accident, then when I click the back arrow, it keeps playing grrrrr.

 

How do I get rid of it?

 

Sorry, I shouldn't hijack the thread :)

Edited by Doofus
  • Like 1
Happy2Play
Posted

Tell me how to do that. The thing is really annying me. I click play by accident, then when I click the back arrow, it keeps playing grrrrr.

 

How do I get rid of it?

 

Sorry, I shouldn't hijack the thread :)

OT: Here you go

/*Remove Play Indicator*/
.cardOverlayFab-primary {display: none !important}

 

  • Like 7
  • Thanks 1
Guest asrequested
Posted

Thanks happy. I'll mess with that, tonight.

arrbee99
Posted

Don't suppose there's any way to turn the single click into a double one ?

Posted

Don't suppose there's any way to turn the single click into a double one ?

 

no that would only be possible if the single click does something like selecting the Video. If 1 click gets you to another page it is impossible to know that you clicked 2 times.

  • Like 1
  • 4 months later...
Posted

 

OT: Here you go

/*Remove Play Indicator*/
.cardOverlayFab-primary {display: none !important}

 

any chance we could get this also for the episode list view ?

Happy2Play
Posted

any chance we could get this also for the episode list view ?

 

What exactly are you looking for?

Posted (edited)

whats written above, removing the play "indicator" from the episode list view ("season page")

 

post-143-0-14484400-1540894818_thumb.png

Edited by daedalus
Happy2Play
Posted

whats written above, removing the play "indicator" from the episode list view ("season page")

 

attachicon.gifScreenshot (2).png

 

Something like this

#childrenContent i {display: none;}
Posted

this also removes the star indicator for rating and all the icons on the far right

post-143-0-71571900-1540895790_thumb.png

post-143-0-56987200-1540895795_thumb.png

Happy2Play
Posted

this also removes the star indicator for rating and all the icons on the far right

attachicon.gif2.PNG

attachicon.gif1.PNG

 

Here you go

/*Remove Play Icon*/
#childrenContent .listItemImageButton-icon {display:none; }

Note this does not prevent playing when clicking on image.

  • Like 1
Posted

thanks better than nothing, helps a lot

 

to show this only on hover would be better than seeing it always on every item

Happy2Play
Posted

thanks better than nothing, helps a lot

 

to show this only on hover would be better than seeing it always on every item

 

:) Okay something like this.

/*Display play button on hover for Season list items*/
#childrenContent .listItemImageButton-icon {display:none; }
#childrenContent div.listItemImage.listItemImage-large.itemAction.lazy:hover .listItemImageButton-icon {display:flex; }
  • Like 1
  • Thanks 1
Posted

:o  great work, thanks again :wub:

  • 5 months later...
georgeemby
Posted

I changed it myself... it is not perfect but it works.

 

I open list.js and changed overlayPlayButton: !1 to overlayPlayButton: !0  so instead of the "more menu" the play button appears.

And after that I changed the CSS for the playbutton in card.css so it will take up the entire thumb.  So now I can click on the thumbs and the videos start playing. :-)

 

Any idea anyone how to make this work on iOS?

It works on Windows browser but no joy on iOS (app & browser) - I assume because there is no "hover" action.

With my limited knowledge I guess it should work if the overlay simply stays there on top of thumbnail - without any "hover" needed (?)

Thanks

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...