Skip Navigation

“CRED Auto Draft” posts created when Relevannsi, CRED and featured Images are used

Resolved

Reported for: Toolset Forms 1.9.4

Resolved in: 1.9.6

Symptoms

If you have a CRED form that uploads a Feature Image, and you have Relevannsi active on your website, CRED Creates 2 Posts for each form submission:
– “CRED Auto Draft”
– “Your actual post”

Workaround

There is a workaround, and a patch available.

You will apply one of both
(suggested: use the patch)

1. You can apply this patch by unzipping it and uploading the file (post.php) it contains to replace the one with the same name in:

cred-frontend-editor/application/models/form/

 

2. Or, you can disable AJAX upload in the CRED Form by adding this to the functions.php of your theme:
add_filter("cred_file_upload_disable_progress_bar", "disable_progress_bar");
function disable_progress_bar($val) {
return true;
}

You can read more about this filter here:

CRED API Hooks

The next CRED version will include this fix.

Comments are closed