Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #427612

    http://www.alfaweb.at/testv2/video-einzeln-start/

    ich habe auf einer Seite einem per AVIA LayoutB ein Vidoe eingefügt (erster Clip) und dann einfach in ein Textfeld einen Link kopiert (2ter Clip). Warum sehen die player unterschiedlich aus. Der zweite bieter die Möglichkeit des Vollbildmodus. Kann ich diese Funktion auch aktivieren wenn ich Videos wie gehabt über AVIA – Video einfügen – einbinde?

    #427877

    Hey alfaweb2!

    du hast zwei unterschiedliche Methoden gewählt, also erscheinen sie auch unterschiedlich :)
    Verwende diesen Code, um einen Play Button einzufügen:

    .mejs-overlay.mejs-layer.mejs-overlay-play {
       z-index: 10;
    }
    

    Gruß,
    Andy

    #427890

    Hey!

    To get the fullscreen button you’d need to change js/avia.js, line 533:

    features: ['playpause','progress','current','duration','tracks','volume'],
    

    To:

    features: ['playpause','progress','current','duration','tracks','volume','fullscreen'],
    

    Cheers!
    Josue

    #428027

    Thanks Josue, but this settings are lost after an update, or not???

    #428030

    And is there a way to use your Video Player (i like the look!!!!) when i`m streaming a video from vimeo pro?

    http://www.alfaweb.at/testv2/vimeo-pro/

    1) 1st clip is from vimeo
    2) 2nd clip is from my webspace

    can i use the 2nd player for playing both videos? thanks a lot! such a great theme and support!

    #428069

    Hey!

    No i don’t think that would be possible.

    Regarding the modification in avia.js you can use the following code in your child theme functions.php to enqueue a modified avia,js (child theme):

    function change_aviajs() {
       wp_dequeue_script( 'avia-default' );
       wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), 2, true );
    }
    add_action( 'wp_enqueue_scripts', 'change_aviajs', 100 );

    Cheers!
    Josue

    #428112
    This reply has been marked as private.
    #428418

    Hi,

    It’s weird, i’vet tested that code on my local install and it worked without issue. In any case, if you want us to debug it, we’d need FTP access.

    Regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.