Jump to content

Adriano Faria

Clients
  • Posts

    31,873
  • Joined

  • Days Won

    475

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by Adriano Faria

  1. You can't. As stated in its description, this is for admins and they will have access to all forums settings, including 3rd-party tabs, not only a few fields.
  2. Compatibility: IPS 4.2 IPS 4.1
  3. Seems functional to me:
  4. Working fine on 4.2.1:
  5. Compatibility: IPS 4.2 IPS 4.1
  6. No, without have the theme... anyway, even if I have it, I would have to change the plugin to fit the theme, which is not right. Talk with designer. Something in his theme is out of the pattern.
  7. Support:
  8. ....
  9. Did you select groups and forums? I tested this last week when I upgraded to IPS 4.2 and was working fine. Default theme?
  10. Just installed the plugin in another board to test and works fine: Press the REVERT button in case you've edited the postClubIcons template.
  11. The price comes formatted from Commerce, as I said: /** * Get Price * * @param float $cost The cost * @param string $nexusPackageIds Comma-delimited list of associated package IDs * @return \IPS\nexus\Money|NULL */ public static function _price( $cost ) { if ( $cost ) { $currency = ( isset( $_SESSION['currency'] ) and in_array( $_SESSION['currency'], \IPS\nexus\Money::currencies() ) ) ? $_SESSION['currency'] : \IPS\nexus\Customer::loggedIn()->defaultCurrency(); /* If $cost is an empty JSON array, the conditional will evaluate false thus resulting in [] being passed to \IPS\nexus\Money (which will fail). */ $costs = json_decode( $cost, TRUE ); if ( is_array( $costs ) ) { if ( isset( $costs[ $currency ]['amount'] ) and $costs[ $currency ]['amount'] ) { return new \IPS\nexus\Money( $costs[ $currency ]['amount'], $currency ); } } else { return new \IPS\nexus\Money( $cost, $currency ); } } return NULL; } File: applications\raffles\sources\Raffle\Raffle.php: So 200, will return 200 USD, because it's bought in USD! $currency is who's in charge here. If you want to change it, feel free but you're on your own; I don't support code changes.
  12. You have the right to ask. I just replied. My app do not handle currencies or payment, etc. This is handled by Commerce. I can't "create" a currency in my app!
  13. No! Again:
  14. Anything related to CURRENCIES, PAYMENTS, etc., are handled by Commerce, not by my app.
  15. What's New in Version 1.0.12.2: Fix: Fix owner permission in the Add Members menu option New: Clubs icons re styled in post bit.
  16. I have no plans for this app for this year, at least. .
  17. I don't support code changes. You're on your own if you do. If ANYTHING goes wrong, you will only havr support again if UNINSTALL your version and install mine. As I already said, I have absolutely no plans to add new type of quizzes in this app so soon.
  18. What's New in Version 1.0.2: New feature: raffles submitter and moderator with proper permission are now able to change the ticket price Fix: all bugs reported in the Tracker
  19. Yes. Support is provided for iAwards only. Anything related to Rules, that's not up to me, as I never used, etc.
  20. Raffles 1.0.2 RC 1 is available to be tested: http://www.sosinvision.com.br/ips4/index.php?/files/file/29-raffles/ Please, test it and report bugs in the Tracker: http://www.sosinvision.com.br/ips4/index.php?/tracker/raffles/
  21. So you want to see if it's possible to show the custom field ONLY if it's filled by the owner?
  22. @xtech, I just played a bit and you can use like that, if you want, without any custom CSS, etc.: {{if settings.clubsenhancementsShowPostBadge}} {{$theClubs = \IPS\Member\Club::clubs( $comment->author(), NULL, \IPS\Settings::i()->clubsenhancementsShowPostBadgeDisplay, TRUE );$clubCount=count($theClubs);}} {{if $clubCount > 0}} {{$cont = 0;}} <div class='ipsAreaBackground ipsPad ipsType_center ipsSpacer_top'> <div class="ipsType_normal ipsType_center ipsSpacer_bottom"><a href='{$comment->author()->url()->setQueryString( 'tab', 'clubs' )}'>{lang="my_clubs"}</a></div> {{$order = \IPS\Settings::i()->clubsenhancementsShowPostBadgeDisplay;}} {{foreach \IPS\Member\Club::clubs( $comment->author(), NULL, $order, TRUE ) as $club}} {{if $club->canView()}} <span data-ipsTooltip title='{$club->name}'>{template="clubIcon" group="clubs" app="core" params="$club, 'tiny'"}</span> {{$cont++;}} {{if settings.clubsenhancementsShowPostBadgeNr > 0 AND settings.clubsenhancementsShowPostBadgeNr == $cont}} {{break;}} {{endif}} {{endif}} {{endforeach}} </div> {{endif}} {{endif}} Results: Or even with a darker background: The user Mary Doe isn't member of any club so it doesn't appear. My Clubs is linked to the Clubs tab in user profile. Guess I will use it.
  23. Ok, guess you mean this? Wouldn't be easier to set the field as required?
  24. I'm not sure what you're talking about. 1 - Created a custom field for the club: - Added any value to the field in the club settings: And it displays: What do you mean by " a long list of empty fields"? Where?
  25. Impossible to remove Commerce. @Claire Field, integrate in which way? What are expecting or want the app to do?
×
×
  • Create New...