bbPress

Simple, Fast, Elegant

bbPress support forums » Plugins

Plugin - Messengers

(11 posts)
  • Started 1 year ago by bbolman
  • Latest reply from bbolman
  • This topic is not a support question
  1. This mod adds AIM, MSN, Yahoo, Google Talk, Jabber, and Skype fields to your profiles. They are displayed when viewing the profile of a user.

    It isn't really a plugin, but... I didn't know where else to put this.

    Please let me know if you're interested. I'll post it soon.

    Demo: http://www.palmansworld.com/bbpresstest/profile.php?id=1

    Get it here: http://www.palmansworld.com/bbpresstest/topic.php?id=1&replies=1#post-1

    Posted 1 year ago #
  2. delete.

    Posted 1 year ago #
  3. topiQ
    Member

    i am interested. but ICQ is missing. please add it if u release the plugin...

    Posted 1 year ago #
  4. Plugin updated to include ICQ. You can find the updated version in the link above.

    Posted 1 year ago #
  5. topiQ
    Member

    there are some SQL syntax errors. it works if u change the SQL query to this one:

    ALTER TABLE bb_users ADD user_icq VARCHAR( 255 ) NOT NULL AFTER user_email ;
    ALTER TABLE bb_users ADD user_aim VARCHAR( 255 ) NOT NULL AFTER user_icq ;
    ALTER TABLE bb_users ADD user_msn VARCHAR( 255 ) NOT NULL AFTER user_aim ;
    ALTER TABLE bb_users ADD user_yahoo VARCHAR( 255 ) NOT NULL AFTER user_msn ;
    ALTER TABLE bb_users ADD user_gtalk VARCHAR( 255 ) NOT NULL AFTER user_yahoo ;
    ALTER TABLE bb_users ADD user_jabber VARCHAR( 255 ) NOT NULL AFTER user_gtalk ;
    ALTER TABLE bb_users ADD user_skype VARCHAR( 255 ) NOT NULL AFTER user_jabber ;

    Posted 1 year ago #
  6. I would suggest to use the usermeta table to store this..
    that way the table structure will remain constant

    Posted 1 year ago #
  7. I do not really understand the meta table as well...sorry, if anyone would care to explain than I would be more than happy. It's just simpler this way. Does it work the same as the regular users table?

    Posted 1 year ago #
  8. Really missing the online status here...

    Posted 1 year ago #
  9. This isn't a plugin, it's a core file edit, if I'm not mistaken...
    If so it's probably best to warn people of this, because any changes made to core files are undone with future bbPress updates if the file is overwritten.
    I have extra profile fields implemented on my local server, I just need to upload it to my main site. I'll post it later.

    Posted 1 year ago #
  10. I really don't know how to use it.
    [code]
    [ SQL ] --
    // Using phpmyadmin or something along those lines, run this mysql query:
    ALTER TABLE bb_users ADD user_icq VARCHAR( 255 ) NOT NULL AFTER user_email ;
    ALTER TABLE bb_users ADD user_aim VARCHAR( 255 ) NOT NULL AFTER user_icq ;
    ALTER TABLE bb_users ADD user_msn VARCHAR( 255 ) NOT NULL AFTER user_aim ;
    ALTER TABLE bb_users ADD user_yahoo VARCHAR( 255 ) NOT NULL AFTER user_msn ;
    ALTER TABLE bb_users ADD user_gtalk VARCHAR( 255 ) NOT NULL AFTER user_yahoo ;
    ALTER TABLE bb_users ADD user_jabber VARCHAR( 255 ) NOT NULL AFTER user_gtalk ;
    ALTER TABLE bb_users ADD user_skype VARCHAR( 255 ) NOT NULL AFTER user_jabber ;
    [ OPEN ] --
    bb-includes/functions.php
    [ FIND ] --
    'user_email' => array(1, __('Email'))
    [ IN-LINE AFTER, ADD ] --
    , 'icq' => array(0, __('ICQ Number')), 'aim' => array(0, __('AIM Address')), 'msn' => array(0, __('MSN Messenger')), 'yahoo' => array(0, __('Yahoo Messenger')), 'gtalk' => array(0, __('Google Talk Name')), 'jabber' => array(0, __('Jabber Name')), 'skype' => array(0, __('Skype Name'))
    [/code]
    I mean I don't what these mean.
    Anybody can help me?

    Posted 1 year ago #
  11. Yeah, unfortunately, this is a core file edit, so what those instructions mean is to open the files bb-includes/functions.php, find that line, then right after that add what it says in the "add" section. If someone has the ability to write this in plugin form I'd be more than willing to change it up. I'll work on that in the meantime.

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.