Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Playbuzz inline contact form popup

Add Shortcode to allow inline contact form popus using [playbuzz-contact]click here[/playbuzz-contact]

// Add Shortcode
function playbuzz_contact_shortcode( $atts , $content = null ) {

	return '<a href="#" data-toggle="modal" data-target="#contact1">' . $content . '</a>';

}
add_shortcode( 'playbuzz-contact', 'playbuzz_contact_shortcode' );