@ernstl
10 years, 2 months ago
Hi @danbp,
thats clear to me, but we only need to import all exsisting data into the new bbpress/buddypress environment and are happy when its done ( db has 6gb… ). Will keep the importer safe, and got it in mind. But thx for mention it.
Rgds, ernstl
@shanebp the mentioned ref array hook works like a charm. Thank you so much driving me crazy 🙂
To the folks out there: add this to the BBpress bbpress\includes\admin\converter.php
add_action('messages_message_sent', 'my_prevent_msg_send', 5 ); function my_prevent_msg_send( $args ) { unset( $args->recipients ); }
to prevent that PMS are send on import.
More about do_action_ref_array hooks here: https://codex.wordpress.org/Function_Reference/do_action_ref_array
rgds, ernstl