Remove Social Link Options From the Submit Form
Building better MyListing websites. One code snippet at a time.
Overview
The Remove Social Link Options from the Submit Form code snippet allows for additional design options within a MyListing website.
As an example, Google+ is no longer, so it would be a good idea to remove it as an option.
Implementation
- Grab the code snippet.
- Follow the provided instructions.
- Save your changes.
//// INSTRUCTIONS:
//// Copy and paste the code snippet below into the child theme's functions.php file.
//// You can edit the functions.php file from your WordPress dashboard (Appearance > Theme Editor) or via FTP.
//// NOTES:
//// Google+ for example, is no longer, so it would be a good idea to remove it as an option. For the Social Links
//// that you want to keep on the form, remove them from the snippet below or just comment it out. Let's say we want Facebook
//// to stick around. It has been commented out below, by placing "//" in front of it.
--------------------------- CODE SNIPPET IS BELOW THIS LINE ---------------------------
// REMOVE SOCIAL LINK OPTIONS FROM THE SUBMIT FORM
add_filter("mylistinglinks-list", function ($links) {
// unset( $links['Facebook'] );
unset($links["Twitter"]);
unset($links["LinkedIn"]);
unset($links["Google+"]);
unset($links["Instagram"]);
unset($links["YouTube"]);
unset($links["Snapchat"]);
unset($links["Tumblr"]);
unset($links["Reddit"]);
unset($links["Pinterest"]);
unset($links["DeviantArt"]);
unset($links["VKontakte"]);
unset($links["SoundCloud"]);
unset($links["Website"]);
unset($links["Other"]);
return $links;
});