Jump to content

Current ranks – and – Reputation


Recommended Posts

Reputation Points

I see that the new version 4.6 has removed reputation points.

This is a real shame because these kinds of things are important to lots of people – both because they like to be able to demonstrate how they have been valued by others – and also because it gives newcomers a better sense of the value of the advice they are giving from other members.
Now this has gone and there isn't even a choice to display reputation points.
It's great that Invision regularly updates the platform, but it's not so great that Invision makes these kinds of decisions on behalf of all of its clients simply to remove features without too much consultation.

Has there been any consultation about this? Maybe somebody could link me to the discussion.

Current Ranks

Having removed reputation points it seems that Invision has now introduced a ranking system. All well and good – but as usual this is to be no choice other than possibly to go round deleting each individual rank and if that happens, I'm not too sure what gets displayed.

Anyway I have no problem with ranks but what I find been extraordinary is that even long-standing members of the community – and this includes administrators and other site team, seem to have had their "current ranks" set at – zero – Newbie.

I have a sense that this wasn't intended and so something has been overlooked in the implementation.

It would also be nice to have a choice "display current rank? – Y/N"
we would probably choose to keep the current ranking system but streamlines a bit.

We certainly like the reputation points back please

Link to comment
Share on other sites

Hi, 

The reputation system is still "alive", it is just not displayed anymore in the author's pane (left side of a post). We've restored it back by modifying the template in the theme. It is a little "tricky" because there is three places where you need to do it in your theme forums/front/topics/postContainer template file : 

. to restore reputation badges/levels, around original line 110, add the following code after the </li> :

{{if $comment->author()->reputationImage()}}
    <li data-role='reputation-image' class='ipsPadding:half'>
        <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''>
    </li>
{{endif}}

so you'll obtain something that looks like this, considering surrounding code :

        </ul>
    </li>          
{{if $comment->author()->reputationImage()}}
    <li data-role='reputation-image' class='ipsPadding:half'>
        <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''>
    </li>
{{endif}}
{{endif}}
{{if $comment->author()->member_id}}

so, it is important to place the new code after both </ul> and </li> ending the counters line.

 

. To restore the reputation counter, add the following code around original line 96, just after the <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> :

<li data-role='reputation-badge'>
    {template="reputationBadge" group="global" app="core" params="$comment->author()"}
</li>

so you'll obtain something that looks like (considering surrounding code) :

<ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats">
    <li data-role='reputation-badge'>
        {template="reputationBadge" group="global" app="core" params="$comment->author()"}
    </li>
{{if isset( $comment->author_solved_count )}}
    <li>

 

Edit for mobile display (add back reputation counter on mobile devices display) :

. To restore the reputation counter in mobiles display, add the following code around original line 57, inside the <h3> just after the {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), TRUE, $comment->isAnonymous()"} and before the </h3>

&nbsp;
<span class="ipsType_medium">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</span> 

so you'll obtain something that looks like (considering surrounding code) : 

<h3 class='ipsType_sectionHead cAuthorPane_author ipsType_break ipsType_blendLinks ipsFlex ipsFlex-ai:center'>                               	 {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), TRUE, $comment->isAnonymous()"}
	&nbsp;
	<span class="ipsType_medium">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</span>                
</h3>

 

Save your template file, reload your topic : job done !

Edited by Dexter_X
Link to comment
Share on other sites

Thanks very much indeed for this rapid response.

I'm afraid that I'm very chary of mucking around with the theme and we keep ours as a standard theme but with colour changes.

Any time we get any problems with third-party routines, the first question is always whether we have a custom theme and so I prefer not to go there.

I rather hope that somebody will come along with a plug-in which will deal with the matter – and of course it would be nice if the Invision team didn't assume to "know what's best" for their customers and the probably millions of people who rely on those forums for one reason or another.

I understand that at the top of the Invision development tree are 11 developers. I'd be interested to know what the decision-making process is when they decide to change long-standing forum cultures and not even allow Choice.

Seems a bit Republican to me.

Link to comment
Share on other sites

So, I see a change from the first "fix" a couple of days ago

now you say -- so, it is important to place the new code after both </ul> and </li> ending the counters line.

Which makes both the reputation points and the number of posts on the same line.

Why can it not be like it was with the pic (where I had the new code originally)--

BTW I added the word "Posts" in the template

posts.png

Edited by Genestoy
Link to comment
Share on other sites

Just tested and works fine in this location

			{{if $comment->author()->member_id}}
    				<li data-role='stats' class='ipsMargin_top'>
                <li data-role='reputation-badge'>
                      {template="reputationBadge" group="global" app="core" params="$comment->author()"}
                     </li>                      
 					<ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats">
                     	<li>

 

 

posts2.png

Edited by Genestoy
Link to comment
Share on other sites

10 minutes ago, BankFodder said:

I wonder what Invision are going to do about the very obvious glitch that even people with large numbers of posts are ranked as newbies on their new ranking system.

This has to be a bug

that's another question, part of the problem cames from a bug in the ranking rules that makes users get more points than expected (should be solved in next release 4.6.3 during next week, according to support). But you can also modify your rules system to reward users in the way you want to encourage more in your community. Did you even have take a look at the default rules ? Only by doing that you'll be able to better understand how it works. And you can also in the ACP go to a user profile (ACP mode) and click on the achievements details to see how the user has got his points. You've everything you need to better understand and to set it up as you need or expect.

Link to comment
Share on other sites

Thanks. I understand very well how it works but I know what is going to happen when we upgrade to 4.6 – will be overwhelmed by people contacting us and asking why they been relegated to Newbies when they are long-standing members with substantial postcards.

I don't think I could stand it.

I think I'll wait until 4.6.3 before upgrading.

Link to comment
Share on other sites

1 hour ago, Nathan Explosion said:

Or you could run the provided rebuild tool, to retroactively apply the new rules, prior to reopening your site post-upgrade.

I think (and hope !) @BankFodder already knows about that tool. I think @BankFodder has already seen some inconsistencies in the retroactively application of rules on a community. If it is not the case, I'm sorry but @BankFodder : you need to test before to talk about it as you already know (!?)...

Link to comment
Share on other sites

Thanks for this. I started running it last night on the test site. It said it will take several days!

Interestingly, there is an option to switch the system on or off. Invision has actually allowed customer choice here!
However no choice allowed with reputation points.

The lack of consistency in this kind of thing and elsewhere – data screens for instance – makes me think that the platform is planned by different committees which never talk to each other

Edited by BankFodder
Link to comment
Share on other sites

And the rebuilding has finished and the achievements/ranks are working correctly.

Thanks very much. Maybe there are instructions which I should have read more closely.

And so now here's the next thing to ask – because there's always something else.

Is there any way of turning off the achievements for different groups?

I'd rather not have achievements in place for the site team.

And ideally I'd like to have reputation points back on display without having to interfere with the theme

Link to comment
Share on other sites

7 hours ago, Clover13 said:

I'm working through the new ranks and badge system.  The included rebuild process works well, but you'll have to run it initially to see how your members rank.  I had too many already up to the max level so I'm reweighting and rebuilding again. 

Quoted myself because this was actually incorrect.  You can change the rank points and it will show you the number of members who fall into that before execute the rank updates.  That's a great feature that saves the time crunch of doing the update.

Lots of really cool features in this update, the rank/awards system is quite robust.  Nicely done!

Link to comment
Share on other sites

Blow me. You're right!

I need to be more careful.

That makes it a near-perfect system then. However I would really like the return of the reputation points display.

As the points are still in place, I'm sure somebody will come up with a plug-in to do it

Link to comment
Share on other sites

19 hours ago, Genestoy said:

So, I see a change from the first "fix" a couple of days ago

now you say -- so, it is important to place the new code after both </ul> and </li> ending the counters line.

Which makes both the reputation points and the number of posts on the same line.

Why can it not be like it was with the pic (where I had the new code originally)--

BTW I added the word "Posts" in the template

posts.png

 

Hi,

Where to insert the word "Posts" please?

Thanks!

Link to comment
Share on other sites

14 minutes ago, waccoe.com said:

 

Hi,

Where to insert the word "Posts" please?

Thanks!

ACP> Customizations> Themes> Your theme> </> > Templates tab

Type postContainer in the search box above the templates tab

forums> front> topics> postContainer


add the word Posts on line 98

	<i class="fa fa-comment"></i> {number="$comment->author()->member_posts" format="short"} Posts</a>
						</li>
						{{if isset( $comment->author_solved_count )}}

 

Edited by Genestoy
Link to comment
Share on other sites

On 6/27/2021 at 5:25 AM, Dexter_X said:

Hi, 

The reputation system is still "alive", it is just not displayed anymore in the author's pane (left side of a post). We've restored it back by modifying the template in the theme. It is a little "tricky" because there is two places where you need to do it in your theme forums/front/topics/postContainer template file : 

. to restore reputation badges/levels, around original line 110, add the following code after the </li> :

{{if $comment->author()->reputationImage()}}
    <li data-role='reputation-image' class='ipsPadding:half'>
        <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''>
    </li>
{{endif}}

so you'll obtain something that looks like this, considering surrounding code :

        </ul>
    </li>          
{{if $comment->author()->reputationImage()}}
    <li data-role='reputation-image' class='ipsPadding:half'>
        <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''>
    </li>
{{endif}}
{{endif}}
{{if $comment->author()->member_id}}

so, it is important to place the new code after both </ul> and </li> ending the counters line.

 

. To restore the reputation counter, add the following code around original line 96, just after the <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> :

<li data-role='reputation-badge'>
    {template="reputationBadge" group="global" app="core" params="$comment->author()"}
</li>

so you'll obtain something that looks like (considering surrounding code) :

<ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats">
    <li data-role='reputation-badge'>
        {template="reputationBadge" group="global" app="core" params="$comment->author()"}
    </li>
{{if isset( $comment->author_solved_count )}}
    <li>

 

Save your template file, reload your topic : job done !

 

20 hours ago, Genestoy said:

Just tested and works fine in this location

			{{if $comment->author()->member_id}}
    				<li data-role='stats' class='ipsMargin_top'>
                <li data-role='reputation-badge'>
                      {template="reputationBadge" group="global" app="core" params="$comment->author()"}
                     </li>                      
 					<ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats">
                     	<li>

 

 

posts2.png

Thank you @Dexter_X and @Genestoy. Both of these adjustments worked great on our forum. No longer having Reputation count on the author pane was frustrating for some of our users, but now they have it back. Appreciated.

Link to comment
Share on other sites

2 minutes ago, Andy135 said:

 

Thank you @Dexter_X and @Genestoy. Both of these adjustments worked great on our forum. No longer having Reputation count on the author pane was frustrating for some of our users, but now they have it back. Appreciated.

@Jordan Invision @Matt @Rikki @bfarber @Andy Millne @Stuart Silvester @Mark @Ryan Ashbrook @Ehren

 

Hey guys – I think probably quite a lot of people would like to have the reputation points being displayed again. How about simply having a choice to switch them on or off in the same way that is now possible with the achievement system?

Consistency AND Choice. – What's not to like?

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...