Hi @lyashko ,
Hooking through a filter and adding a snippet in the theme/child-theme’s function.php is one way to add such customization.
You can also use the templates to add such. You can read more about how you can customize the templates:
https://docs.wcvendors.com/docs/wc-vendors/marketplace-features/changing-the-vendor-templates/
Then here’s a list of templates available for WC Vendors Marketplace and Pro:
https://docs.wcvendors.com/docs/wc-vendors/marketplace-features/wc-vendors-marketplace-templates/
https://docs.wcvendors.com/docs/wc-vendors/marketplace-features/wc-vendors-pro-templates/
I hope that this could help. Have a great day ahead!
add_filter('wcvendors_social_media_settings', 'add_extra_social');
function add_extra_social(){
$settings = array(
);
return $settings;
}
I do this such.