bbPress

Simple, Fast, Elegant

bbPress support forums » Plugins

How to Write BBPress Plugins.

(8 posts)
  • Started 11 months ago by leoplaw
  • Latest reply from vafaaaan
  • This topic is not resolved

Tags:

  1. Is there any docs where I can read up on how to write a plugin for BBPress?

    How hard or easy is it to convert a WP plugin to BBPress?

    Leo.

    Posted 11 months ago #
  2. Not much documentation for bb, but it works exactly the same way as writing plugins for wp. So grab an existing bb plugin or look at the wp documentation: http://codex.wordpress.org/Writing_a_Plugin
    It's often trivial to convert a plugin; you just need to use a slightly different API and change the hooks and filters that you use.

    Posted 11 months ago #
  3. Thanks Fel64.

    That's what I ended up doing. I figured out the changes to the function names ect from WP to BB.

    So now I've successfully converted the Tiger Sytle Admin and the Admin Drop Menus to BB.

    When I'm finished the last details on them, I'll make them publicly available. ;-)

    Where should I announce these plugins?

    Posted 11 months ago #
  4. vafaaaan
    Member

    What does these?

    add_profile_tab(__('Name on tab'), 'whats this?', 'And this?', 'file.php');

    .
    if i call it once in my plugin it will remain until i deactivate it ?
    .
    Add settings?

    bb_update_option('my_options', $options);

    .
    Delete settings?

    bb_delete_option('my_options');

    .
    Show notice on admin page?

    bb_admin_notice(__('Settings Saved'));
    Posted 9 months ago #
  5. vafaaaan
    Member

    cant get new profile tab/page link to work.. :(

    Posted 9 months ago #
  6. vafaaaan
    Member

    am i doing it right?

    function ed08_tab_add()
    {
    	add_profile_tab(__('ED 08'), 'ed08', 'moderate', 'ed08-template.php');
    }
    add_action('bb_profile_menu', 'ed08_tab_add');
    Posted 9 months ago #
  7. vafaaaan
    Member

    omg sry ..
    add_profile_tab(__('Name'), 'edit_profile', 'moderate', 'this-file-was-missing.php');

    So many ppl in this forum .. i can't breathe ;)

    Posted 9 months ago #
  8. vafaaaan
    Member

    when i add a new tab .. my avatar tab shows twice !?

    Posted 9 months ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.