Plugin: BuddyPress Moderation

Join this plugin group to follow comments, support topics and reviews.

First stable release & Docs (18 posts)

Started 1 year, 8 months ago by: francescolaffi

  • Profile picture of francescolaffi francescolaffi said 1 year, 8 months ago:

    Yesterday I tagged 0.1.1 as stable, no big changes in functionality, but I wrote a lot of docs for it.
    For easy install try this link http://coveredwebservices.com/wp-plugin-install/?plugin=bp-moderation

    Other than the backend panel docs, it includes an example and an how-to for coding custom content types.

    If you want it integrated with your favorite bp plugins try to bug the devs and point them here.

    If you are trying to integrate it with another plugin or creating some custom content type feel free to bug me ;)

    Getting back to work on bp media, this plugin will probably not have major changes until bp media hit a stable too.

  • Profile picture of rossagrant rossagrant said 1 year, 8 months ago:

    @francescolaffi Have updated to latest version but I’m getting an Error when unflagging an item. I can flag things no problem and they appear in the backend but if I go back and unflag an item it gives me a button saying Error.

    Don’t think I was having this trouble in earlier builds.

    I’m running WP 3.0 and BP 1.2.5.2.

    Can you recreate this at all?

  • Profile picture of rossagrant rossagrant said 1 year, 8 months ago:

    @francescolaffi One other thing Frances. I am getting a full button with flag icon showing up in my activity stream and the flag icon in blogs etc but in forum posts I merely get a link and no icon.
    Is that expected behaviour or should I have a flag icon too?
    Thanks!

  • Profile picture of modemlooper modemlooper said 1 year, 8 months ago:

    In the admin I can’t edit or moderate flags. Also, the error as stated above.

    When clicking ignore in admin I get this (0 items have been ignored.)

    Latest WP and BP.

  • Profile picture of footybible footybible said 1 year, 8 months ago:

    Same problems as modemlooper, with same Wp and BP versions.

  • Profile picture of aaronfrerichs aaronfrerichs said 1 year, 8 months ago:

    I’m having the same issue – WP 3.0.1 and BP 1.2.5.2

  • Profile picture of aaronfrerichs aaronfrerichs said 1 year, 8 months ago:

    I believe I found it – a bug in the constructor for the bpModAbstractDBObj class. I added a line to set the id and it seems to be working for me now.

    function  __construct($id = false) {
      parent::__construct();
      if($id){
        $this->__id = $id;  // added this line to fix unflag issue - aaron.frerichs - 9/13/2010
        $this->populate($id);
      }
    }
  • Profile picture of mariochampion mariochampion said 1 year, 8 months ago:

    @aaronfrerichs
    NICE FIND! worked for me.
    bp moderation 0.1.1
    bp 1.2.5.2
    wp3.0.1

  • Profile picture of footybible footybible said 1 year, 8 months ago:

    @aaronfrerichs @mariochampion Whereabouts is this fix added?

    Many thanks

  • Profile picture of mariochampion mariochampion said 1 year, 8 months ago:

    @footybible i dont ftp access to the serevr from my home laptop, but there is a php file in the plugin dir and i think its called bpModAbstractDBObj.php (see aaron’s post)

    do a search for “function __construct($id = false) {” or just scan the code and you ll see the place to paste in aaron’s line.

    good luck

  • Profile picture of footybible footybible said 1 year, 8 months ago:

    @mariochampion thanks

  • Profile picture of pollycoke :) pollycoke :) said 1 year, 7 months ago:

    @aaronfrerichs that fixed it, thanks

  • Profile picture of Paul Gibbs Paul Gibbs said 1 year, 7 months ago:

    Thanks guys

  • Profile picture of francescolaffi francescolaffi said 1 year, 7 months ago:

    Sorry for my absence latest weeks, had lot of uni exam.

    Yep it seem that that constructor is broken, thanks for the fix, going to tag a fixed release.

  • Profile picture of francescolaffi francescolaffi said 1 year, 7 months ago:

    tagged 0.1.2 that should solve reported issues, please confirm and see if there are other problems :)

    @rossagrant on links w/o icons: it is expected that there’s no icon there because I’m trying to follow style of the meta links of the default theme where possible.
    Btw icon or no icon can be changed not only in php code but also with css, so it can be changed at different levels of site access and skills.