CRED plugin allows you to build front-end forms for creating and editing content. These forms can include all the fields that belong to the content and display them with your HTML styling. CRED forms also support input validation and automatic email notifications.
When you ask for help or report issues, make sure to tell us the structure and the settings of your form.
Viewing 15 topics - 196 through 210 (of 724 total)
The customer was using the "save_post" hook to automatically fill lat/lon coordinates from a Toolset address type field into another custom field, but the values were not becoming available for new posts.
Problem:
The forms' notifications are not sent even if the test email is sent and other WordPress emails are sent.
Solution:
Toolset puts the notifications emails into a queue, then sends it at the end of the page request process. Maybe, we can fix the issue with this form by disabling the queue. Add the following line to your wp-config.php file:
Problem:
The user would like to customize the success message in a form before the page is redirected.
Solution:
This will require custom code snippet to customize the message that would be displayed before the redirect. Something like:
add_filter('gettext', function($translated_text, $untranslated_text, $domain){
if($untranslated_text == 'Please Wait. You are being redirected...' && $domain == 'wp-cred'){
$translated_text = 'The new message to display before the redirect';
}
return $translated_text;
}, 10, 3);
Note that the message will be wrapped in a
tag, this means that you can't use any HTML tags, only the ones that can be wrapped in a