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.

thanks button

4 posters

Go down

Solved thanks button

Post by piter November 15th 2016, 8:38 am

Good morning, i have edition punbb forum
but i don't have The choice button thanks, any one to help me thanks!!
piter
piter
Forumember

Male Posts : 86
Reputation : 1
Language : greek

http://pareoulla.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by Legionheart November 15th 2016, 9:13 am

Hello @piter. Can you explain a bit more. Do you have the thanks button activated?
If you need the thanks button activated then please follow these instructions:
Admin Panel>Modules>Points and Reputation>Reputation>make sure you have Activate reputation system ticked 'yes'>Since you are already on reputation make sure to tick Activate "Thanks" button to 'yes'>Click save and you are done.
Legionheart
Legionheart
Helper
Helper

Male Posts : 721
Reputation : 111
Language : English
Location : San Venganza

https://help.forumotion.com

Back to top Go down

Solved Re: thanks button

Post by piter November 15th 2016, 11:15 am

yes i have all activated but nothing Sad
piter
piter
Forumember

Male Posts : 86
Reputation : 1
Language : greek

http://pareoulla.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by skouliki November 15th 2016, 11:40 am

hello 

have you set an image for the thanks button ?

read this  https://help.forumotion.com/t38434-reputation-system-evaluation-thanks-button
skouliki
skouliki
Manager
Manager

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

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by SLGray November 15th 2016, 6:09 pm

The thanks button will only appear in replies to the topic starter. The thanks button can only be clicked/used once in a topic.


thanks button 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 : 51463
Reputation : 3519
Language : English
Location : United States

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

Back to top Go down

Solved Re: thanks button

Post by piter November 15th 2016, 6:32 pm

SLGray wrote:The thanks button will only appear in replies to the topic starter. The thanks button can only be clicked/used once in a topic.

there is no button, the setup is all right,
piter
piter
Forumember

Male Posts : 86
Reputation : 1
Language : greek

http://pareoulla.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by SLGray November 15th 2016, 6:38 pm

Have you checked to see if there is an image: AP > Display > Colors & Pictures > Pics Management
Advanced Mode
Buttons Tab


thanks button 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 : 51463
Reputation : 3519
Language : English
Location : United States

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

Back to top Go down

Solved Re: thanks button

Post by piter November 15th 2016, 7:30 pm

SLGray wrote:Have you checked to see if there is an image: AP > Display > Colors & Pictures > Pics Management
Advanced Mode
Buttons Tab

yes i have this:
thanks button 1kkk9
piter
piter
Forumember

Male Posts : 86
Reputation : 1
Language : greek

http://pareoulla.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by SLGray November 15th 2016, 10:56 pm

Do you see the thanks button in this topic?  I mean on replies not made by you.


thanks button 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 : 51463
Reputation : 3519
Language : English
Location : United States

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

Back to top Go down

Solved Re: thanks button

Post by piter November 16th 2016, 3:09 pm

in this topic here i see.. but in my forum not see button thanks
piter
piter
Forumember

Male Posts : 86
Reputation : 1
Language : greek

http://pareoulla.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by skouliki November 16th 2016, 3:29 pm

hi 

can you check if your settings are like mine please 

thanks button Screen45
thanks button Screen44
skouliki
skouliki
Manager
Manager

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

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by piter November 16th 2016, 3:53 pm

i have all this:

thanks button C707beb68d

thanks button C717f2f8f5

thanks button C729a7038d
piter
piter
Forumember

Male Posts : 86
Reputation : 1
Language : greek

http://pareoulla.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by skouliki November 16th 2016, 4:02 pm

and you have added this code 
Code:
$(function() {
  var message = function(child, parent) {
        var pseudo = $(child, parent).text(),
            icon = '<img src="https://i18.servimg.com/u/f18/18/21/60/73/fa_sta10.png" alt=""/>';
   
        return '<div id="fa_thanks_message">' + icon + ' The topic starter has thanked ' + pseudo + ' ! ' + icon + '</div>';
      },
     
      version = $('.bodylinewidth')[0] ? 0 : document.getElementById('wrap') ? 1 : $('.pun')[0] ? 2 : document.getElementById('ipbwrapper') ? 3 : 'badapple', // version check
      node = document.createElement(version ? 'DIV' : 'TR'),
      post = $(version ? 'div.post' : 'tr.post'),
      j = post.length,
      i = 0;
 
  if (version == 'badapple') {
    if (window.console) console.error('This plugin is not optimized for your forum version. Please contact the support for further assistance.');
    return;
  }
 
  node.id = 'fa_thanks'; // id for style modifications
  if (!version) node.innerHTML = '<td colspan="2"></td>'; // phpbb2 must have a cell as the child node
 
  for (; i < j; i++) {
   
    if ((version ? post[i] : post[i].firstChild).style.backgroundColor) { // thanked posts have the backgroundColor style property
     
      post[i].className += ' thanked'; // mark the thanked post with a class
      (version ? node : node.firstChild).innerHTML = message(['.name', 'dl > dt > strong', '.username', '.popmenubutton'][version], post[i]); // thanks message
     
      switch (version) {
       
        case 0 : // phpbb2
          node.firstChild.style.backgroundColor = post[i].firstChild.style.backgroundColor;
          node.firstChild.className = post[i].firstChild.className;
          post[i].parentNode.insertBefore(node, post[i].nextSibling);
          break;
         
        case 1 : // phpbb3
          post[i].firstChild.insertBefore(node, post[i].firstChild.lastChild.previousSibling);
          break;
         
        case 2 : // punbb
          node.className = 'postfoot';
          node.style.margin = '0';
          post[i].appendChild(node);
          break;
         
        case 3 : // invision
          node.className = 'post-footer';
          node.style.backgroundColor = post[i].style.backgroundColor;
          post[i].appendChild(node);
          break;
       
      }
     
      break; // break out of the for loop when the thanked post is found
    }
   
  }
});
thanks button Screen47
skouliki
skouliki
Manager
Manager

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

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by piter November 16th 2016, 4:28 pm

i added this but nothing Sad
thanks button C7abe8a696
thanks button C7a7684b10
piter
piter
Forumember

Male Posts : 86
Reputation : 1
Language : greek

http://pareoulla.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by skouliki November 16th 2016, 4:43 pm

if you started the topic you cant see anything unless someone else add a reply
skouliki
skouliki
Manager
Manager

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

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by piter November 16th 2016, 5:22 pm

ok thanks sloved!! Very Happy
piter
piter
Forumember

Male Posts : 86
Reputation : 1
Language : greek

http://pareoulla.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by skouliki November 16th 2016, 5:25 pm

you very welcome !!
Hello
skouliki
skouliki
Manager
Manager

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

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: thanks button

Post by SLGray November 16th 2016, 7:20 pm

Problem solved & topic archived.
Please read our forum rules: ESF General Rules


thanks button 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 : 51463
Reputation : 3519
Language : English
Location : United States

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

Back to top Go down

Back to top

- Similar topics

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