AyeCode / userswp

Lightweight WordPress User Profile Plugin, provides a front end login form, registration form, edit account form, forgot password, searchable users directory, and user profiles. It can be extended and we provide add-ons to integrate it with WooCommerce, Easy Digital Downloads, Wp Jobs Manager, GeoDirectory, MailChimp, and many other plugins.
https://userswp.io/
GNU General Public License v2.0
64 stars 26 forks source link

Doc request for ticket: 25877 #611

Open Stiofan opened 2 years ago

Stiofan commented 2 years ago

Documentation has been requested to help with ticket: https://secure.helpscout.net/conversation/1677650909/25877

wpdev10 commented 2 years ago

The following snippet will allow adding more social links custom fields to show on the social icons in the profile page:

add_filter('uwp_widget_button_group_args', 'uwp_widget_button_group_args_cb', 10, 1); function uwp_widget_button_group_args_cb($args){ if(isset($args['fields']) && !empty($args['fields'])){ $args['fields'] = 'facebook,twitter,instagram,linkedin,flickr,github,youtube,wordpress,tiktok'; }

return $args;

}