video playback controls only visible on hover
video playback controls only visible on hover
video playback controls only visible on hover
As @The-Coder-Who-Knew-Too-Little points out in his comment on the question, the video URLs are referencing a localhost domain. It’s not just the videos, though – the logo and font URLs are affected too. It looks like some URLs weren’t updated correctly in the process of moving from the local testing environment to the live environment. … Read more
videojs – No compatible source was found for this media in wordpress app
I am sorry I haven’t realised I made a compress. Actually right now I found a solution. It was in bad server where I hosted a video. As I tried to use jwplayer for hosting, it works absolutely perfect. 🙂
There is only one video file on your page: http://popplekharlamova.com/wp-content/uploads/2016/09/PK_VIDEO.mp4. It is being loaded on all browsers. It’s hidden in this CSS-block as a background-image: <style id=”thb-app-inline-css” type=”text/css”> .page-id-282 #wrapper div[role=”main”] {background-color: !important;background-image:url(http://popplekharlamova.com/wp-content/uploads/2016/09/PK_VIDEO.mp4) !important;background-repeat: !important;background-attachment: !important;background-position: !important;background-size: !important;}.footer {background-color:#d60000 !important;background-image:url(http://popplekharlamova.com/wp-content/uploads/2017/05/BACK.jpg) </style> Delete it from there and you will be fine if you don’t have the … Read more
Nothing to do with WordPress, but the line is applied via CSS on .qt-caption::after In your scss file, _typography.scss look for: .qt-caption { padding: 0.33em 0 0.7em 0; margin: 0 0 0.5em 0; position: relative; &::after { display: block; position: absolute; width: 100%; height: 2px; content: ” “; background: rgba(150,150,150,0.3); bottom: 0; } } And … Read more
Try to place this in your style.css embed, iframe, object, video { margin-bottom: 1.6em; max-width: 100%; vertical-align: middle; }
Add this line where you want to display the video: <iframe width=”604″ height=”453″ src=”http://www.youtube.com/embed/your_video_id?feature=oembed” frameborder=”0″ allowfullscreen></iframe> replacing “your_video_id” with your id (find it in your youtube account).
HTML 5 <video width=”640″ height=”360″ src=”https://wordpress.stackexchange.com/wp-content/uploads/2012/04/my_video.mp4″ autobuffer> <div class=”fallback”> <p>You must have an HTML5 capable browser.</p> </div> </video> For Flash Check out JW Player
Uploaded images, video’s etc. are stored as posts with the type “attachment”; use get_posts( ) with the right parameters. Try this; the code loops trough all attachments and displays them: $args = array( ‘post_type’ => ‘attachment’, ‘numberposts’ => -1, ‘post_status’ => null, ‘post_parent’ => null, // any parent ‘post_mime_type’ => ‘YOUR-POST-MIME-TYPE’ ); $attachments = get_posts( … Read more