stopspazzing
Forum Replies Created
-
Forum: Plugins
In reply to: [Loginizer] PHP7: Deprecated error/wp-content/plugins/loginizer/IPv6/BigInteger.php
———————————————————————————————-
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
———————————————————————————————-
267 | WARNING | Use of deprecated PHP4 style class constructor is not supported since PHP 7.
———————————————————————————————-Please fix so I can safely upgrade to php7 or ill just not support this plugin anymore.
Forum: Plugins
In reply to: [Smart Popup by Supsystic] Mailchimp subscription doesn't work….Having the same issue. Tried 3 different API keys, and even our head dev something was wrong with the plugin. Works fine with other Mailchimp plugins, so…
I couldn’t reproduce this error in my updated version of the plugin. However, dont have a custom post type. If you want to try my updated version:
Let me know if it fixes the issue for you or if having same problem. 🙂
I’m going to see if I can fix this with my version. If it works, will give you code.
Whats the output on the page? aka whats the actual short code on your page? [flv src=”locationhere” thumb=”here”]?
DIsable their shortcode:
//add_shortcode('THEIR_SHORCODE', 'their_function');Then as an example could use this with the shortcodes already used:
function jsvideo_override($att, $content=null){ add_videojs_header(); extract(shortcode_atts(array( 'width' => '', 'height' => '', 'video' => '', 'poster' => '' ), $atts)); $vid_output = '<video id="example_video_id_'.$rand.'" controls poster="'.$poster.'" class="video-js vjs-default-skin" width="'.$width.'" height="'.$height.'">'; $vid_output .= '<source src="'.$video.'" /></video>'; } add_shortcode('flv', 'jsvideo_override');if you can me specific shortcode could give you exact coding to use.
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] Update to 4.12.5 ?The example video with 4.12.5 works fine with their example and subtitles. Just copy and paste the video.js files over, works great. 🙂
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] Update to 4.12.5 ?I have a forked version which adds some new features and uses 4.12.6 if you want to take a look. I haven’t tested ALL the features but basics should work fine:
Edit video-js.php in this plugin, near line 210ish BEFORE:
$jsonDataSetup = str_replace('\\/', '/', json_encode($dataSetup));
add this:
$dataSetup['customControlsOnMobile'] = 'true';So when finished should look like:
$dataSetup['customControlsOnMobile'] = 'true'; $jsonDataSetup = str_replace('\\/', '/', json_encode($dataSetup));That should force controls on mobile giving a uniform experience.
I have added a check box in my fork of this plugin to force mobile custom control. 🙂
I could reproduce it on my android phone, loads videojs style then if you click it, loads mobile default player, try overriding default mobile player with this:
<video data-setup='{“customControlsOnMobile”: true}’>
…
</video>Should fix it, haven’t tried it myself. Let me know if it works. Make sure you clear your phone cache before trying it again.
Let me know if you want a custom file you can just drop on and replace video-js.php with. Shouldn’t be hard to fix.
Needs a force custom controls on mobile check box, I will add that to my fork of this project. Trying to get this plugin up to 2015 standards and include ALL video-js plugins.Under wordpress, on left side, says W3 Total Cache, as long as you activated the plugin.
Each resource should specify an explicit caching policy that answers the following questions: whether the resource can be cached and by whom, for how long, and if applicable, how it can be efficiently revalidated when the caching policy expires. When the server returns a response it must provide the Cache-Control and ETag headers
Fix this by going here, and if your server has support for it, you can check the boxes here to enable the caching. First enable browser cache, then edit settings and enable the etag and cache control check boxes.
I’m having the exact same issue. I have already added rewrite for NGINX as was suggested by FAQ:
rewrite ^/sitemap_index.xml$ /index.php?sitemap=1 last; rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 last;Yes, I have already restarted the nginx service after adding this to the .conf file.