This issue is related with this one, it is posible to create support for wildcards in the array of journal_form_ids_default()?

Using a wildcard will be posible to remove journal textarea from forms with an id wich is not unique, like the one that the fivestar module creates.

Comments

mauro72’s picture

I found a workaround to this issue until a better solution come out. From a custom module using a hook form alter is possible to remove the journal textarea. The code is this:

function MyModule_form_alter(&$form, &$form_state, $form_id){
  $findme   = array('fivestar_form_node_','fivestarextra_form_comment_');
  foreach($findme as $key){
    $pos = stristr($form_id, $key);
    if($pos){
      unset($form['journal']);
    }
  }
}

In this example the journal is removed from the fivestars forms.

shaneonabike’s picture

We also needed this for a project and it would be awesome if a wildcard could be supported.

bwinett’s picture

I submitted a patch to make this a configuration option.