• Afternoon,

    I hope this makes sense…

    I am using a plugin for bbpress that allows me to mark posts as Resolved or Not Resolved which is great. The issue I am running into is that there is no quick way to view ‘Not Resolved’ posts without manually filtering through the forums.

    I have looked at the plugin and I would like to know if there is a way to hook into a specific filter / array in order to display the necessary content?

    Plugin function below:

    public function setup_status() {
        // Available support status
        $this->support_status = apply_filters( 'bpbbpst_available_support_status', array(
          'topic-not-resolved' => array(
            'sb-caption'   => __( 'Not resolved', 'buddy-bbpress-support-topic' ),
            'value'        => 1,
            'prefix-title' => __( '[Support request] ', 'buddy-bbpress-support-topic' ),
            'admin_class'  => 'waiting',
            'dashicon'     => array( 'class' => 'bpbbpst-dashicon-no', 'content' => '"\f158"' ),
          ),
        ));
      }

    I am trying to grab the content associated with this array “topic-not-resolved’. Any help would be greatly appreciated!

The topic ‘Displaying an Array from specific filter’ is closed to new replies.