WPCF7_ShortcodeManager::get_instance is deprecated
-
Hi,
Is an update planned to correct this deprecated ?
The fix is bellow
File: class-cf7-extras.phpfunction maybe_reset_autop( $form ) {
$form_instance = WPCF7_ContactForm::get_current();
$disable_autop = $this->get_form_settings( $form_instance, 'disable-autop' );
if ( $disable_autop ) {
$manager = WPCF7_FormTagsManager::get_instance();
$form_meta = get_post_meta( $form_instance->id(), '_form', true );
$form = $manager->replace_all( $form_meta );
$form_instance->set_properties(
array(
'form' => $form,
)
);
}
return $form;
}
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.