Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Soft-Designs's full-sized avatar

Soft-Designs Soft-Designs

View GitHub Profile
@Soft-Designs
Soft-Designs / gist:9102bb788634156a3eb25402d68d0795
Last active May 28, 2020 22:59
WPMU - Forminator - Validation
//
//TICKET = https://premium.wpmudev.org/forums/topic/forminator-email-validation
//
add_action( 'wp_footer', function() {
global $post;
if ( ! $post instanceof WP_Post || ! has_shortcode( $post->post_content, 'forminator_form' ) ) {
return;
}
?>
<script type="text/javascript">
@Soft-Designs
Soft-Designs / gist:f114c90795eddee826d0343d562dc8f6
Created May 26, 2020 14:31
WPMU-Forminator-Custom-Validation
<?php
add_action(
'wp_footer',
function() {
?>