The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

[Tutorial] Reputation Levels

4 posters

Page 2 of 2 Previous  1, 2

Go down

Reputation limits - [Tutorial] Reputation Levels - Page 2 Empty [Tutorial] Reputation Levels

Post by Daemon July 20th 2017, 6:59 am

First topic message reminder :

With this code you can customize the reputation profile by adding levels according to the reputation number.

Reputation limits - [Tutorial] Reputation Levels - Page 2 Sem_ty10

Create a new JavaScript code with the following content (The placement "In topics" only):
Code:
/*
 *  Application: Reputation Levels
 *  Date: 14/06/2018
 *  Version: 2.014062018
 *  Copyright (c) 2018 Daemon <help.forumotion.com>
 *  This work is free. You can redistribute it and/or modify it
 */
function bs_reputation_ipb() {
 
/*
 * Configure below the levels for the reputation profile,
 * with the respective number needed to win it.
 * You can also add a class to customize the element.
 */
 
var reputation = [
    {
      reputation: 0,
      level: "Neutral",
      class: "zero"
    },
    {
      reputation: 1,
      level: "Beginner"
    },
    {
      reputation: 10,
      level: "Regular"
    },
    {
      reputation: 20,
      level: "Good"
    },
    {
      reputation: 35,
      level: "Great"
    },
    {
      reputation: 50,
      level: "Excellent",
      class: "awesome"
    }
];
 
/*
 * No need to change anything from here down
 */

    var post = $(".post"),
        level = "",
        repClass = "",
        BreakException = {};

    $.ajax({
        url: post.first().find("a[href^='/u']").attr("href"),
        type: "GET",
        success: function(data) {
            var fieldName = $("#field_id-14", data).find("dt").text().split(" ")[0],
                regExp = RegExp("<span[^>]*>(?:<span[^>]*>)?(" + fieldName + ")(?:<\\/span>)?\\s:\\s<\\/span>\\s*(\\d+)", "g");
            $.each($(".post"), function(idx) {
                $(this).html(
                    $(this).html()
                    .replace(regExp, "<div class='reputation-bs'>$1 : $2<br><span class='title' style='font-weight:normal'></span></div>")
                );
                var repDiv = $(".reputation-bs", this),
                    fieldValue = repDiv.text().match(/\d+/);
                try {
                    $.each(reputation, function(i, item) {
                        if (item.reputation <= fieldValue) {
                            level = (item.level) ? item.level : "",
                            repClass = (item.class) ? item.class : "";
                        } else {
                            throw BreakException;
                        }
                    });
                } catch (e) {
                    if (e !== BreakException) throw e;
                }
                repDiv.addClass(repClass).find(".title").text(level);
            });
        },
        error: function(jqXHR, textStatus, errorThrown) {
            console.log(textStatus, errorThrown);
        }
    });
 
};
$(function() {
    bs_reputation_ipb();
});
Add the following in your css stylesheet:
Code:
.reputation-bs {
  background-color: #DFF0D8;
  font-weight: bold;
  padding: 3px 8px;
  display: block !important;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #3C763D;
  margin: 5px auto;
  font-family: Lato,Arial,Helvetica,sans-serif;
  font-size: 13px;
  margin-bottom: 5px;
  max-width: 123px;
  text-align: center;
}
.reputation-bs.zero {
  background: none repeat scroll 0% 0% rgba(222, 222, 222, 0.34);
  color: #6e6e6e;
}
The instructions are inside the code.
Wink


Last edited by Daemon on June 25th 2018, 8:03 pm; edited 15 times in total
Daemon
Daemon
Forumember

Posts : 104
Reputation : 90
Language : Português

Back to top Go down


Reputation limits - [Tutorial] Reputation Levels - Page 2 Empty Re: [Tutorial] Reputation Levels

Post by SLGray August 6th 2017, 8:38 pm

AP > Modules > Points/Reputation > Reputation


Reputation limits - [Tutorial] Reputation Levels - Page 2 Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Reputation limits - [Tutorial] Reputation Levels - Page 2 Empty Re: [Tutorial] Reputation Levels

Post by smurfavr August 6th 2017, 8:41 pm

Thank you SLGray. Now it works.
smurfavr
smurfavr
Active Poster

Male Posts : 1883
Reputation : 22
Language : Bulgarian

http://smurfa.bulgarianforum.net/

Back to top Go down

Reputation limits - [Tutorial] Reputation Levels - Page 2 Empty Re: [Tutorial] Reputation Levels

Post by SLGray August 6th 2017, 8:45 pm

You're welcome.


Reputation limits - [Tutorial] Reputation Levels - Page 2 Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Reputation limits - [Tutorial] Reputation Levels - Page 2 Empty Re: [Tutorial] Reputation Levels

Post by Daemon April 20th 2018, 11:08 pm

I made a little modification in the code!
Daemon
Daemon
Forumember

Posts : 104
Reputation : 90
Language : Português

Back to top Go down

Page 2 of 2 Previous  1, 2

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum