Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
In reply to: Change Background Colour of Forum Page
Just edit the plugin
In reply to: How can I allow users to post annoymouslyI saw a code on stackoverflow for bbpress annyomous (@robin-w it’s actually a good idea o but hard to code
In reply to: How can I add badges to usersDo you have shorcode for this
In reply to: How can I Dequeue Bbpress StylesheetThanks that’s worked
Here is the code they assisted me with on buddydev
/**
* Modify activity args
*
* @param array $r Activity args.
*
* @return bool
*/
function buddydev_modify_record_activity_args( $r ) {if ( $r[‘type’] && in_array( $r[‘type’], array( ‘bbp_reply_create’, ‘bbp_reply_edit’ ) ) ) {
$r = false;
}return $r;
}
add_filter( ‘bbp_after_record_activity_parse_args’, ‘buddydev_modify_record_activity_args’ );And it’s worked
In reply to: How can I Dequeue Bbpress StylesheetAfter adding it to my function nothing change the css is still instact
In reply to: How can I remove the limit on topic titleThanks robin
Viewing 7 replies - 1 through 7 (of 7 total)