Quote:
Originally Posted by ozzy47
What you could do is create a new plugin. - Log into the ACP.
- On the side menu expand "Products & Plugins"
- Click on "Plugin Manager"
- At the very bottom there is a link to "Add New Plugin"
- On that page put in the following information-
Product: vBulletin (this should be default)
Title: Replace Minutes In Postbit
Hook: postbit_display_complete (from a drop-down list)
Execution Order: 5 (default value)
Code:
$vbulletin->templatecache['postbit_legacy'] = str_replace('Minutes','Mins',$vbulletin->templatecache['postbit_legacy']);
I tested this with the word Minutes directly in the postbit, and it works, I did not test it with this mod, but it should work.
|
Thanks for taking the time to do that Ozzy. When I posted this I thought that I had warned users this was my first attempt at anything like this.

Looking back now, I see that I seems to have not included that warning ....LOL
Thanks for looking out and lending a helping hand to us all... :up: Much appreciated!
I did check this out though with and without the code you supplied and I couldnt get it to change it. Im sure that I must be missing something.