It’s very easy.
In file /PRESSWORK/ADMIN/ACTIONS.PHP
line 238
replace:
pw_authorbox();
with:
//pw_authorbox();
line 527
replace:
add_action(‘pw_single_bottom’, ‘pw_authorbox’);
with:
add_action(‘pw_single_bottom’);
… but then I can’t login… trying to solve the problem…
A correction. Don’t do edit the code in /PRESSWORK/ADMIN/ACTIONS.PHP. Edit the code in /PRESSWORK/ACTIONS.PHP, and comment out line 527 completely (i.e., don’t replace it with anything). add_action() requires two arguments; simply removing the second argument results in error messages.
Thanks RossJC. This was driving me nuts. Your solution worked without error.
the best way to remove it is to make a custom-actions.php file and put it in your uploads folder. then add the following code to the custom-actions file.
<?php remove_action('pw_single_bottom', 'pw_authorbox');
that way it won’t get overwritten when you upgrade wordpress. you should never edit the original theme files if possible.