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.

system badges (Achievements)

5 posters

Go down

In progress system badges (Achievements)

Post by Amadeus Fri 15 Feb - 1:21

Forum: PHPBB2

Hello, I would like to ask for help, because I care about the badges system but only that it appears in every user profile. In this tutorial below, I did it step-by-step, but nothing appears under the profile fields.
http://www.never-utopia.com/t57920-nihil-systeme-de-badge
Amadeus
Amadeus
Forumember

Female Posts : 157
Reputation : 1
Language : Polish, English
Location : Poland

Back to top Go down

In progress Re: system badges (Achievements)

Post by Ape Fri 15 Feb - 2:04

Sadly we do not have permission to use that code or any codes from that site.

If you want help i would ask you to ask the owner of that forum and or the member that asked for help on that forum we do not offer support on others codes sorry.


system badges (Achievements) Left1212system badges (Achievements) Center11system badges (Achievements) Right112
system badges (Achievements) Ape_b110
system badges (Achievements) Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19084
Reputation : 1988
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

In progress Re: system badges (Achievements)

Post by brandon_g Fri 15 Feb - 2:07

Hello,

Unfortunately we really can not give support on codes or scripts found on sites or forums outside of the support forum, as we do not know how they were coded, or whether they even work at all.

We do have a couple tutorials that show how you can create a badge or achievement system: https://help.forumotion.com/t68403-award-system and https://help.forumotion.com/t156022-awards-system-with-hover-over#1075199 . See if either of these are what your looking for.

Also what is the url of your forum?

-Brandon


system badges (Achievements) Brando10
Remember to mark your topic system badges (Achievements) Solved15 when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?

system badges (Achievements) Scre1476
Team Leader
Review Section Rules | Request A Review | Sticker Points
brandon_g
brandon_g
Manager
Manager

Male Posts : 10106
Reputation : 923
Language : English
Location : USA

https://www.broadcastingduo.com

Back to top Go down

In progress Re: system badges (Achievements)

Post by Amadeus Fri 15 Feb - 2:12

Hello @Ape and @brandon_g.

Ah, I'm sorry, I did not know @Ape . My url is ariesten.forumpolish.com

And it can be done a little differently, so only these achievements would be displayed in a separate section under the profile? In this tutorial below:
https://help.forumotion.com/t156022-awards-system-with-hover-over#1075199
Amadeus
Amadeus
Forumember

Female Posts : 157
Reputation : 1
Language : Polish, English
Location : Poland

Back to top Go down

In progress Re: system badges (Achievements)

Post by brandon_g Fri 15 Feb - 2:24

Where exactly do you want them to show?


system badges (Achievements) Brando10
Remember to mark your topic system badges (Achievements) Solved15 when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?

system badges (Achievements) Scre1476
Team Leader
Review Section Rules | Request A Review | Sticker Points
brandon_g
brandon_g
Manager
Manager

Male Posts : 10106
Reputation : 923
Language : English
Location : USA

https://www.broadcastingduo.com

Back to top Go down

In progress Re: system badges (Achievements)

Post by Amadeus Fri 15 Feb - 21:11

Just what I would like to do, as on the example of this screen below, because in my forum I can not do such templates in templates where ICI is shown.

system badges (Achievements) Locali10
Amadeus
Amadeus
Forumember

Female Posts : 157
Reputation : 1
Language : Polish, English
Location : Poland

Back to top Go down

In progress Re: system badges (Achievements)

Post by _Twisted_Mods_ Sat 2 Mar - 19:15

do you have the badge system setup from this page yet?
_Twisted_Mods_
_Twisted_Mods_
Helper
Helper

Male Posts : 2108
Reputation : 336
Language : English
Location : Ms

http://liquidcode.forumotion.com

Back to top Go down

In progress Re: system badges (Achievements)

Post by Amadeus Mon 4 Mar - 12:59

_Twisted_Mods_ wrote:do you have the badge system setup from this page yet?

