Home › Forums › Front End PM PRO › Add a message when user has unchecked “Allow others to send me messages” › Reply To: Add a message when user has unchecked “Allow others to send me messages”
October 27, 2020 at 1:42 am
#41535
Shamim Hasan
Keymaster
You can also remove that settings if you want. Please follow https://www.shamimsplugins.com/support/topic/remove-setting/#post-12519
If you want to show message if that settings is unchecked Please use following code
if ( ! fep_get_user_option( 'allow_messages', 1 ) ) {
echo 'Your message here';
}