Buzzer wrote:that is used in the "System of relations". For example, I would prefer it to be a "Thanks" or "Like" system instead of a "Respect" system. Currently, members add respect to a member when they like a post.
Is there a simple way to change all instances of the word "respect" in all templates to either "thanks" or "like"? Perhaps a variation of the code provided by Alex_63
Hello
I found a good javascript code, it's easy to install and to replace everything you need:
Add to HTML-footer.
<script><!--Universal substitution. -->
function UniverÑhange(selektor,changed,substitute){
$(selektor).each(function(){if ($(this).parent().html()!=null){if($(this).parent().html().indexOf(changed)!=-1){
$(this).parent().html($(this).parent().html().replace(changed,substitute));};};});}
UniverÑhange(".pa-respect a","Respect","Thanks");
UniverÑhange(".main.multipage h1 span","Users respect to","Thanks to");
</script>
It will substitute red section with blue one. Please customize according to your needs.
 On topic page in profile section
|  /respect.php?id= USER ID
|
As I mentioned this script is easy to use and you can replace every part of you forum (though don't forget that it's based on JavaScript which is not very fast tool to use).
UniverÑhange("SELECTOR","WHAT IS REPLACED","NEW TEXT");
Use your browser embedded console to find out the necessary selector
Added after 28 minutes 27 seconds:
I see Kami mentioned this script, but selectors were not specified correctly.