MyBB Community Forums

Full Version: Images to Text?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Would it be possible to change the Email, PM, Find, Delete, Report ect stuff at the bottom of the posts to text?
Sure.

For the PM:
ACP -> Templates -> *Your Template Set* -> Expand -> Post Bit Templates -> Expand -> postbit_pm -> Change Original

Replace:
<a href="private.php?action=send&amp;uid=$post[uid]"><img src="$theme[imglangdir]/postbit_pm.gif" border="0" alt="$lang->postbit_pm" /></a>
With:
<a href="private.php?action=send&amp;uid=$post[uid]">PM</a>


For the Email:

ACP -> Templates -> *Your Template Set* -> Expand -> Post Bit Templates -> Expand -> postbit_email -> Change Original

Replace:
<a href="member.php?action=emailuser&amp;uid=$post[uid]"><img src="$theme[imglangdir]/postbit_email.gif" border="0" alt="$lang->postbit_email" /></a>
With:
<a href="member.php?action=emailuser&amp;uid=$post[uid]">Email</a>


For the Find:

ACP -> Templates -> *Your Template Set* -> Expand -> Post Bit Templates -> Expand -> postbit_find -> Change Original

Replace:
<a href="search.php?action=finduser&amp;uid=$post[uid]"><img src="$theme[imglangdir]/postbit_find.gif" border="0" alt="$lang->postbit_find" /></a>

With:
<a href="search.php?action=finduser&amp;uid=$post[uid]">Find</a>


For the WWW:

ACP -> Templates -> *Your Template Set* -> Expand -> Post Bit Templates -> Expand -> postbit_www -> Change Original

Replace:
<a href="$post[website]" target="_blank"><img src="$theme[imglangdir]/postbit_www.gif" border="0" alt="$lang->postbit_website" /></a>

With:
<a href="$post[website]" target="_blank">WWW</a>


For the Report:
ACP -> Templates -> *Your Template Set* -> Expand -> Post Bit Templates -> Expand -> postbit_report -> Change Original

Replace:
<a href="javascript:reportPost($post[pid]);"><img src="$theme[imglangdir]/postbit_report.gif" border="0" alt="$lang->postbit_report" /></a>

With:
<a href="javascript:reportPost($post[pid]);">Report</a>


For the Quote:

ACP -> Templates -> *Your Template Set* -> Expand -> Post Bit Templates -> Expand -> postbit_quote -> Change Original

Replace:
<a href="newreply.php?tid=$tid&amp;pid=$post[pid]"><img src="$theme[imglangdir]/postbit_quote.gif" border="0" alt="$lang->postbit_quote" /></a>

With:
<a href="newreply.php?tid=$tid&amp;pid=$post[pid]">Quote</a>


For the Delete:

ACP -> Templates -> *Your Template Set* -> Expand -> Post Bit Templates -> Expand -> postbit_quickdelete -> Change Original

Replace:
<a href="javascript:deletePost($post[pid]);"><img src="$theme[imglangdir]/postbit_delete.gif" border="0" alt="$lang->postbit_qdelete" /></a>

With:
<a href="javascript:deletePost($post[pid]);">Delete</a>


NOTE: All of the javascript's with in the code tags look like java script: but the space shouldn't be there.


Anywho, I think that's it, but if not then you can edit the others accordingly.
That's possible. Expand the Post Bit Templates and open the templates of the buttons you want to change. Example for the PM button:

Open the template postbit_pm and replace the content with the following:
<a href="private.php?action=send&amp;uid=$post[uid]">$lang->postbit_pm</a>
Or just delete those images from the images/*Your Language* directory and let HTML "Alt" do the rest Toungue
DrPoodle Wrote:Or just delete those images from the images/*Your Language* directory and let HTML "Alt" do the rest Toungue

Red X's all over for IE.