team-ok
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HD button to the video playerThe Switch Video Quality Plugin uses the standard wordpress video player (mediaelement.js) and lets you use different resolution video streams. It shows an HD or 4K-Flag automatically.
Or do you mean a simple HD on/off toggle button?Forum: Plugins
In reply to: [Switch Video Quality] External video not readingHi,
sorry, I couldn’t reproduce this error (WP 4.5.3, SVQ 1.2).
Maybe it’s just a temporary issue with your filehosting server? Did you check if the files are reachable by entering the urls directly in your browser?
Please do a check with different external urls, like this one: https://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4Forum: Plugins
In reply to: [Switch Video Quality] Fatal error in activating pluginI changed the square bracket notation to the old array() style.
Tested with php version 5.3.8 and it works.Forum: Plugins
In reply to: [Switch Video Quality] Fatal error in activating pluginHi,
sorry for my late reply. My son was born a few days ago and I’ve been quite busy with beeing happy and looking at him ??
I couldn’t reproduce your error. Can you check the version of php your server is running? It has to be 5.4 and above (since March 2012) to support the square bracket notation for arrays that is used on line 298.
Maybe you can ask your server administrator to update?Hi,
it works, thank you!Forum: Plugins
In reply to: [Contact Form 7 Confirm Email Field] No error message displayedHi,
I think I have solved the problem. I added the confirm_email_messages function and hooked it in the wpcf7_messages filter. Now I can enter a custom message in the backend and it appears when the email addresses don’t match.
Maybe you want to add the code below?add_filter( 'wpcf7_messages', 'confirm_email_messages'); function confirm_email_messages($messages) { $messages['invalid_confirm_email'] = array( 'description' => __('The email addresses do not match.'), 'default' => __('The email addresses do not match.'), ); return $messages; }
Forum: Plugins
In reply to: [Contact Form 7 Confirm Email Field] No error message displayedHi,
I’m using the same wordpress and CF7 version.
I searched in all files of CF7 and of your plugin: there’s no ‘invalid_confirm_email’ error message defined, there’s only ‘invalid_required’ and ‘invalid_email’.
There’s also no translation option for ‘invalid_confirm_email’ in the messages tab of the CF7 settings in the wordpress backend.
Maybe you have any other CF7 plugins installed where the message is defined?