• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

[bd] Banking

If you check out my site, not going to spam the link but here is it's promotion topic. We have built a services section, and a member exchange section where the points can be traded and/or spent. Hope this helps ;)
 
If you want to install the new update, do I just overwrite the files with the new version? Is that the proper way to upgrade? Thanks.
 
Is there a way to add points for members who post blogs and albums?
 
If you want to install the new update, do I just overwrite the files with the new version? Is that the proper way to upgrade? Thanks.
Yes, I believe it is or that's what I do, ;)

Is there a way to add points for members who post blogs and albums?
No, unless you do it manually. Those aren't core features in xenForo 1.o/1.1.
Or, were you suggesting this idea?
 
You wouldn't happen to have an importer for phpbb3's ultimate points module, would you? If not, would you be able to make one easily enough? I have a friend who might be needing this soon, thanks!
 
Does anyone know how to remove the Attachment manager link and perhaps shift the Bank link over to before Help?
 
It would also be very nice to see an exclude forums option so money isnt earned in off topic forums etc :)
 
How can I remove the navigation tab link? I can't find it anywhere.
Enable debug mode at your forum then navigate :
Admin Control Panel -> Development -> Code Events & Listeners -> Code Event Listeners -> [bd] Banking -> navigation_tabs -> UnCheck

You wouldn't happen to have an importer for phpbb3's ultimate points module, would you?
None that I know of, ;)

Does anyone know how to remove the Attachment manager link
File: library/bdBank/Listeners.php
Find the contents below and remove it then save :
Code:
XenForo_Link::buildPublicLink("full:$route_prefix/attachment-manager") => new XenForo_Phrase('bdbank_attachment_manager'),

and perhaps shift the Bank link over to before Help?
Admin Control Panel -> Appearance -> Styles & Templates -> Templates ( make sure you're editing the right style ) -> navigation

Find and remove the contents below :

Code:
<!-- extra tabs: middle -->
<xen:if is="{$extraTabs.middle}">
<xen:foreach loop="$extraTabs.middle" key="$extraTabId" value="$extraTab">
<xen:if is="{$extraTab.linksTemplate}">
<li class="navTab {$extraTabId} {xen:if $extraTab.selected, 'selected', 'Popup PopupControl PopupClosed'}">
 
<a href="{$extraTab.href}" class="navLink">{$extraTab.title}</a>
<a href="{$extraTab.href}" class="SplitCtrl" rel="Menu"></a>
 
<div class="{xen:if {$extraTab.selected}, 'tabLinks', 'Menu JsOnly tabMenu'}">
<div class="primaryContent menuHeader">
<h3>{$extraTab.title}</h3>
<div class="muted">{xen:phrase quick_links}</div>
</div>
{xen:raw $extraTab.linksTemplate}
</div>
</li>
<xen:else />
<li class="navTab {xen:if $extraTab.selected, 'selected', 'PopupClosed'}">
<a href="{$extraTab.href}" class="navLink">{$extraTab.title}</a>
<xen:if is="{$extraTab.selected}"><div class="tabLinks"></div></xen:if>
</li>
</xen:if>
</xen:foreach>
</xen:if>

Then find :

Code:
<!-- help -->

Above it, paste the contents you removed above and save the template, ;)

Is this add on import kbank points from VB 4? I am using xenforo 1.1 latest version
From first post :
xfrocks said:
3. Importer integration: keep members' money from your vBulletin installation. Currently supports: vBCredits I, vBCredits II, kBank
 
@ M@rc - i have gone though main posts and also tried this add on test board but it didn't worked also screenshot are for VB 3 to xenforo conversation if possible anyone provide me conversation steps :)
 
Enable debug mode at your forum then navigate :
Admin Control Panel -> Development -> Code Events & Listeners -> Code Event Listeners -> [bd] Banking -> navigation_tabs -> UnCheck


None that I know of, ;)


File: library/bdBank/Listeners.php
Find the contents below and remove it then save :
Code:
XenForo_Link::buildPublicLink("full:$route_prefix/attachment-manager") => new XenForo_Phrase('bdbank_attachment_manager'),


Admin Control Panel -> Appearance -> Styles & Templates -> Templates ( make sure you're editing the right style ) -> navigation

Find and remove the contents below :

Code:
<!-- extra tabs: middle -->
<xen:if is="{$extraTabs.middle}">
<xen:foreach loop="$extraTabs.middle" key="$extraTabId" value="$extraTab">
<xen:if is="{$extraTab.linksTemplate}">
<li class="navTab {$extraTabId} {xen:if $extraTab.selected, 'selected', 'Popup PopupControl PopupClosed'}">
 
<a href="{$extraTab.href}" class="navLink">{$extraTab.title}</a>
<a href="{$extraTab.href}" class="SplitCtrl" rel="Menu"></a>
 
<div class="{xen:if {$extraTab.selected}, 'tabLinks', 'Menu JsOnly tabMenu'}">
<div class="primaryContent menuHeader">
<h3>{$extraTab.title}</h3>
<div class="muted">{xen:phrase quick_links}</div>
</div>
{xen:raw $extraTab.linksTemplate}
</div>
</li>
<xen:else />
<li class="navTab {xen:if $extraTab.selected, 'selected', 'PopupClosed'}">
<a href="{$extraTab.href}" class="navLink">{$extraTab.title}</a>
<xen:if is="{$extraTab.selected}"><div class="tabLinks"></div></xen:if>
</li>
</xen:if>
</xen:foreach>
</xen:if>

Then find :

Code:
<!-- help -->

Above it, paste the contents you removed above and save the template, ;)


From first post :

Thanks a lot M@rc :)
 
Back
Top Bottom