Courseware / buddypress-courseware

BuddyPress Courseware
http://buddypress.coursewa.re
GNU General Public License v2.0
121 stars 34 forks source link

Feature request: Turn off responses #62

Closed daisypeel closed 12 years ago

daisypeel commented 12 years ago

I'm finding that I would like to turn off responses ENTIRELY, or, have the option to have the response button direct students to the associated forum topic.

For my courses, I post assignments, but I want ALL responses to be posted in the associated forum topic I create while creating the assignment. Despite directing students to respond in the forum, that big respond button is just too attractive to some :)

stas commented 12 years ago

What you need is plugin territory. Here, try this:

<?php
/*
Plugin Name: Courseware Hacks
*/

function hide_response_link( $vars ) {
  if ( isset ( $vars['response_add_uri'] ) )
    unset ( $vars['response_add_uri'] );
  return $vars;
}
add_filter( 'courseware_assignment', 'hide_response_link', 11 );
?>

This should hide the Add Response button at all!