Replies: 0
Awesome plugin, to add it to the front end for Buddy Press and/or Woocommerce.
To add to Buddy Press member profile settings.
add_action('bp_after_member_settings_template', 'custom_member_settings_template');
function custom_member_settings_template() {
echo '<br><h2 class="screen-heading general-settings-screen">Two Factor Authentication</h2>';
echo '[twofactor_user_settings]';
}
To add to Woocommerce edit account form.
add_action('woocommerce_after_edit_account_form', 'custom_wc_after_edit_account_form');
function custom_wc_after_edit_account_form() {
echo '<br><h2 class="screen-heading general-settings-screen">Two Factor Authentication</h2>';
echo do_shortcode('[twofactor_user_settings]');
}