=== Contact Widgets === Contributors: godaddy, jonathanbardo, fjarrett, eherman24 Tags: widget, contact, social, social icons, social media, facebook, twitter, instagram, linkedin, pinterest Requires at least: 4.4 Tested up to: 4.9 Stable tag: 1.4.1 License: GPL-2.0 License URI: https://www.gnu.org/licenses/gpl-2.0.html Beautifully display social media and contact information on your website with these simple widgets. == Description == **Note: This plugin requires PHP 5.4 or higher** Beautifully display social media and contact information on your website with simple, easy-to-use widgets. [youtube https://youtu.be/Y3NsrWHd_us] **Contact Information** Display your contact information including email address, phone number, fax and physical address (including a map). **Social Media Profiles** Display your social media profiles in an attractive, intuitive way. **30 Languages Supported** English - [Dansk](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-da_DK.po) - [Deutsch](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-de_DE.po) - [Ελληνικά](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-el.po) - [Español](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-es_ES.po) - [Español de México](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-es_MX.po) - [Suomi](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-fi.po) - [Français](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-fr_FR.po) - [हिन्दी](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-hi_IN.po) - [Bahasa Indonesia](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-id_ID.po) - [Italiano](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-it_IT.po) - [日本語](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-ja.po) - [한국어](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-ko_KR.po) - [मराठी](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-mr.po) - [Bahasa Melayu](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-ms_MY.po) - [Norsk bokmål](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-nb_NO.po) - [Nederlands](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-nl_NL.po) - [Polski](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-pl_PL.po) - [Português do Brasil](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-pt_BR.po) - [Português](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-pt_PT.po) - [Русский](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-ru_RU.po) - [Svenska](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-sv_SE.po) - [ไทย](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-th.po) - [Tagalog](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-tl.po) - [Türkçe](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-tr_TR.po) - [Українська](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-uk.po) - [Tiếng Việt](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-vi.po) - [简体中文](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-zh_CN.po) - [香港中文版](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-zh_HK.po) - [繁體中文](https://github.com/godaddy/wp-contact-widgets/blob/master/languages/contact-widgets-zh_TW.po) **Support** If you run into a problem, post your question in the [plugin support forum](https://wordpress.org/support/plugin/contact-widgets) and we would be happy to help. Remember, the more information you can provide up-front, the easier it is for us to verify the problem and the faster we can help! * Screenshot(s) - [How-to guide](https://www.take-a-screenshot.org/) * Name and version of your theme - [Video tutorial](https://youtu.be/xUVRgorHSyA) * List of all active plugins on your site - [Video tutorial](https://youtu.be/g3TDziHl7zQ?t=1m51s) * Steps taken or details we should know to reproduce and verify the problem **Contributing** Development of this plugin is done [on GitHub](https://github.com/godaddy/wp-contact-widgets). If you believe you have found a bug, or have a killer feature idea, please [open a new issue](https://github.com/godaddy/wp-contact-widgets/issues) there. Pull requests on existing issues are also welcome! == Screenshots == 1. Contact widget 2. Social widget 3. Twenty Sixteen theme showing both widgets == Frequently Asked Questions == = How do I add additional fields to the Contact Information widget? = Adding additional fields to the Contact Information widget is as simple as adding a WordPress filter. Here is an example:
add_filter( 'wpcw_widget_contact_custom_fields', function ( $fields, $instance ) {

  $fields['cellphone'] = [
    'order'       => 2,
    'label'       => __( 'Cellphone:', 'YOURTEXTDOMAIN' ),
    'type'        => 'text',
    'description' => __( 'A cellphone number that website vistors can call if they have questions.', 'YOURTEXTDOMAIN' ),
  ];

  return $fields;

}, 10, 2 );
= How do I add additional fields to the Social Media Profiles widget? = The Social Media Profiles widget requires a different set of options but follows the same principle as above. Here is an example:
add_filter( 'wpcw_widget_social_custom_fields', function ( $fields, $instance ) {

  $fields['scribd'] = [
    'icon'      => 'scribd', //See font-awesome icon slug
    'label'     => __( 'Scribd', 'YOURTEXTDOMAIN' ),
    'default'   => 'https://www.scribd.com/username',
    'select'    => 'username',
    'sanitizer' => 'esc_url_raw',
    'escaper'   => 'esc_url',
    'social'    => true,
    'target'    => '_blank',
  ];

  return $fields;

}, 10, 2 );
== Changelog == = 1.4.1 - February 13, 2017 = * Tweak: Use FontAwesome 4.7.0 * Fix: Compatibility issues when other plugins add widget form fields Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett) = 1.4.0 - January 10, 2017 = * New: WordPress 4.7 compatibility * New: Defer map iframe loading by default * Tweak: Remove frameborder from map iframes * Tweak: Add filter to change zoom level of map * Tweak: Deprecate YouTube link while maintaining backward compatibility Props [@fjarrett](https://github.com/fjarrett), [@jonathanbardo](https://github.com/jonathanbardo), [@EvanHerman](https://github.com/EvanHerman) = 1.3.3 - October 14, 2016 = * Tweak: Remove edit button during Customize preview * Fix: Minor bugs Props [@jonathanbardo](https://github.com/jonathanbardo) = 1.3.2 - August 16, 2016 = * New: WordPress 4.6 compatibility * New: Add RSS to social networks * Tweak: Plugin icon update * Tweak: Update translation * Fix: Edit button not working Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett) = 1.3.1 - June 3, 2016 = * New: Language support for Marathi * New: Add 500px to social networks Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett), [@salvoventura](https://github.com/salvoventura) = 1.3.0 - May 19, 2016 = * New: Add front-end "Edit" link to quickly edit widgets in the Customizer * Fix: Use WP-CLI nightlies in tests Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett) = 1.2.0 - April 12, 2016 = * New: WordPress 4.5 compatibility * Tweak: Improve widget names Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett) = 1.1.0 - March 15, 2016 = * New: Support localization on Google Maps Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett) = 1.0.4 - March 9, 2016 = * Tweak: Language updates Props [@jonathanbardo](https://github.com/jonathanbardo) = 1.0.2 - February 24, 2016 = * New: Language support for 27 locales Props [@jonathanbardo](https://github.com/jonathanbardo) = 1.0.1 - February 24, 2016 = * New: Added possibility to add custom fields to contact and social widget Props [@jonathanbardo](https://github.com/jonathanbardo) = 1.0.0 - February 23, 2016 = * Initial release Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett)