• Resolved grosbouff

    (@grosbouff)


    Hi, it would be nice to have a class added for resolved topics, so we can customize them with CSS:

    function bpbbst_filter_topic_classes($classes,$topic_id){
                $is_resolved = ( 2 == get_post_meta(topic_id, '_bpbbpst_support_topic', true ) );
                if (!$is_resolved){
                    $classes[]='bpbbst_resolved';
                }
                return $classes;
            }
    
    add_filter('bbp_get_topic_class','bpbbst_filter_topic_classes',10,2);

    http://wordpress.org/extend/plugins/buddy-bbpress-support-topic/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Add resolved class to resolved topics’ is closed to new replies.