BruceFeuillette
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Add Mime Types] Warning Dialog After Installing PluginIt’s because the settings are empty the first time you’re coming in the interface. So PHP is unable to do a foreach loop because it’s empty.
Solutionif(!empty($mime_type_values)) { foreach ($mime_type_values as $line){ $line_value = explode("=", $line); if(count($line_value) != 2) continue; $mimes[trim($line_value[0])] = trim($line_value[1]); } }
Add an empty verification. Don’t forget the closing accolade.
I just do it and it works well.Forum: Plugins
In reply to: [Football Pool] Match schedule change on "save modification"Works great.
Thanks !Forum: Plugins
In reply to: [Football Pool] Match schedule change on "save modification"I had to switch to UTC Time as WordPress is set to UTC+1 as we go to winter time last week-end.
So it always adds 1 hour.Forum: Plugins
In reply to: [Football Pool] Match schedule change on "save modification"Ok, after further investigations, it only affect the displayed matches on the page.
If I use UTC-2, the time lost 2 hours each click. And so on for UTC-4 (-4 hours on each click), UTC+6 (-6 hours on each click).A workaround, for me, was to set the time parameter to “Use UTC time”.
The displayed hour on the pronostic form is the right one as on the admin page.Forum: Plugins
In reply to: [Football Pool] Unable to predict 2 hours before the beginningI can confirm that it’s works great.
Thanks !Forum: Plugins
In reply to: [Football Pool] Unable to predict 2 hours before the beginningDone ??
Thanks !
It’s not the first time, my friends have said it to me 2 or 3 times and I was thinking it was their browser. ??Forum: Plugins
In reply to: [Football Pool] fp-predictionform, post and permalinkThanks ??
I’ve just tested and the score can’t be modified.
I’ve opened the prediction page, the score was 0-1, I have expired the match and changed my score to 10-21.
After clicking on save, the previous score was shown, not 10-21.
So it’s good ??Forum: Plugins
In reply to: [Football Pool] CSV upload didn't workIt works well, thanks !
Forum: Plugins
In reply to: [WP Page QR] [Plugin: WP Page QR] template tag break "the_content"The right syntax is <?php wppageqr_code(array(‘doap’ => 1)); ?>
But it breaks the content…Forum: Plugins
In reply to: [My Record Collection] Can't get MyRecordCollection to workI’ve installed it from the plugin install in the Admin panel.
Don’t forget too look at my other post, the overlay mode seems broken is this release.Forum: Plugins
In reply to: [My Record Collection] Can't get MyRecordCollection to workDid you use version 1.0.2 ?
It works fine for me with WP 3.4.2 : https://blog.dabeuliou.com/?page_id=1066Forum: Plugins
In reply to: [My Record Collection] Overlay mode don't workOk, I got it sorted at least !
In mrc_scripts.js, line 110 or 115 you had this
var MRCsettings = { onEachRow: null, tt: $('#MRC_info_tooltip') }; (function( $ ){ var methods = {
It must be
(function( $ ){ var MRCsettings = { onEachRow: null, tt: $('#MRC_info_tooltip') }; var methods = {
I’ve tweaked it a little bit to handle CDr and DVDr.
You can edit my-record-collection.php and edit line 129 to be this$cd=array("CD","CDr","DVD","DVDr"); if(in_array($rec->f_name,$cd)){