Rock on!!! Thanks so much Lynne!
I think the issue I had before when I tried postbit_display_complete was that I was using:
PHP Code:
$this->post['pagetext'] = preg_replace($search, $replace, $this->post['pagetext'], 1);
Instead of:
PHP Code:
$this->post['message'] = preg_replace($search, $replace, $this->post['message'], 1);
Needed 'message' instead of 'pagetext' I guess. Thanks again!