Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions classes/controllers/FrmFormsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@ private static function fallback_when_page_template_part_is_not_supported_by_the
the_content();
echo '</div>';

// Prevent extra unexpected forms in the footer.
// For some reason this happens in the Twenty Twenty Five theme.
add_filter( 'frm_filter_final_form', '__return_empty_string' );

self::get_template( 'footer' );
}
}
Expand Down
Loading