Ben Huson
Forum Replies Created
-
This is fixed in version 1.2
Forum: Plugins
In reply to: [Expire Users] Expire Date obfuscated.If you have the date exported as a timestamp in a CSV, you can use Excel to convert the timestamp to a date using the following formula, then set the cell to format as a date:
=(((A2/60)/60)/24)+DATE(1970,1,1)(where A2 is the cell with the timestamp)
Forum: Plugins
In reply to: [Expire Users] Expire Date obfuscated._expire_user_dateis stored as a timestampForum: Plugins
In reply to: [Expire Users] User & Admin Email Hooks are swapped.Thank you.
I have merged the fix which will be in the next release.
https://github.com/benhuson/expire-users/pull/74No, the plugin does not keep a record of logins.
Ben
Forum: Plugins
In reply to: [WP Subtitle] second subtitle ?If you start to require the ability to add multiple fields to a post then a plugin like ACF might be be appropriate?
Forum: Plugins
In reply to: [WP Subtitle] How to show subtitles in Gutenberg Editor?The field is in the document panel on the right, like the excerpt field.
This will be fixed in the next release of the plugin.
Forum: Plugins
In reply to: [WP Subtitle] Import SettingsIt may be possible to adjust WP Subtitle to use your existing Secondary Title data by adding the following code to your functions.php file:
function my_wps_subtitle_key( $key ) { return '_secondary_title'; } add_filter( 'wps_subtitle_key', 'my_wps_subtitle_key' );Forum: Plugins
In reply to: [List Pages Shortcode] List Pages with DateIn theory it follows the same documentation as the WordPress
wp_list_pages()function.So you can set a
show_dateparameter as “published” which I think should work. You can also setdate_formattoo if required.Forum: Plugins
In reply to: [List Pages Shortcode] list_type (string) like: list_type=”li” dont workIf you want to display as a list you should set to
ul(which is default) notli?Does that work for you?
Forum: Plugins
In reply to: [Expire Users] Show expiry date in front end?You should be able to use the shortcode
[expire_users_current_user_expire_date]to display the currently logged in user’s expiry date.It is possible to set the sate format, and text that shows depending on wether the user is expired or not:
[expire_users_current_user_expire_date date_format="M d, Y" expires_format="Expires %s" expired_format="Expired %s" never_expire="Never Expire"]See PHP date formats here:
https://www.php.net/manual/en/function.date.phpForum: Plugins
In reply to: [Expire Users] ShortcodeYou should be able to use the shortcode
[expire_users_current_user_expire_date].It is possible to set the sate format, and text that shows depending on wether the user is expired or not:
[expire_users_current_user_expire_date date_format="M d, Y" expires_format="Expires %s" expired_format="Expired %s" never_expire="Never Expire"]See PHP date formats here:
https://www.php.net/manual/en/function.date.phpForum: Plugins
In reply to: [Taxonomy Images] What db table does Taxonomy Images uses to save imagesUnfortunately, the plugin still stores taxonomy images IDs in a field in the options table – a legacy of when I took over development of the plugin quite a while back.
I am working on a version which stores the image ID as term meta but have yet to write the code necessary to seamlessly migrate data from the options table to term meta.