Per Søderlind
Forum Replies Created
-
Forum: Plugins
In reply to: [Read Offline] Custom post types problem.. so, 0.7.2 adds support for custom post type
Forum: Plugins
In reply to: [Read Offline] Disable on homepage???It shouldn’t show on the home page. If it still is showing, please create an issue at https://github.com/soderlind/read-offline/issues
Forum: Plugins
In reply to: [Read Offline] Custom post types problemI’ll add it in the next release. Please continue the discussion at https://github.com/soderlind/read-offline/issues/65
Forum: Plugins
In reply to: [Date and Time Picker Field] Broken after latest ACF Pro version@bjørn Thank you 🙂 .. and I agree. If you’re using ACF PRO you should convert your code and use the native functionality.
Forum: Plugins
In reply to: [Date and Time Picker Field] Broken after latest ACF Pro versionPlease see and continue the discussion at https://github.com/soderlind/acf-field-date-time-picker/issues/106
I’ve added a beta plugin there.
Fixed in the latest release
Forum: Plugins
In reply to: [Date and Time Picker Field] Broken after latest ACF Pro versionIf I could I would make it work together with ACF Pro, but when their core date-time picker was added they decided to use the same name and variables that I used.
in ACF PRO core/compatibility.php there’s a helper function – get_valid_date_time_picker_field – that will convert data saved by my plugin to a format that ACF PRO understand.
If you, in ACF PRO, set the return format to: U, the date+ time picker should return timestamps.
btw, users reports that moving from my plugin to the native works fine (but you should test on a non-production environment first):
https://github.com/soderlind/acf-field-date-time-picker/issues/103Hope this helps 🙂
Forum: Plugins
In reply to: [Date and Time Picker Field] Broken after latest ACF Pro versionHi,
I finally had time (ie summer vacation) to work on the plugin.
As you might have noticed, ACF PRO 5.0+ is no longer supported, ACF PRO has its own date and time picker.
br,
PerI did it using the following jQuery snippet:
jQuery(function ($) { $('.mejs-mediaelement video').on('ended', function (e) { e.preventDefault(); $(this)[0].player.pause(); }); });Forum: Plugins
In reply to: [Date and Time Picker Field] unable to get difference between timeTry this (not tested):
$date1 = new DateTime('now'); $date2 = new DateTime(); $expiredate = get_field('expirydate'); $date2->setTimestamp($expiredate ); $difference = $date2->diff($date1); $timeleft=$difference->format('%d:%h:%i:%s'); echo $timeleft;Forum: Plugins
In reply to: [Date and Time Picker Field] unable to get difference between timedate_i18n returns a string, not a date object.
Forum: Plugins
In reply to: [Breadcrumb NavXT] BCN_SETTINGS_USE_NETWORK failsExcellent, I can confirm that 5.2.2 works fine 🙂
Forum: Plugins
In reply to: [Duo Two-Factor Authentication] User SwitchingI usally don’t x-post, but I’ve also asked the question at https://github.com/johnbillion/user-switching/issues/6
Forum: Plugins
In reply to: [WP Live Preview Links] Support cache?Sorry but this plugin doesn’t create a thumbnail, and hence it can’t be cached. It will show you the actual page in the preview.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TablePress Extension: ChartistTablePress Extension: Chartist is available in the wp plugin directory: https://wordpress.org/plugins/tablepress-chartist/