NateJacobs
Forum Replies Created
-
Forum: Plugins
In reply to: [User Activation Email] Error after registrationVersion 1.2.1 has been pushed out to fix this error. Thank you for reporting it. I apologize for the error on your site.
Forum: Plugins
In reply to: [User Activation Email] Notices, unexpected output on plugin activationThe newest version, 1.2, of the plugin should resolve this issue.
Forum: Plugins
In reply to: [User Access Expiration] Expire on a date rather than number of days?In the next version of the plugin I plan on adding a filter so you can change the date of the expiration. Something like this is what I am imagining.
add_filter( 'uae_expiration_date', 'ngtj_tanzengeist_filter_expire_date'); function ngtj_tanzengeist_filter_expire_date($expire_date) { // get expiration date of doctor recommendation in timestamp $new_expire_date = get_expire_date(); return $new_expire_date; }
I hope to have the new version out by the second week of January.
Forum: Plugins
In reply to: [User Access Expiration] Decimals?No, decimals will not work at this time. I don’t have any plans to automatically reinstate users, but I can definitely look at that for a possible upgrade.
Forum: Plugins
In reply to: [User Activation Email] Notices, unexpected output on plugin activationThanks Thad. What version of PHP?
Forum: Plugins
In reply to: [User Activation Email] Works for WooCommerce?Hi Oscar. I’ll need a little more information on what you are asking. What exactly are you trying to do?
Forum: Plugins
In reply to: [User Activation Email] Does it work with version 3.6?Yes, this plugin will work with 3.6. I will fixing a few bugs and a new version will be coming out shortly after WordPress 3.7 is released.
Forum: Plugins
In reply to: [User Activation Email] Column active filter not workingThanks for finding that. That is indeed a bug. I’ll fix it in the next version which will be out shortly after WordPress 3.7.
Forum: Themes and Templates
In reply to: Author page = logged in userTake a look at using this hook, template_redirect, combined with these two functions is_author and wp_get_current_user.
function centrecircle_my_page_template_redirect() { $current_user = wp_get_current_user(); if( is_author( $current_user->ID ) ) { //do something } } add_action( 'template_redirect', 'centrecircle_my_page_template_redirect' );
Forum: Fixing WordPress
In reply to: Size of thumbnails questionTake a look at this plugin, Regenerate Thumbnails. It goes through your already uploaded media and resizes the pictures to any new size you have defined via Settings -> Media.
In the upcoming 1.0 version there will be a new column on the users list labeled “Active”. It will display a yes or no depending on the users activation status. You will also be able to sort by this column so you can see all the users who have not yet activated their account.
This has now been fixed in version 0.4. Admins and super admins will no longer be auto expired.
Forum: Reviews
In reply to: [User Activation Email] PAS DE CODE D'INTEGRATIONTranslated into English: “I did not find the code to integrate activation form personnallisé!”
I believe this user may misunderstand the point of the plugin. There is no activation form to integrate. The activation code is entered upon first login.
There was an issue in some installs. This has been fixed in 0.4.