Status
Not open for further replies.
Hello,

on 4.2 there are no links to the Creditssystem or to buy more credits.
Also the Memberlist shows the sortbutton instead of the credits of the user.

regards

edit:
Someone got awarded twice for registering:


vor 42 Minuten, 12:52:53
Welcome
theking2502
Earned 102,00 Blut
vor 43 Minuten, 12:52:01
Welcome
theking2502
Earned 104,00 Blut
 
Last edited:
The navtab can be fixed by adding this plugin:

Product: vBCredits II Deluxe
Hook Location: build_navigation_array
Title: vBCredits II - Navtab vB4.2
Execution Order: 5
Plugin is Active: Yes
Plugin PHP Code:
PHP:
global $vbulletin;

if ($vbulletin->options['credits_enable_navtab'])
{
    $result['credits'] = array(
        'text' => $vbphrase['credits_transactions'],
        'url' => 'credits.php{session.sessionurl_q}',
        'productid' => 'credits',
        'navid' => 'credits',
        'name' => 'credits',
        'scripts' => 'credits',
        'displayorder' => 40,
        'navtype' => 'tab',
        'active' => 1
    );

    function credits_tab_sort($a, $b) { return ($a['displayorder'] == $b['displayorder'] ? 0 : ($a['displayorder'] > $b['displayorder'] ? 1 : -1)); }
    uasort($result, 'credits_tab_sort');
}

the memberlist issue has been reported elsewhere and is being handled there.

are you restricting the usergroups that earn your Welcome award? Otherwise, going through the email verification/moderation process actually counts as going through two welcomes.
 
Can you add that fix as temporary XML file ?
Didn't setup any plugins manually yet.

I didn't change much on the settings.
So I don't think they are restricted.
And yes, they must confirm their mailadresses.
 
Attached is the same plugin as an xml.
In your admincp, go to Plugins & Products > Download / Upload Plugins > at the bottom, upload at Import Plugin Definitions XML File

(this isnt the same as the regular product import)

Edit your Welcome event in vbcredits to make sure only the Registered usergroup is selected
 

Attachments

Last edited:
Thanks. Works :)

But there seem to be some links missing?
I setup options that should enable users to buy more credits, but I am very unable to find the option for that on the board ?
 
The navtab is only the one tab at the top - what other links do you think are missing?

If you set up conversion rates, you also need to add a Purchase event. If you have one, paste a screenshot of the settings for it.
 
I setup a conversation.
Was 100 Credts with a price of 0.01€ per credit.

So this is not an extra thing users can buy (except I make an empty selling?) but that it just gives extra credits if someone buys something ?
 
You need to make sure there is an Activity Amounts Configuration created and enabled for that currency. If there isn't, just add one with default values and it should be good.

Users can then access the form to buy credits anywhere their currency amounts are displayed, by clicking the link and chosing to buy from the popup
 
Status
Not open for further replies.

Legacy vBCredits II Deluxe

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
845
Customer rating
0.00 star(s) 0 ratings
Back
Top