Friend & Foes request in posts.
5 posters
Page 1 of 1
Friend & Foes request in posts.
A code based on this suggestion https://help.forumotion.com/t50435p30-friend-request-in-posts at the same time an improvement based on this code: https://help.forumotion.com/t50435p30-#945167
In your ACP: Modules -> HTML&JAVASCRIPT -> JavaScript codes management -> [Create a new JavaScript]
Title *: <- Whatever you want
Placement : <- In topics
Javascript Code * : <- Select, copy and paste the code below in this field:
I appreciate if someone test and post a "print" of the result...
JS
In your ACP: Modules -> HTML&JAVASCRIPT -> JavaScript codes management -> [Create a new JavaScript]
Title *: <- Whatever you want
Placement : <- In topics
Javascript Code * : <- Select, copy and paste the code below in this field:
- Code:
$(function() {
if (!_userdata.session_logged_in) {
return false;
}
var FFinPosts = {
sFriend: "Add As Friend",
sFoes: "Add To Foes",
oTarget: $('.post'),
iLen: 0,
sUser_name: "",
oFF_list: null,
aFF_list: [],
vTemp: null,
oThis: null
};
FFinPosts.iLen = FFinPosts.oTarget.length;
$.ajax({
url: "/u" + _userdata.user_id + 'friends',
cache: false,
type: "get",
dataType: "text",
success: function(response, status, xhr) {
if (xhr.status == 200) {
FFinPosts.oFF_list = $('#profile-advanced-details ol .message-header > a[href^="/u"]', response);
for (var i = 0; i < FFinPosts.oFF_list.length; i++) {
FFinPosts.aFF_list[FFinPosts.aFF_list.length] = $(FFinPosts.oFF_list[i]).text();
}
for (var i = 0; i < FFinPosts.iLen; i++) {
FFinPosts.oThis = $(FFinPosts.oTarget[i]);
FFinPosts.sUser_name = FFinPosts.oThis.find('.author a, .name, .user a[href^="/u"]').text();
if (FFinPosts.sUser_name !== _userdata.username) {
FFinPosts.vTemp = FFinPosts.oThis.find('.postprofile dd:last, .postdetails.poster-profile, .user-contact');
if (FFinPosts.aFF_list.indexOf(FFinPosts.sUser_name) == -1) {
FFinPosts.vTemp.append(
'<a class="profile-icon" href="/profile?friend=' + encodeURIComponent(FFinPosts.sUser_name) + '&mode=editprofile&page_profil=friendsfoes">' +
' <img title="Add As Friend" alt="Add As Friend" src="http://icons.iconarchive.com/icons/oxygen-icons.org/oxygen/16/Actions-list-add-user-icon.png" width="25" height="25">' +
'</a>'
)
} else {
FFinPosts.vTemp.append(
'<a class="profile-icon" href="/profile?foe=' + encodeURIComponent(FFinPosts.sUser_name) + '&mode=editprofile&page_profil=friendsfoes">' +
' <img title="Add To Foes" alt="Add To Foes" src="http://icons.iconarchive.com/icons/oxygen-icons.org/oxygen/16/Actions-list-remove-user-icon.png" width="25" height="25">' +
'</a>'
)
}
}
}
}
}
});
});
I appreciate if someone test and post a "print" of the result...
JS
Re: Friend & Foes request in posts.
I added this to my punBB forum. The options show up in the topics, but they are not clickable.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Friend & Foes request in posts.
@SLGray
Ok, in this case you could provide me a temporary account so that I can test logged in your forum?
JS
Ok, in this case you could provide me a temporary account so that I can test logged in your forum?
JS
Re: Friend & Foes request in posts.
You are already a member (FM Themes).
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Friend & Foes request in posts.
@SLGray
Ok, I thought it was this: http://beingcreative.forumotion.com/
Well, there is a small error in your CSS that makes the links of class .user-contact .profile_left stay behind!
It's a bit complicated to explain, but follow these steps and the problem will be solved:
1. Add the following CSS:
2. Now remove this section of your CSS:
JS
Ok, I thought it was this: http://beingcreative.forumotion.com/
Well, there is a small error in your CSS that makes the links of class .user-contact .profile_left stay behind!
It's a bit complicated to explain, but follow these steps and the problem will be solved:
1. Add the following CSS:
- Code:
.postfoot {
bottom: -11px;
position: relative;
}
.pun .postfoot .user-contact {
bottom: 11px;
position: relative;
}
2. Now remove this section of your CSS:
- Code:
.post-options {
bottom: -11px;
position: relative;
}
JS
Re: Friend & Foes request in posts.
Hello, yes, all my codes are meant for all versions currently available!Mati wrote:Hi, is this option for all forum version ?
In my opinion I think meaningless to write code that does not work in all versions...
JS
Re: Friend & Foes request in posts.
After adding and removing the CSS code, I tested it, and it worked.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Friend & Foes request in posts.
Tested it on mine. The friend section worked but no button to add as a foe.
Re: Friend & Foes request in posts.
When i click add icon it's show name twice ?!!
like this
his name : gamer
when i click on add icon
go to friends page and show the name twice on box of friends
like this
his name : gamer
when i click on add icon
go to friends page and show the name twice on box of friends
|
Re: Friend & Foes request in posts.
This will no longer be supported by JScript: https://help.forumotion.com/t151137-in-memory-of-jscript-joao-carlos.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Similar topics
» Friends and Foes - Friend Request
» Friend Request in posts
» Nortification for new PM and Friend Request
» VM and Friend Request reminder
» Banner Request! Not for me but to me friend.
» Friend Request in posts
» Nortification for new PM and Friend Request
» VM and Friend Request reminder
» Banner Request! Not for me but to me friend.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum