Hide option for Snapchat, LinkedIn, Google+

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 2 reply threads
  • Author
    Posts
    • #86135
      Jamie O’Reilly
      Participant

      Please could you give me the filter for hiding Hide option for Snapchat, LinkedIn, Google+ and YouTube from the vendors in set up profile.
      I only want them to be able to add facebook, twitter, Instagram and Pinterest.

      Many Thanks

    • #86539
      PATselov
      Participant

      I am joining.
      I also need to remove Twitter, Instagram, Linkedin, Google Plus, Snapchat, Pinterest

    • #86729
      WCFM Forum
      Keymaster

      HI,

      Please could you give me the filter for hiding Hide option for Snapchat, LinkedIn, Google+ and YouTube from the vendors in set up profile.

      – Use this code –

      add_filter( 'wcfm_profile_fields_social', function( $social_fields ) {
      	$social_fields = wcfm_hide_field( 'linkdin', $social_fields );
      	$social_fields = wcfm_hide_field( 'google_plus', $social_fields );
      	$social_fields = wcfm_hide_field( 'snapchat', $social_fields );
      	$social_fields = wcfm_hide_field( 'youtube', $social_fields );
      	return $social_fields;
      }, 50 );

      I also need to remove Twitter, Instagram, Linkedin, Google Plus, Snapchat, Pinterest

      – Use this code –

      add_filter( 'wcfm_profile_fields_social', function( $social_fields ) {
      	$social_fields = wcfm_hide_field( 'linkdin', $social_fields );
      	$social_fields = wcfm_hide_field( 'google_plus', $social_fields );
      	$social_fields = wcfm_hide_field( 'snapchat', $social_fields );
      	$social_fields = wcfm_hide_field( 'pinterest', $social_fields );
      	$social_fields = wcfm_hide_field( 'instagram', $social_fields );
      	$social_fields = wcfm_hide_field( 'twitter', $social_fields );
      	return $social_fields;
      }, 50 );

      Thank You

Viewing 2 reply threads
  • The topic ‘Hide option for Snapchat, LinkedIn, Google+’ is closed to new replies.