The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
2 fairly quick questions in postbit_legacy
I am using the vertical postbit_legacy
The 2 questions I have is how do I make boxes around the other stats that make it look all the same? http://imageshack.us/photo/my-images...bitscreen.jpg/ <---- screen shot of my current postbit The second question is, I have tried the search in phrases but I wanna change "vCash" to "Fan Cash" and I'm not sure how to do that. Thanks to anyone who can help out because I am having a hard time figuring this out! |
#2
|
||||
|
||||
you need to open the templates(or plugins) that those mods use to insert the code into the postbit and wrap the 'stats' in the same DOM element that the default style (your custom postbit style) uses.
|
Благодарность от: | ||
DJDynasty239 |
#3
|
|||
|
|||
Quote:
I'm scrolling through the coding of the postbit_legacy and I don't see anything like "cells" or anything like it would show in the older vBulletins. Any advice you can give me? |
#4
|
||||
|
||||
For starters
open template blog_postbit_entries_link REPLACE ALL WITH Code:
<div class="eti_postbit"> {vb:rawphrase blog_entries} : <a href="{vb:link blog, {vb:raw post}, null, 'userid', 'blog_title'}">{vb:raw post.entries}</a> </div> Then go to AdminCP->Plugins and Products->Plugin Manager-> edit the file with the Title: vBookie: Add Cash to Postbit Hook Location: postbit_display_complete REPLACE ALL WITH Code:
if (($this->registry->options['vbookieactive']) && ($this->registry->options['vbookiecash']=="vCash") && ($this->registry->options['vbookiecashon'])) { $template_hook[postbit_userinfo_right_after_posts] .= "<div class='eti_postbit'>" . $vbphrase['vbookie_vcash'] . " : " . $post['vbookie_cash'] . "</div>"; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|