Hi dear reader, Question? We use Waindigo's trophies on our forum. How to manage that we give a trophy by earned credits?
Hello, I think you can ask Waindigo to edit their addon to solve your request. If we do that, you must to pay extra fee for this custom works. Regards,
@Paul As we said that If we do that, you must to pay extra fee for this custom works. About your question, you need to make sure that you use only 1 currency / or select a default currency to display as this. Open template BRC_navigation_visitor_tabs_end and find Code: <a href="{xen:link 'credits'}" rel="Menu" class="navLink NoPopupGadget">{xen:phrase BRC_credit}</a> Replace with Code: <a href="{xen:link 'credits'}" rel="Menu" class="navLink NoPopupGadget">{$currency.code}:{xen:helper brc_currencyformat, {$visitor.{$currency.column}},true,{$currency.currency_id}}</a> Regards,
"As we said that If we do that, you must to pay extra fee for this custom works" Price please? and thanks a lot for the code, appreciate it! Happy New Year!
Hi Paul, Because currencies is an array, so you can change with 2 ways. Replace Code: <a href="{xen:link 'credits'}" rel="Menu" class="navLink NoPopupGadget">{xen:phrase BRC_credit}</a> by Code: <xen:if is="{$currencies}"> <xen:foreach loop="$currencies" key="$_currency" value="$currency"> <xen:if is="{$currency.currency_id}==1"> <a href="{xen:link 'credits'}" rel="Menu" class="navLink NoPopupGadget">{xen:helper brc_currencyformat, {$visitor.{$currency.column}},true,{$currency.currency_id}}</a> <xen:set var="$currencyReplaced">1</xen:set> </xen:if> </xen:foreach> </xen:if> <xen:if is="!{$currencyReplaced}"> <a href="{xen:link 'credits'}" rel="Menu" class="navLink NoPopupGadget">{xen:phrase BRC_credit}</a> </xen:if> or Code: <xen:if is="{$currencies} && {$currencies.1}"> <a href="{xen:link 'credits'}" rel="Menu" class="navLink NoPopupGadget">{xen:helper brc_currencyformat, {$visitor.{$currencies.1.column}},true,{$currencies.1.currency_id}}</a> <xen:set var="$currencyReplaced">1</xen:set> </xen:if> <xen:if is="!{$currencyReplaced}"> <a href="{xen:link 'credits'}" rel="Menu" class="navLink NoPopupGadget">{xen:phrase BRC_credit}</a> </xen:if> Replace "1" with currency id which you want to display. Regards, and Happy New Year !!!
What is the price to give "Waindigo" trophies for credits? Also. What is the price to have the credits shown like this > with a visual before the "credits" as Empire Avenue does?