Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted July 8, 20213 yr Love the points system, I see where it tells me how many points until my next rank. But where does my point total show? Is there a way for my users to see how their points totals happened, like I can see in the AdminCP?
July 8, 20213 yr Author Nope, I think you'll need to modify the template to do so. Yeah that was my next thought, do I have to modify a template. Or write a nightly dump of everyones points into a uneditable custom profile field.
July 9, 20213 yr Use at your own risk The following will place the member's achievement points total below their group title Edit forums > front -> topics -> postContainer After: {{if $comment->author()->member_id}} <li data-role='stats' class='ipsMargin_top'> <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> Add: {{if isset( $comment->author()->achievements_points )}} <li> <a href="{url="app=core&module=members&controller=profile&id={$comment->author()->member_id}&do=badges" seoTemplate="profile_badges" seoTitle="$comment->author()->members_seo_name"}" title="{lang="achievements_awards_points" pluralize="$comment->author()->achievements_points"}" data-ipsTooltip class="ipsType_blendLinks"> <i class="fa fa-bathtub"></i> {number="$comment->author()->achievements_points" format="short"} </a> </li> {{endif}} Result: