test again <div class="test"><div id="nothing">Just Testing</div></div>
bbPress ShowcasebbPress Showcase
bbPress Showcase » bbPress Chat
-
Posted 3 months ago #
-
Hello this is test,
Posted 3 months ago # -
Posted 1 month ago #
-
testing table ;
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head><body>
<table width="75%" border="1">
<tr>
<td height="107">cell 1 col 1 </td>
<td>cell 2 col 2 </td>
</tr>
</table>
</body>
</html>Posted 1 month ago # -
Testing again
<html>
<body>
<table width="75%" border="1">
<tr>
<td height="107">cell 1 col 1 </td>
<td>cell 2 col 2 </td>
</tr>
</table>
</body>
</html>Posted 1 month ago # -
You can't just post native html like that into bbpress posts.
As an administrator you could via a plugin however.
Posted 1 month ago # -
Do you know where to get the plugin for admin? I almost looked for everywhere.
And with that plug in, could I modify admin privileges, to let non-admins to post tables.
I need users be able to post an image on the left and text on the right hand side,
as well colour the text.Posted 1 month ago # -
The plugin is called "admin can post anything".
If you want users to be able to post tables, you'd have to add all the table tags to the allowed tags.
Make this into a plugin and it might do it.
<?php /* Plugin Name: Allow Tables */ add_filter('bb_allowed_tags','bb_allow_table_tags'); function bb_allow_table_tags( $tags ) { $tags['table'] = array('height'=>array(),'width'=>array(),'border' => array()); $tags['tr']=array(); $tags['td']=array(); return $tags; } ?>Please see bbpress.org for more info and questions on adding tags.
Posted 1 month ago # -
Thanks for the info and prompt response, very much appreciated !
Posted 1 month ago #
RSS feed for this topic
Post a reply to “put your test posts here”
You must log in to post.