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.

I want to code "Adffine friend in threads"

4 posters

Go down

I want to code "Adffine friend in threads" Empty I want to code "Adffine friend in threads"

Post by AlFoROoN Wed 1 Oct - 9:14

I want to code "Adffine friend in threads"
Such as
https://i.servimg.com/u/f39/16/49/97/40/10710.png

I want to code "Adffine friend in threads" 10710
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by AlFoROoN Wed 1 Oct - 13:45

UP
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by Guest Wed 1 Oct - 17:06

Hello AlFoROoN,
Could you please explain more about what it is you are wanting done. Your first message doesn't explain what you want, where you want to add it, what your site link is, where you found that image at, ect. This information is very helpful and will help us provide the information you are looking for.

-Jad
avatar
Guest
Guest


Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by Ramdaman Wed 1 Oct - 19:21

You mean you want a code (JavaScript) to be able to add a friend from a thread?
Ramdaman
Ramdaman
Active Poster

Male Posts : 1590
Reputation : 99
Language : English, Albanian, Macedonian, Russian | HTML, CSS
Location : New York City

http://ndihme.forumotion.com/forum

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by AlFoROoN Wed 1 Oct - 20:37

Jadster wrote:Hello AlFoROoN,
Could you please explain more about what it is you are wanting done. Your first message doesn't explain what you want, where you want to add it, what your site link is, where you found that image at, ect. This information is very helpful and will help us provide the information you are looking for.

-Jad
I found it in one of the Arab forums
Ramdaman wrote:You mean you want a code (JavaScript) to be able to add a friend from a thread?
I want a code to activate this feature next to each post
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by AlFoROoN Thu 2 Oct - 14:21

-_-
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by Guest Thu 2 Oct - 14:28

Hello again AlFoROoN,
Could you please link us to your site and link us to the site that you found this at so that we can take a further look. I cannot read what the text says in the image so I am at a loss here right now. If you can link me to the site where you found this I can translate it and be able to provide more support.

-Jad
avatar
Guest
Guest


Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by AlFoROoN Thu 2 Oct - 14:36

Translate what's in the code is a rectangle appears in every contribution has a "friend Adffine"
+
forum whose property was lost to me, but this property basis, "vb" was the work of code to work on forumotion
www.malware-site.www/vb
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by AlFoROoN Sun 5 Oct - 15:13

up
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by _Twisted_Mods_ Sun 5 Oct - 16:36

not sure this is gonna be possible because theirs no way to get the posters name because in the template the posters name is in link form
_Twisted_Mods_
_Twisted_Mods_
Helper
Helper

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

http://liquidcode.forumotion.com

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by _Twisted_Mods_ Sun 5 Oct - 19:46

this was a pain to figure out but i was wrong it was posible


Admin panel -Display - Templates - General - viewtopic_body

place the code for your version under

"<script type="text/javascript">//<![CDATA["  at the top of the page




punbb


Code:

$(function(){
           var posts = $('.user-contact', document.getElementById('main-content')), i = 0, p;
           for(; (p = posts[i++]); ) {
              var userlink = p.getElementsByTagName('a')[0]
              , name = userlink.innerHTML.replace(/<.*/g, '');
  p.innerHTML += '<a href="/profile?friend=' + name + '&mode=editprofile&page_profil=friendsfoes"><img src="http://i884.photobucket.com/albums/ac50/TwistedKilla/Stuff/add-icon-25x25_zpsa0962703.png" width="20" height="20"></a>';
           }
        });


phpbb2


Code:

$(function(){
           var posts = $('.poster-profile', document.getElementById('main-content')), i = 0, p;
           for(; (p = posts[i++]); ) {
              var userlink = p.getElementsByTagName('a')[0]
              , name = userlink.innerHTML.replace(/<.*/g, '');
  p.innerHTML += '<a href="/profile?friend=' + name + '&mode=editprofile&page_profil=friendsfoes"><img src="http://i884.photobucket.com/albums/ac50/TwistedKilla/Stuff/add-icon-25x25_zpsa0962703.png" width="20" height="20"></a>';
           }
        });


Last edited by thetwistedkilla on Sun 5 Oct - 20:07; edited 1 time in total
_Twisted_Mods_
_Twisted_Mods_
Helper
Helper

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

http://liquidcode.forumotion.com

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by SLGray Sun 5 Oct - 19:58

Did you mean phpBB 2 and phpBB 3?


I want to code "Adffine friend in threads" 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 : 51554
Reputation : 3524
Language : English
Location : United States

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

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by _Twisted_Mods_ Sun 5 Oct - 20:08

no - fixed - ty
_Twisted_Mods_
_Twisted_Mods_
Helper
Helper

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

http://liquidcode.forumotion.com

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by AlFoROoN Sun 5 Oct - 23:45

do not work
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by _Twisted_Mods_ Mon 6 Oct - 0:38

the punbb still works but the phpbb 2 stopped working for some reason im trying to figure out y
_Twisted_Mods_
_Twisted_Mods_
Helper
Helper

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

http://liquidcode.forumotion.com

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by AlFoROoN Mon 6 Oct - 11:23

thank you
wait you
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by AlFoROoN Sat 11 Oct - 14:27

-_-
avatar
AlFoROoN
New Member

Posts : 11
Reputation : 1
Language : arabic

http://www.7roof-des.net/

Back to top Go down

I want to code "Adffine friend in threads" Empty Re: I want to code "Adffine friend in threads"

Post by _Twisted_Mods_ Sat 11 Oct - 15:37

do what i said up there in my other post just use this code ...put it at the very top of the page

Code:
<script>
   
$(function(){
          var posts = $('.poster-profile', document.getElementById('main-content')), i = 0, p;
          for(; (p = posts[i++]); ) {
              var userlink = p.getElementsByTagName('a')[0]
              , name = userlink.innerHTML.replace(/<.*/g, '');
  p.innerHTML += '<a href="/profile?friend=' + name + '&mode=editprofile&page_profil=friendsfoes"><img src="http://i884.photobucket.com/albums/ac50/TwistedKilla/Stuff/add-icon-25x25_zpsa0962703.png" width="20" height="20"></a>';
          }
        });
</script>
_Twisted_Mods_
_Twisted_Mods_
Helper
Helper

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

http://liquidcode.forumotion.com

Back to top Go down

Back to top

- Similar topics

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