Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #118845
    Myriam Bensimhon
    Participant

    Hi,
    When I try to integrate a URL of integration code youtube but with a different size (smaller), the theme always shows the same size of integration …

    How do I create smaller video sizes on my pages/post?

    thank you in advance

    #118852
    Mahesh
    Keymaster

    @myriam: For this you’ll need to create a child theme. You can find more on creating child theme HERE. Then in you child theme’s functions.php, add the following code:

    function catchresponsive_child_remove_fitvid(){
    	wp_dequeue_script( 'jquery-fitvids' );
    }
    add_action( 'wp_print_scripts', 'catchresponsive_child_remove_fitvid' );

    Then use the embeded youtube code and use custom size youtube videos.
    Let me know if any problem.

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘small frame youtube video integration code’ is closed to new replies.