In order to display after edit, open the
postbit_display_start "YAAS - postbit_display_start" plugin hook and change:
(Current file should say this... if it doesn't then you don't have the latest product file or have not been following the topic
PHP Code:
if ((THIS_SCRIPT == 'showpost') OR (THIS_SCRIPT == 'private') OR (THIS_SCRIPT == 'announcement') OR (THIS_SCRIPT == 'newreply'))
To contain
Code:
OR (THIS_SCRIPT == 'editpost')
, as such:
PHP Code:
if ((THIS_SCRIPT == 'showpost') OR (THIS_SCRIPT == 'private') OR (THIS_SCRIPT == 'announcement') OR (THIS_SCRIPT == 'newreply') OR (THIS_SCRIPT == 'editpost'))