Please or Register to create posts and topics.

iframe problem <iframe src="//www.

PreviousPage 2 of 2

@htb Welches Plugin verwendest du denn, um die zusätzlichen Buttons hinzuzufügen? TinyMCE Advanced?

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

wir haben WP Edit am start, der hat die iframe funktion für medien

WP Edit

 

 

Hallo @htb

Dieses Problem werde ich im nächsten Update beheben. Die wenigen Zeilen an Code, die dafür geändert werden müssen, findest du hier:

https://github.com/Asgaros/asgaros-forum/commit/dc1ed0d0c5573a6b65a330992e6e3416403639d3

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

ok wenn ich richtig verstehe, kann ich in der datei post-element.php die rote zeile löschen und die 3 grünen hinzufügen bis das upgrade kommt?

@htb  Yes, you are correct.  In post-element.php it will look like this:

// Post message.
 echo '<div class="post-message">';
     // Initial escaping.
     // $post_content = wp_kses($post->text, 'post');
     $allowed_html = wp_kses_allowed_html('post');
     $allowed_html['iframe'] = array('width' => array(), 'height' => array(), 'src' => array(), 'frameborder' => array(), 'allowfullscreen' => array());
     $post_content = wp_kses($post->text, $allowed_html);
     $post_content = stripslashes($post_content);

 

Asgaros has reacted to this post.
Asgaros

ok habs mal drin und es funzt, warten auf das nächste update

PreviousPage 2 of 2