Please or Register to create posts and topics.

A plugin that works with wp 4.94 where you can paste image & text into forum.

I saw in another post a plugin that worked like this but it was old and only works with the 3.x versions of wp. So I was afraid if I installed this it would crash the site. So that sent me searching. Found this plugin and it works great with no quirks. Question: Does a copy and paste pic end up in the media section, or is it considered a image embed of some sort?

Clip Board

Suggestion: If this gets incorporated into the forum program. Make it to where this option opens after a certain number of posts for the member and add the option to the upload as well. This keeps out trolls who love to post porn or spam pics. A number of posts to be selected by the admins. I have ran several Christian forums and I can tell you it’s a problem.

Hello @ikester7579

This depends on how the plugin works. I dont know it but the developer of Clip Board can answer you the question. 🙂 As long as the data is not directly stored inside the database in a binary-format everything should be fine (in regards of performance).

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

I went to look and it does not put the pics into the media. So that does me no good because there is a possibility of losing all my work in a backup. Maybe a future thing is have it to where admins can use pics from the media in posts and comments when logged in.

You can try to add the following code to your themes functions.php file. This adds a button above the editor to your Media Library:

function change_editor_settings($settings) {
  $settings['media_buttons'] = true;
  return $settings;
}
add_filter('asgarosforum_filter_editor_settings', 'change_editor_settings');

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!