08/04/2015 at 10:20 am
#342129
Keymaster
@ janet
I’ve never done it, but it should be possible. Here’s how…
Install the Code Snippets plugin.
Add a new snippet with the following code:
add_action( 'cn_list_before_body', 'cn_remove_entry_actions' );
function cn_remove_entry_actions() {
remove_action( 'cn_entry_actions', array( 'cnTemplatePart', 'entryActions' ) );
add_action( 'cn_action_entry_actions-after', array( 'cnTemplatePart', 'entryActions' ), 10, 2 );
add_action( 'cn_entry_actions-after', array( 'cnTemplatePart', 'entryActions' ), 10, 2 );
}
Save and activate the snippet. The entry actions should now be listed at the bottom.
Hope that helps!
