Jeff Farthing
@jfarthing84 on WordPress.org, @Jeff Farthing on Slack
Bio
- Member Since: March 7th, 2009
- Location: Daytona Beach, FL, USA
- Website: jfarthing.com
- Job Title: Freelance Web Developer
- Employer: Jeff Farthing Web Solutions
Contribution History
Jeff Farthing’s badges:- BuddyPress Contributor
- Core Contributor
- Plugin Developer
-
Posted a reply to account activation link in email, on the site WordPress.org Forums:
It most definitely should be using the reset password slug for those links. I'd suggest… -
Posted a reply to incompatibility with Wordfence 2FA, on the site WordPress.org Forums:
Unfortunately, we cannot guarantee 100% compatibility with any third party plugin - only our own… -
Posted a reply to Show/Hide Password, on the site WordPress.org Forums:
We will be looking into adding this. -
Posted a reply to password toggle for the password field, on the site WordPress.org Forums:
We will look into adding this. -
Posted a reply to Automatically log out in a short time, on the site WordPress.org Forums:
This makes no sense. TML is just a frontend for the authentication system integral to… -
Posted a reply to TMT Reset Password Link always say invalid key, on the site WordPress.org Forums:
This is usually due to your hosting provider utilizing server-side caching. Kindly ask them to… -
Posted a reply to Perhaps bug in translation, on the site WordPress.org Forums:
These have already been updated and will be included in the next release. -
Posted a reply to How to add registration field?, on the site WordPress.org Forums:
The documentation you are referring to is for TML 6.x. You want this: https://docs.thememylogin.com/article/62-adding-extra-registration-fields -
Posted a reply to password toggle for the password field, on the site WordPress.org Forums:
You would do this via javascript. However, that is beyond the scope of this forum. -
Posted a reply to Pay for basic features, on the site WordPress.org Forums:
Can you believe WordPress itself doesn't have strong password enforcement, and even allows you to… -
Posted a reply to Where can I edit login messages?, on the site WordPress.org Forums:
add_action( 'wp_login_errors', function ( $errors ) { if ( $errors->get_error_message( 'registered' ) ) { $errors->remove(… -
Posted a reply to register form shortcode on different pages, on the site WordPress.org Forums:
Not without some custom code registering a custom action to handle a different type of… -
Posted a reply to Zero Support when purchased., on the site WordPress.org Forums:
What is your name and/or email address that you reached out to us with? -
Posted a reply to Zero Support when purchased., on the site WordPress.org Forums:
This is simply not true. Feel free to state your problem here. -
Posted a reply to conflicts with about everything. Zero support if you buy it, on the site WordPress.org Forums:
Wow, this is an odd take. We answer every support request, including non-commercial support on… -
Posted a reply to Translation files outdated?, on the site WordPress.org Forums:
Fixed and will be included in next release. -
Posted a reply to LSCache Plugin + TML – ESI Enabled Shortcode & Error Message Issue, on the site WordPress.org Forums:
TML pages should be excluded from any caching. -
Posted a reply to Enforcing password requirement., on the site WordPress.org Forums:
Our Security extension easily allows your to do so. -
Posted a reply to Custom submit button text, on the site WordPress.org Forums:
Try placing this in theme-my-login-custom.php: add_action( 'init', function () { if ( $button = tml_get_form_field(… -
Posted a reply to Error in translating the fields, on the site WordPress.org Forums:
If you relocate your translation to the system directory, it should work: https://ibb.co/PZpRt9z -
Posted a reply to New (v7.1.6) tml_do_login_footer runs on all tmp pages, not just login, on the site WordPress.org Forums:
Nope. Just like wp-login.php, it is called on all actions. -
Posted a reply to Error in translating the fields, on the site WordPress.org Forums:
Can you post the Arabic translation here, so I can test locally? -
Posted a reply to Error in translating the fields, on the site WordPress.org Forums:
I am unable to reproduce this - "Confirm Password" translates just fine. What language is… -
Posted a reply to Doesn’t work using pages when use block theme template, on the site WordPress.org Forums:
A fix has been committed and will be included in the next release. -
Posted a reply to hCaptcha Not Requried To Login, on the site WordPress.org Forums:
The other plugin would need to use TMLs functions/actions to add their captcha to our… -
Posted a reply to NOINDEX Pages, on the site WordPress.org Forums:
TML already sets all of its actions to NOINDEX. If that is not happening, another… -
Committed [2947861] to Plugins SVN:
Tagging 7.1.6 -
Committed [2947860] to Plugins SVN:
Version 7.1.6 -
Posted a reply to No login to Admin Panel possible, on the site WordPress.org Forums:
What is the URL shown in your screenshot? -
Posted a reply to No login to Admin Panel possible, on the site WordPress.org Forums:
You can always bypass TML's login page by going directly to /wp-login.php. -
Posted a reply to Custom email notification, on the site WordPress.org Forums:
This forum is not for commercial support. As you've mentioned Moderation, which is a commercial… -
Posted a reply to Login not working, on the site WordPress.org Forums:
If you use a default WP theme, does this issue still occur? -
Posted a reply to Login not working, on the site WordPress.org Forums:
Do you have AJAX enabled in TML settings? If so, try disabling it. -
Posted a reply to Password strength meter disappears in alternate form, on the site WordPress.org Forums:
Assuming you added the form fields using the same names from the original form, you… -
Posted a reply to Set up dropdown menu in registration form, on the site WordPress.org Forums:
You definitely need to implement something to save the data. Where/how you save it is… -
Posted a reply to Remove validation criteria in alternate registration form, on the site WordPress.org Forums:
No, within the function definition of validate_client_registration_form_fields(), around the if empty blocks. -
Posted a reply to Remove ‘Confirm password’ field from registration form, on the site WordPress.org Forums:
Sorry, I gave you the incorrect field name. It should be: function remove_tml_registration_fields() { tml_remove_form_field(… -
Posted a reply to Remove validation criteria in alternate registration form, on the site WordPress.org Forums:
In the registration_errors hook callback, you'll need to check which form is being submitted: if… -
Posted a reply to Login not working, on the site WordPress.org Forums:
Does it submit the form and just reload the page or do nothing at all? -
Posted a reply to Set up dropdown menu in registration form, on the site WordPress.org Forums:
tml_add_form_field( 'register', 'country', [ 'type' => 'dropdown', 'label' => 'Country', 'options' => [ 'US' =>… -
Posted a reply to Remove ‘Confirm password’ field from registration form, on the site WordPress.org Forums:
function remove_tml_registration_fields() { tml_remove_form_field( 'register', 'pass2' );}add_action( 'init', 'remove_tml_registration_fields' ); -
Posted a reply to Custom email notification, on the site WordPress.org Forums:
In the same way you would modify the notification sent by WP itself - using… -
Posted a reply to The error text is not seen if there is an error related to the reCaptcha, on the site WordPress.org Forums:
It seems to me you should be reaching out to iThemes Security if this is… -
Posted a reply to Shortcodes, on the site WordPress.org Forums:
https://docs.thememylogin.com/article/91-using-the-shortcode -
Posted a reply to register email blacklist, on the site WordPress.org Forums:
I do not have such a recommendation. -
Posted a reply to A few starter questions, on the site WordPress.org Forums:
Please, use our support form for pre-sales questions. -
Posted a reply to bug with confirmed emails, on the site WordPress.org Forums:
How are you currently moderating users? -
Posted a reply to register email blacklist, on the site WordPress.org Forums:
It sounds as though the two plugins are not compatible in one way or another.… -
Posted a reply to login redirect to homepage, on the site WordPress.org Forums:
Our Redirection extension allows you to control where users are redirected upon login, customizable per… -
Posted a reply to login redirect to homepage, on the site WordPress.org Forums:
Our Profiles extension allows you to disable access the Dashboard for specific roles, as well…
Developer
-
Custom Author Base
Active Installs: 90+
-
Post Tags Widget
Active Installs: 100+
-
Theme My Login
Active Installs: 80,000+