MyBB Community Forums

Full Version: :( This Plugin Dont Work More
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I know nothing much to do plugins
someone who can do
You can do this without any plugin (manually).
Without the proper code, theres not much you can do.
It appears that web-fox possibly forgot his code when he updated the plugin t0 v1.01
The plugin should be removed from MyBB
Since it is simply displaying the user notepad in the main usercp, it should be easy to replicate
but I'll have to look into it.

EDIT:
You can do away with the plugin entirely and add the following code in your usercp template wherever you wish to place the notepad.

<!-- notepad hack -->
<br />
<form action="usercp.php" method="post">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->personal_notepad}</strong></td>
</tr>
<tr>
<td align="center" class="trow1" width="100%">
<textarea name="notepad" cols="80" rows="15">{$mybb->user['notepad']}</textarea>
</td>
</tr>
<tr>
<td align="center">
<input type="hidden" name="action" value="do_notepad" />
<input type="submit" class="button" name="submit" value="{$lang->update_notepad}" />
</td>
</tr>
</table>
</form>
<!-- /end notepad hack -->

For instance, I added it to the bottom right above {$latest_warnings}
xD Thanks Works Fine
Pages: 1 2