• Resolved Varun Pahwa

    (@varunpahwa)


    Hey there,

    Thanks for your plugin and it’s extremely awesome.

    Could you please let me know, how can I disable the link embeds for the subscribers (Registered) in the text editor or plugin?

    Thanks in advance

Viewing 1 replies (of 1 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    That’s very easy to do with ‘wpforo_editor_settings’ filter hook. Put this code in your current active WordPress theme functions.php file. You can see all button names in 3rd line of this code, just remove whichever you want, the link is already removed:

    function wpforo_custom_editor_toolbar( $settings ){
    	if(function_exists('WPF')){
    		if( WPF()->current_user_groupid == 3 && isset($settings['tinymce']['toolbar1']) ){
    			$settings['tinymce']['toolbar1'] = 'fontsizeselect,bold,italic,underline,strikethrough,forecolor,bullist,numlist,hr,alignleft,aligncenter,alignright,alignjustify,blockquote,pre,wpf_spoil,undo,redo,pastetext,source_code,emoticons,fullscreen';
    		}
    	}
    	return $settings;
    }
    add_filter('wpforo_editor_settings', 'wpforo_custom_editor_toolbar', 12);
Viewing 1 replies (of 1 total)

The topic ‘Remove Link Embeds from Editor’ is closed to new replies.