Jump to content

the_link

Rookie
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Language
    Spanish
  • Software
    IPS4
  • Version
    4.3.6

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

the_link's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In
  • Reacting Well

Recent Badges

0

Reputation

  1. {{$member = \IPS\Member::load( $comment->author()->member_id );}} {{$points = $member->balance( 1, 0 );}} <hr class='euip_Hr {{if \IPS\Settings::i()->euip_UserGroupHidePhone == 1}}ipsResponsive_hidePhone{{endif}}'> <li class='euip_Border {{if \IPS\Settings::i()->euip_UserGroupHidePhone == 1}}ipsResponsive_hidePhone{{endif}}'> <span class='euip_Title'><span style='color:#FF0000'><i class="fa fa-money"></i></span> <span style='color:#FF0000'>Creditos:</span></span> <span class='euip_Content'><span style='color:#00ff00'><img src="uploads/evow.gif"> </span><span style='font-weight:bold; color:#01af01'>{$points->available}</span></span> </li> this code is for post container, change text "Creditos" for your points name, this is valid only Points Economy, what app you use?
  2. First try to disable all plugins, then extra applications, it is possible that the error is due to an outdated plugin or application
  3. add this code {{$addWarningUrl = \IPS\Http\Url::internal( "app=core&module=system&controller=warnings&do=warn&id={$member->member_id}", 'front', 'warn_add', array( $member->members_seo_name ) );}} {{$wr = base64_encode( json_encode( array( 'app' => 'forums', 'module' => 'forums-comment' , 'id_1' => $comment->topic_id, 'id_2' => $comment->pid ) ) );}} {{$addWarningUrl = $addWarningUrl->setQueryString( 'ref', $wr );}} <ul class="ipsList_inline ipsType_blendLinks ipsSpacer_top"> {{if !$member->members_disable_pm and !\IPS\Member::loggedIn()->members_disable_pm and \IPS\Member::loggedIn()->canAccessModule( \IPS\Application\Module::get( 'core', 'messaging' ) )}} <li data-ipsTooltip title="{lang="message_send"}" class="ipsType_light"> <a href='{url="app=core&module=messaging&controller=messenger&do=compose&to={$member->member_id}&fromPost={$comment->pid}" seoTemplate="messenger_compose"}' data-ipsDialog data-ipsDialog-title='{lang="compose_new"}' data-ipsDialog-remoteSubmit data-ipsDialog-flashMessage="{lang="message_sent"}" data-ipsDialog-forceReload><i class='fa fa-envelope'></i></a> </li> {{endif}} {{if \IPS\Settings::i()->uopbShowIgnore AND \IPS\Member::loggedIn()->member_id && $member->member_id != \IPS\Member::loggedIn()->member_id}} <li data-ipsTooltip title="{lang="add_ignore"}" class="ipsType_light"> <a href="{url="app=core&module=system&controller=ignore&id={$member->member_id}" csrf="true" seoTemplate="ignore"}"><i class='fa fa-times-circle'></i></a> </li> {{endif}} <li data-ipsTooltip title="{lang="find_content"}" class="ipsType_light"> <a href="{url="app=core&module=members&controller=profile&id={$member->member_id}" base="front" seoTemplate="profile_content" seoTitle="$member->members_seo_name"}"><i class='fa fa-search'></i></a> </li> {{if member.modPermission('can_flag_as_spammer') and $member->member_id != member.member_id and !$member->modPermission() and !$member->isAdmin()}} {{if $member->members_bitoptions['bw_is_spammer']}} <li data-ipsTooltip title="{lang="spam_unflag"}" class="ipsType_light"><a href='{url="app=core&module=system&controller=moderation&id={$member->member_id}&s=0&referrer={$referrer}" seoTemplate="flag_as_spammer" seoTitle="$member->members_seo_name" csrf="true"}' data-confirm data-confirmSubMessage="{lang="spam_unflag_confirm"}"><i class="fa fa-flag"></i></a></li> {{else}} <li data-ipsTooltip title="{lang="spam_flag"}" class="ipsType_light"><a href='{url="app=core&module=system&controller=moderation&id={$member->member_id}&s=1&referrer={$referrer}" seoTemplate="flag_as_spammer" seoTitle="$member->members_seo_name" csrf="true"}' data-confirm><i class="fa fa-flag"></i></a></li> {{endif}} {{endif}} {{if member.canWarn( $member )}} <li data-ipsTooltip title="{lang="warn_user_title"}" class="ipsType_light"><a href="{$addWarningUrl}" data-ipsDialog data-ipsDialog-title='{lang="warn_user"}'><i class="fa fa-exclamation-triangle"></i></a></li> {{endif}} </ul> add it to the EnhancedUserInfoPanel html template at the end or wherever you want it
  4. {{if member.group['g_basicpoints_view'] OR member.group['g_basicpoints_manage']}} {{if member.group['g_basicpoints_view']}} <span style='color:#fff'>{lang="basicPoints_name_value"}: </span>{{if member.group['g_basicpoints_manage']}} <a href='{$member->url()->setQueryString( array( 'tab' => 'node_basicpoints_Basicpoints' ) )}' class='ipsType_blendLinks3'> {{endif}} {lang="basicPoints_prefix_value"}{number="$member->member_points"}{{if member.group['g_basicpoints_manage']}}</a>{{endif}}&nbsp; {{endif}} {{if member.group['g_basicpoints_manage']}} <a href='{url="app=basicpoints&module=basicpoints&controller=submit&do=editcount&id={$member->member_id}" base="front"}' class='ipsType_blendLinks3' data-ipsDialog data-ipsDialog-modal='true' data-ipsDialog-title='{lang="points_count_edit"}'> <i class='fa fa-pencil-square'></i>&nbsp;</span> </a> {{endif}} {{endif}}
  5. <span style='color:#fff000'>{lang="credit_balance"}</span> <a style="color: #0931ff;" href="https://evolution-world.net/index.php?/clients/credit/"> <span style='color:#02ff00'><br> {{foreach \IPS\nexus\Money::currencies() as $currency}} {{if isset( $customer->cm_credits[ $currency ] )}} {$customer->cm_credits[ $currency ]} {{else}} {money="0" currency="$currency"} {{endif}} {{endforeach}} </span> </a> add this code in your template, display your credit balance for Commerce
  6. Hello, are chat users linked to the site? Or are separate users created?
×
×
  • Create New...