See “Retrieve Link Settings” tab. (settings)
Thread Starter
oaiki
(@oaiki)
Can’t find anything for changing the standard message that currently says:
Request your Private Link
Type in your email, your private link will be emailed to you.
You’re looking for a setting named “Lost Private Link Text” under the “Resend Link Settings” tab on the plugin settings page.
Thread Starter
oaiki
(@oaiki)
Xnau, that’s just to change the clickable text shown in the signup form. Once I click in it, I get to a minimal form asking me to type in my email (or whatever verification I’ve chosen in the settings). This is the page I’m talking about. It says “please enter email” among other things such as the title “recover personal link”.
I can’t find any setting for changing that.
Ah, I see.
These are in the template. If you want to change it, you’ll need to follow these instructions for setting up a custom template, using the template file wp-content/plugins/participants-database/templates/pdb-retrieve-default.php as your starting point.
How to Create Custom Templates
You’ll see the strings to change in the template, they are in translation functions…so what looks like:
<?php printf(__('Type in your %s, your private link will be emailed to you.','participants-database'),$this->field->title) ?>
Change the part in single quotes: ‘Type in your %s, your private link will be emailed to you.’ The “%s will be replaced with the title of the field you are asking the user to type in. All the other strings to change will be in translation functions like that.