Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Adding to Buddy Press profile and Woocommerce account settings.

$
0
0

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]');
}

Viewing all articles
Browse latest Browse all 59525

Trending Articles