Hello! I'm thinking about buying XenForo but there's one thing I haven't been able to find on the forum or on google. I need the ability to create user upgrades, which XenForo supports natively, and from what I can see after hours of googling is that it uses it's own IPN to work out the PayPal transactions.
I need the above feature to stay intact but I also need to use an extra IPN for a Minecraft plugin that operates on another database. Since XenForo uses it's own PayPal form with the:
I cannot use the value from that input form. My other IPN needs to fetch the input above with the value="mc_account" from a custom field that the user has to type in at registration.
To the point:
a) Is it possible to somehow include the other IPN but "cut away" the default value XenForo uses in its name="custom" input tag and replace it with the value from a custom field? Then send this information to the other IPN.
b) Or could you just edit the code to instead say:
(i.e use another value than XenForo uses by default.)
Right now I'm using a phpBB forum that uses option b).
I certainly hope either a) or b) can be done because I really want to buy XenForo, and my server is completely funded by donations so it is crucial that a feature like this could be used.
Very sorry for the overcomplicated and long explanation!
I need the above feature to stay intact but I also need to use an extra IPN for a Minecraft plugin that operates on another database. Since XenForo uses it's own PayPal form with the:
HTML:
<input type="hidden" name="custom" value="{$visitor.user_id},{$upgrade.user_upgrade_id},token,{$visitor.csrf_token_page}" />
To the point:
a) Is it possible to somehow include the other IPN but "cut away" the default value XenForo uses in its name="custom" input tag and replace it with the value from a custom field? Then send this information to the other IPN.
b) Or could you just edit the code to instead say:
HTML:
<input type="text" name="custom" value="Enter Minecraft IGN" />
Right now I'm using a phpBB forum that uses option b).
I certainly hope either a) or b) can be done because I really want to buy XenForo, and my server is completely funded by donations so it is crucial that a feature like this could be used.
Very sorry for the overcomplicated and long explanation!