As far as I can see, if you set any text in the 'Explanation or submission guidelines' for the Biography content type, it is not shown on the biography input form.
It would be great if it did.
Thanks
Andy

Comments

ajg112’s picture

Title: "Explanation or submission guidelines" not shown » A Quick Fix

As a quick fix, add this to your template.php

  function _phptemplate_variables($hook, $vars = array()) {

     if (arg(0) == 'user' and arg(2) == 'bio') {
        $vars['help'] .= '<p>This is your biography page. Please enter the fields marked with a red star.</p>';
     }

     return $vars;
  }
sun’s picture

Status: Active » Closed (works as designed)

This is by design - users should never see the original content submission form for Bio nodes.