Quote:
Originally Posted by Zakalway
This is great! One thing: is there any way to remove the "User Title: " part and just have it be the custom title text underneath the avatar?
|
Sorry for the delay Zakalway, if you want to remove that text you would need to edit the plugin code, its really simple so not much code to look at:
AdminCP > Plugins & Products > Plugin Manager > Postbit: Add custom user title to postbit and postbit_legacy.
FIND:
Code:
$replace_ut_pl = '<dl class="userinfo_extra"><dt>User Title</dt><dd>' .$post['usertitle'] . '</dd>';
REPLACE WITH:
Code:
$replace_ut_pl = '<dl class="userinfo_extra">' .$post['usertitle'] . '<br><br>';
Below is what this edit will output to the screen.
.Me