Adding to Buddy Press profile and Woocommerce account settings.
-
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]'); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Adding to Buddy Press profile and Woocommerce account settings.’ is closed to new replies.