Open Jimmi08 opened 3 months ago
I don't know if this is ninja forms related or wpcasa: UpTown theme is used.
Thank you @Jimmi08 for your message. We have not noticed this issue yet and will investigate it further.
@codestylist Hi Sandro, I did fresh installation to be sure: - PHP 8.1
Go to settings - no email field
Frontend:
I don't know if this is ninja forms related or wpcasa: UpTown theme is used.
This is ninja form issue, it is reported on official repository many times, it can be fixed in theme with filter. I posted solution there. Just to have it complete for the future:
function decode_ninja_forms_display_form_settings($settings, $form_id)
{
$settings['fieldsMarkedRequired'] = html_entity_decode($settings['fieldsMarkedRequired']);
return $settings;
}
add_filter('ninja_forms_display_form_settings', 'decode_ninja_forms_display_form_settings', 10, 2);
Prerequisites
Description
Addon Ninja Forms should be updated, but the repo is not, so I am writing this here. I have got 2 issues with latest version.
Original code:
this didn't work, I had to change it to:
Working code (not sure if it is the right fix)
Used position: After the end
Thanks