• Resolved viktord

    (@viktord)


    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.

Viewing 1 replies (of 1 total)
  • Plugin Author Shamim Hasan

    (@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);
    
Viewing 1 replies (of 1 total)
  • The topic ‘File Attachment’ is closed to new replies.