Reply To: Add shortcode in the footer of the message box form.


Home Forums Front End PM PRO Add shortcode in the footer of the message box form. Reply To: Add shortcode in the footer of the message box form.

#28446
Shamim Hasan
Keymaster

You can use fep_messagebox filter to add anything bellow message box.
add following code in your theme’s (child theme’s if you are using) functions.php

add_filter( 'fep_messagebox', function( $box ) {
	$box = $box . do_shortcode('[xyz-ips snippet="privacytel"]');
	return $box;
});