All of my cred forms are displaying the field type as the default value with CRED 1.8 (see attached image). If I upgrade to 1.8.1 I loose the ability to display edit forms to guest users.
I compared 1.8 vs 1.8.1 to see what was different since 1.8.1 fixes the issue but leaves the edit form unavailable to guest users. I commented out the following section in /cred-frontend-editor/embedded/classes/Form_Builder.php
/*
//Pre-check access as guest in order to avoid creation of auto-draft
if ($user_id <= 0) {
if (!$preview && !$formHelper->checkFormAccess($form_type, $form_id)) {
return $formHelper->error();
}
}
*/