I have not installed it yet on the results page. This question and answers comes from this link, because I want the achievements to be only shown in the profile as it is on that screen, I only know that you have to place this field in templates but I can not do it, that's why I am asking for help.
Amadeus
Amadeus
Forumember

Female Posts : 157
Reputation : 1
Language : Polish, English
Location : Poland

Back to top Go down

In progress Re: system badges (Achievements)

Post by _Twisted_Mods_ Mon 4 Mar - 13:08

well if you setup that system the code on that page works for inside of post and this should do the trick for the profile page

Code:

$(function() {
  var all_items_images = [
    'https://i.servimg.com/u/f62/12/23/10/57/blue11.png', //Reward 1
    'https://i.servimg.com/u/f62/12/23/10/57/dark_g11.png',  // Reward 2
    'https://i.servimg.com/u/f62/12/23/10/57/gree11.png', // Reward 3
    'https://i.servimg.com/u/f62/12/23/10/57/orange12.png', // Reward 4
    'https://i.servimg.com/u/f62/12/23/10/57/perp12.png', // Reward 5
    'https://i.servimg.com/u/f62/12/23/10/57/red10.png', // Reward 6
 
  ];
 
  var all_items_legend = [
 
    'You hit 100 posts',                  // Reward 1
    'You hit 200 posts',                  // Reward 2
    'You hit 500 posts',                  // Reward 3
    'You hit 5000 posts',                // Reward 4
    'You get 100 likes',                  // Reward 5
    '10 Or More Items From Credit Store', // Reward 6
 
  ];
$('#profile-advanced-layout').append('<div class="forabg" class="badgebox"><div class="inner"><span class="corners-top"><span></span></span><ul class="topiclist"><li class="header"><dl class="icon"><dd class="dterm full-size"><div class="table-title"><h2>Badges</h2></div></dd></dl></li></ul><ul class="badgelist" id="fa_catg-1"></ul><span class="corners-bottom"><span></span></span></div></div>');
$('.scrollable-zone').appendTo('.badgelist');
$('.badgelist .scrollable-zone img').each(function() {
    var a = all_items_images.indexOf( $(this).attr('src') );
    $(this).attr('title', all_items_legend[a]);
  });
});
_Twisted_Mods_
_Twisted_Mods_
Helper
Helper

Male Posts : 2108
Reputation : 336
Language : English
Location : Ms

http://liquidcode.forumotion.com

Back to top Go down

In progress Re: system badges (Achievements)

Post by Amadeus Mon 4 Mar - 13:16

Where should I install it? in templates: profile_view_body or in Javascript codes management?
Amadeus
Amadeus
Forumember

Female Posts : 157
Reputation : 1
Language : Polish, English
Location : Poland

Back to top Go down

In progress Re: system badges (Achievements)

Post by brandon_g Mon 4 Mar - 13:44

Hello,

Your going to want to put that code in javascript management.

-Brandon


system badges (Achievements) Brando10
Remember to mark your topic system badges (Achievements) Solved15 when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?

system badges (Achievements) Scre1476
Team Leader
Review Section Rules | Request A Review | Sticker Points
brandon_g
brandon_g
Manager
Manager

Male Posts : 10106
Reputation : 923
Language : English
Location : USA

https://www.broadcastingduo.com

Back to top Go down

In progress Re: system badges (Achievements)

Post by Ape Mon 4 Mar - 21:47

If you want it to show just in your members profile you just set it on your profiles not messages.

All the steps needed are in that thread Wink
system badges (Achievements) Captu144


system badges (Achievements) Left1212system badges (Achievements) Center11system badges (Achievements) Right112
system badges (Achievements) Ape_b110
system badges (Achievements) Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19084
Reputation : 1988
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

In progress Re: system badges (Achievements)

Post by skouliki Tue 19 Mar - 14:35

hello

is this solved?
if yes please mark it as solved

thank you
skouliki
skouliki
Manager
Manager

Female Posts : 15061
Reputation : 1690
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Back to top


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