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.

Code phpbb3 to phpbb2

4 posters

Go down

Code phpbb3 to phpbb2 Empty Code phpbb3 to phpbb2

Post by HenriqueBr October 9th 2012, 8:43 pm

Well folks, to help a friend of mine asked me to help aki, pspbb2 not know anything, so I wanted to ask if you guys could modify this js to phpbb2 .... he has the job of putting the avatar-the last post ...
this code:
Code:
        $(document).ready(function(){

        $('.topiclist.forums .row .lastpost').prepend('<div class="avatar-index"><div>');
        $('.topiclist.forums .row .lastpost .avatar-index').each(function(){
        var profileUserURL=$(this).parent().children('span').children('strong').children('a').attr('href');
        $(this).html('<a href="#" class="avatar-index-enlace"><img src="http://cdn1.iconfinder.com/data/icons/basicset/user_64.png" alt="No Avatar" /></a>');
        $(this).children('a').load(profileUserURL+' .module:eq(0) img:eq(0)');
        });
        });
avatar
HenriqueBr
New Member

Posts : 8
Reputation : 1
Language : PT-BR

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by LGforum October 9th 2012, 9:35 pm

LGforum
LGforum
Hyperactive

Male Posts : 2265
Reputation : 264
Language : English
Location : UK

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by HenriqueBr October 10th 2012, 1:47 am

I know, but this tutorial is for phpbb3, phpbb2 I wanted to ...
avatar
HenriqueBr
New Member

Posts : 8
Reputation : 1
Language : PT-BR

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by Ramdaman October 10th 2012, 2:33 am

You're not really detailing your question.
Ramdaman
Ramdaman
Active Poster

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

http://ndihme.forumotion.com/forum

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by HenriqueBr October 10th 2012, 2:52 am

aff, this code is for phpbb3, I want you to convert it to phpbb2
avatar
HenriqueBr
New Member

Posts : 8
Reputation : 1
Language : PT-BR

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by HenriqueBr October 10th 2012, 11:02 pm

up
avatar
HenriqueBr
New Member

Posts : 8
Reputation : 1
Language : PT-BR

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by HenriqueBr October 11th 2012, 12:48 am

this code is for phpbb3, phpbb2 I want to!
avatar
HenriqueBr
New Member

Posts : 8
Reputation : 1
Language : PT-BR

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by HenriqueBr October 11th 2012, 1:22 am

not results...
avatar
HenriqueBr
New Member

Posts : 8
Reputation : 1
Language : PT-BR

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by HenriqueBr October 11th 2012, 4:17 pm

........
avatar
HenriqueBr
New Member

Posts : 8
Reputation : 1
Language : PT-BR

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by Sanket October 11th 2012, 4:45 pm

Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Code phpbb3 to phpbb2 Empty Re: Code phpbb3 to phpbb2

Post by Guest October 12th 2012, 2:28 pm

To PHPBB2 I created this:

Code:

// Avatar in index by giObanii phpbb2
$(document).on('ready', function() {
    $('.forumline tr .row3.over').prepend('<div class="avatar-index"><div>');
    $('.forumline tr .row3.over .avatar-index').each(function () {
        var profileUser = $(this).parent().children('span').children('span').children('strong').children('a').attr('href');
        $(this).html('<a href="' + profileUser + '" class="avatar-index-enlace"><img src="http://cdn1.iconfinder.com/data/icons/basicset/user_64.png" alt="No Avatar" /></a>');
        $(this).children('a').load(profileUser + ' .forumline .row1.gensmall[align="center"]:eq(0) img:eq(0)');
    });
});

CSS:
Code:
/* Avatar in index by giObanii phpbb2*/
.avatar-index { float: left; }
.avatar-index img { width: 40px; height: 40px; padding: 1px; border: 1px solid #DDD; margin: 0 5px; }
avatar
Guest
Guest


Back to top Go down

Back to top

- Similar topics

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