Module allows you to chose where to display "community tagging form", in a block, as a tab, inline content or none.
This option is never being saved from "admin ->administer content type ->your content type", because no variable_set in function community_tags_node_type_form_submit provided.
variable_set('community_tags_display_'. $form['#node_type']->type, $form_state['values']['community_tags']['community_tags_display']);
needs to be added after
$settings[$form['#node_type']->type] = $form_state['values']['community_tags'];
Comments
Comment #1
stephenh commentedI applied Ainur's fix to the community_tags/community_tags.admin.inc file ( Community Tags 6.x-2.0-beta1) today for a project I am working on. While I was in there, I stuck Ainar's fix into a patch and have attached it for review.