Forums
Forums / Plugin: Front End PM / File Attachment
(@viktord)
8 years, 1 month ago
Hi Shamim, Can you please give me code to turn off file attachment section only for subscriber role and leave it on for other roles.
Thank you very much.
(@shamim51)
Please add following code in your theme’s ( child theme’s if any) functions.php
add_filter( 'fep_get_option', function( $value, $option ){ if( 'allow_attachment' == $option && in_array( 'subscriber', wp_get_current_user()->roles ) ) $value = 0; return $value; }, 10, 2);
The topic ‘File Attachment’ is closed to new replies.