The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
IBank - Simple, Flexible, Integratible bankin system for any cash system! Details »» | |||||||||||||||||||||||||||
IBank - Simple, Flexible, Integratible bankin system for any cash system!
Developer Last Online: Jul 2018
Simple banking system for any points mod.
This required a cash mod to be installed! (ICash Vbux or anything else.) To install, simply upload ibank.php to your forum root and Import the xml file. Once installed make sure you go into the IBank options under vbulletin options and set the money row to match the one used by your cash system. Link to the IBank in your navbar! Works with: All current versions of vbulletin. Show Your Support
|
Comments |
#122
|
||||
|
||||
Out of curiosity, is this integratable with Nexia's Point System?
-Skip |
#123
|
||||
|
||||
Hi,
How do I make a dropdown menu on the Navbar so members can access the Bank, shop, inventory and so on? it may be alot easier than having everything separate |
#125
|
||||
|
||||
Thanks for the info
|
#126
|
||||
|
||||
I took a look at the info you gave me which is greate info, but it shows how to add a link to the
Quote:
thanks again |
#127
|
|||
|
|||
if you look at that page there are even the instructions to put a new dropdown menu.
Or to add an additional popup menu to the navbar... Admin CP -> Styles & Templates -> Style Manager -> ? ? -> Navigation / Breadcrumb Templates -> navbar Find this code and add the red code: Code:
<!-- nav buttons bar --> <div align="center"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px"> <tr align="center"> <td class="vbmenu_control"><a href="URL">TEXT</a></td> <if condition="$show['member']"> <td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td> </if> <if condition="$show['registerbutton']"> <td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td> </if> <td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td> <td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td> <td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td> <if condition="$show['popups']"> <if condition="$show['searchbuttons']"> <if condition="$show['member']"> <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td> <else /> <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td> </if> <td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td> </if> <if condition="$show['member']"> <td id="usercptools" class="vbmenu_control"><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td> </if> <td id="mypopupmenu" class="vbmenu_control"><a href="#mypopupmenu">MENU TITLE</a> <script type="text/javascript"> vbmenu_register("mypopupmenu"); </script></td> <else /> <if condition="$show['searchbuttons']"> <td class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4">$vbphrase[search]</a></td> <if condition="$show['member']"> <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td> <else /> <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td> </if> </if> <td class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a></td> <if condition="$show['member']"> <td class="vbmenu_control"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td> </if> </if> <if condition="$show['member']"> <td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()">$vbphrase[log_out]</a></td> </if> </tr> </table> </div> <!-- / nav buttons bar --> Then in that same template, scroll to the very bottom. Add the the red code: Code:
<!-- PAGENAV POPUP --> <div class="vbmenu_popup" id="pagenav_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead" nowrap="nowrap">$vbphrase[go_to_page]</td> </tr> <tr> <td class="vbmenu_option" title="nohilite"> <form action="$vboptions[forumhome].php" method="get" onsubmit="return this.gotopage()" id="pagenav_form"> <input type="text" class="bginput" id="pagenav_itxt" style="font-size:11px" size="4" /> <input type="button" class="button" id="pagenav_ibtn" value="$vbphrase[go]" /> </form> </td> </tr> </table> </div> <!-- mypopupmenu --> <div class="vbmenu_popup" id="mypopupmenu_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr><td class="thead">MENU TITLE</td></tr> <tr><td class="vbmenu_option"><a href="URL">LINKED TEXT</a></td></tr> </table> </div> <!-- / mypopupmenu --> <!-- / PAGENAV POPUP --> The blue code is the link of the pop up menu. Add more blue codes (always inside the red one) to have more links on the dropdown menu. |
#128
|
||||
|
||||
Add Bank access to ishop
Go to Admin CP -> Styles & Templates -> Style Manager ->ishop template Find Code: Quote:
Add below: Quote:
|
#129
|
||||
|
||||
Man how in the world did I miss that? lol I think it`s time for some zzzzz :up:
Thanks again "pollon" |
#130
|
|||
|
|||
Quote:
Try my Update, it can fix all knowed issues Just download the attachement file then Replace your own ibank.php ! |
#131
|
|||
|
|||
Quote:
I downloaded and installed your .php and the interest is being calculated and added to to the bank account balance accurately. For whatever reason, I need to set my interest rate two decimal places to the left of my intended rate in iBank options. So to give 1% interest per day, I set the rate to .01. Thought you might want to be aware of this. But I am getting interest on the account balances now, so this is a great improvement! Thanks, again, very much. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|