I've found the toolbar contents in editor_toolbar_standard. What would be the best way to make an editor_toolbar_signature. Should I just edit the standard version to have an "if" statement, or should I make an actual new template with the items that I want... and just call editor_toolbar_signature when someone attempts to edit their sig?
yup, try this conditional
PHP Code:
<if condition="THIS_SCRIPT != 'profile'">
// template code that should only appear on posts and PMs, but not in signature page.
</if>
alternatively:
PHP Code:
<if condition="THIS_SCRIPT == 'profile'">
// template code that should only appear on signature page and not on posts or PMs.