now, my story page only shows a very abbreviated summary, I want to show what was typed in the description when the story was submitted. I am wondering how to do this.
thanks


Open your story.php and on line 128 or there abouts, look for this:
$main_smarty->assign('the_story', $link->print_summary('summary', true));
In the parantheses, in the single quotes, 'summary', write 'full' instead.
So, it should read:
$main_smarty->assign('the_story', $link->print_summary('full', true));