{"id":49294,"date":"2016-06-27T14:51:08","date_gmt":"2016-06-27T14:51:08","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/social-icons-for-woocoomerce-emails\/"},"modified":"2022-08-10T21:02:37","modified_gmt":"2022-08-10T21:02:37","slug":"social-icons-for-woocoomerce-emails","status":"publish","type":"plugin","link":"https:\/\/ibo.wordpress.org\/plugins\/social-icons-for-woocoomerce-emails\/","author":14169765,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"2.1.1","stable_tag":"2.1.1","tested":"6.0.11","requires":"4.0","requires_php":"","requires_plugins":"","header_name":"Social Icons for WooCoomerce Emails","header_author":"Luiz Bills","header_description":"","assets_banners_color":"","last_updated":"2022-08-10 21:02:37","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/luizpb.com\/donate","header_plugin_uri":"","header_author_uri":"https:\/\/www.luizpb.com","rating":5,"author_block_rating":0,"active_installs":80,"downloads":6232,"num_ratings":4,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.0.0":{"tag":"1.0.0","author":"luizbills","date":"2016-06-27 18:54:17"},"2.0.0":{"tag":"2.0.0","author":"luizbills","date":"2017-05-16 03:21:10"},"2.0.2":{"tag":"2.0.2","author":"luizbills","date":"2017-05-16 03:57:40"},"2.0.3":{"tag":"2.0.3","author":"luizbills","date":"2017-05-16 13:04:53"},"2.0.4":{"tag":"2.0.4","author":"luizbills","date":"2018-05-23 22:58:52"},"2.1.0":{"tag":"2.1.0","author":"luizbills","date":"2021-03-20 17:58:38"},"2.1.1":{"tag":"2.1.1","author":"luizbills","date":"2022-08-10 21:02:37"}},"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":"4"},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":1658179,"resolution":"128x128","location":"assets","locale":""}},"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.0","2.0.0","2.0.2","2.0.3","2.0.4","2.1.0","2.1.1"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":2769104,"resolution":"1","location":"assets","locale":""},"screenshot-2.jpg":{"filename":"screenshot-2.jpg","revision":2769104,"resolution":"2","location":"assets","locale":""}},"screenshots":{"1":"<p>Default icons appearance<\/p>","2":"<p>WooCoomerce &gt; Settings &gt; Emails page<\/p>"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[267,2640,175,174,286],"plugin_category":[41,45,56],"plugin_contributors":[94311],"plugin_business_model":[],"class_list":["post-49294","plugin","type-plugin","status-publish","hentry","plugin_tags-email","plugin_tags-footer","plugin_tags-links","plugin_tags-social","plugin_tags-woocommerce","plugin_category-communication","plugin_category-ecommerce","plugin_category-social-and-sharing","plugin_contributors-luizbills","plugin_committers-luizbills"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/social-icons-for-woocoomerce-emails\/assets\/icon-128x128.png?rev=1658179","icon_2x":false,"generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/social-icons-for-woocoomerce-emails\/assets\/screenshot-1.png?rev=2769104","caption":"<p>Default icons appearance<\/p>"},{"src":"https:\/\/ps.w.org\/social-icons-for-woocoomerce-emails\/assets\/screenshot-2.jpg?rev=2769104","caption":"<p>WooCoomerce &gt; Settings &gt; Emails page<\/p>"}],"raw_content":"<!--section=description-->\n<p>Add social icons to your WooCommerce emails.<\/p>\n\n<h4>SETUP<\/h4>\n\n<p>Go to WooCoomerce &gt; Settings &gt; Emails to configure the plugin.<\/p>\n\n<h4>USEFUL LINKS<\/h4>\n\n<p>Github: https:\/\/github.com\/luizbills\/social-icons-for-woocommerce-emails<\/p>\n\n<!--section=installation-->\n<ol>\n<li>Upload the plugin files to the <code>\/wp-content\/plugins\/social-icons-for-wc-emails<\/code> directory, or install the plugin through the WordPress plugins screen directly.<\/li>\n<li>Activate the plugin through the 'Plugins' screen in WordPress.<\/li>\n<li>Go to WooCoomerce &gt; Settings &gt; Emails to configure the plugin.<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id='how%20i%20can%20add%2Fremove%20social%20networks%3F'><h3>How I can add\/remove social networks?<\/h3><\/dt>\n<dd><p>Yes. Use the filter hook <code>siwce_social_links<\/code>.<\/p>\n\n<p>Example:<\/p>\n\n<pre><code>\/\/ add this to your functions.php\nadd_filter( 'siwce_social_links', '__add_vk_wc_emails' );\nfunction __add_vk_wc_emails( $icons ) {\n    $icons['vk'] = 'VK';\n    return $icons;\n}\n<\/code><\/pre><\/dd>\n<dt id='how%20i%20can%20add%2Fchange%20an%20icon%20image%3F'><h3>How I can add\/change an icon image?<\/h3><\/dt>\n<dd><p>Use the filter hook <code>siwce_icon_image_uri<\/code>.<\/p>\n\n<p>Example:<\/p>\n\n<pre><code>\/\/ add this to your functions.php\nadd_filter( 'siwce_icon_image_uri', 'yourprefix_change_facebook_icon', 10, 2 );\nfunction yourprefix_change_facebook_icon( $uri, $icon_id ) {\n    if ( $icon_id == 'facebook' ) {\n        $uri = get_stylesheet_directory_uri() . '\/path\/to\/your\/facebook_icon.png';\n    }\n    return $uri;\n}\n<\/code><\/pre><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>2.1.1<\/h4>\n\n<ul>\n<li>Some fixes<\/li>\n<li>Bump Tested up to<\/li>\n<\/ul>\n\n<h4>2.1.0<\/h4>\n\n<ul>\n<li>removed Google+ support, since it not exists anymore<\/li>\n<li>changed plugin license to GNU General Public License v3.0<\/li>\n<\/ul>\n\n<h4>2.0.4<\/h4>\n\n<ul>\n<li>compatibility with woocommerce pre-update extension version check<\/li>\n<\/ul>\n\n<h4>2.0.3<\/h4>\n\n<ul>\n<li>updated banner and icon<\/li>\n<\/ul>\n\n<h4>2.0<\/h4>\n\n<ul>\n<li>feature: option to add a text before of the icons.<\/li>\n<li>feature: simplified the size of icons (now is just 1 option, instead of two)<\/li>\n<li>feature: translated to pt-BR<\/li>\n<li>fix: several values have been sanitized<\/li>\n<\/ul>\n\n<h4>1.0<\/h4>\n\n<ul>\n<li>Initial release.<\/li>\n<\/ul>","raw_excerpt":"Add social icons to your WooCommerce emails.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/49294","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=49294"}],"author":[{"embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/luizbills"}],"wp:attachment":[{"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=49294"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=49294"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=49294"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=49294"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=49294"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=49294"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}