• Resolved radone

    (@radone)


    Hi

    how i can allow users upload images and insert it inside the posts like all other forums the users can upload and insert inline images inside the post not as attachment files or thumbnail, how can i add new button next to attachment name to insert it inside the Topic.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Asgaros

    (@asgaros)

    Hello @radone,

    there is an image-button inside your editor which allows you to put a link to an image inside your post. This image will be inserted directly into the location where you have added it.

    Hi there,

    I think @radone ‘s question was, if it is possible, to embed a picture IN the post while uploading it.

    Attachment ist clear. You can upload a picture from HDD and it will be shown at the end of your thread.

    But using the

    image-button inside your editor

    does not upload an image, does it? It has to be a link like https://www.example.com/test.jpg something like this?

    Sry my bad english :-/

    • This reply was modified 7 years, 6 months ago by derbrunsbeker.

    Hi @radone, @derbrunsbeker,
    Add to functions.php :

    function change_editor_settings($settings) {
    	$settings['teeny'] = false;
    	$settings['media_buttons'] = true;
    	return $settings;
    }
    
    add_filter('asgarosforum_filter_editor_settings', 'change_editor_settings');
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Insert images inside Topics’ is closed to new replies.