A plugin that works with wp 4.94 where you can paste image & text into forum.
Quote from ikester7579 on March 27, 2018, 7:13 amI 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?
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.
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?
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.
Quote from Asgaros on April 3, 2018, 9:01 amHello @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).
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).
Quote from ikester7579 on April 3, 2018, 9:27 amI 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.
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.
Quote from Asgaros on April 3, 2018, 9:31 amYou 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');
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');