বৰ্ণনা
Add social icons to your WooCommerce emails.
SETUP
Go to WooCoomerce > Settings > Emails to configure the plugin.
USEFUL LINKS
Github: https://github.com/luizbills/social-icons-for-woocommerce-emails
ইনষ্টলেশ্যন
- Upload the plugin files to the
/wp-content/plugins/social-icons-for-wc-emails
directory, or install the plugin through the WordPress plugins screen directly. - Activate the plugin through the ‘Plugins’ screen in WordPress.
- Go to WooCoomerce > Settings > Emails to configure the plugin.
সঘনাই উত্থাপিত প্ৰশ্ন
-
Yes. Use the filter hook
siwce_social_links
.Example:
// add this to your functions.php add_filter( 'siwce_social_links', '__add_vk_wc_emails' ); function __add_vk_wc_emails( $icons ) { $icons['vk'] = 'VK'; return $icons; }
-
How I can add/change an icon image?
-
Use the filter hook
siwce_icon_image_uri
.Example:
// add this to your functions.php add_filter( 'siwce_icon_image_uri', 'yourprefix_change_facebook_icon', 10, 2 ); function yourprefix_change_facebook_icon( $uri, $icon_id ) { if ( $icon_id == 'facebook' ) { $uri = get_stylesheet_directory_uri() . '/path/to/your/facebook_icon.png'; } return $uri; }
পৰ্য্যালোচনা
অৱদানকাৰী আৰু বিকাশকাৰীসকল
“Social Icons for WooCoomerce Emails” হৈছে মুক্ত উৎসৰ ছফ্টৱেৰ। এইসকল লোকে এই প্লাগিনত অৱদান আগবঢ়াইছে।
অৱদানকাৰীসকলআপোনাৰ ভাষাত “Social Icons for WooCoomerce Emails” অনুবাদ কৰক।
বিকাশৰ প্ৰতি আগ্ৰহী?
ক’ড ব্ৰাউজ কৰক, SVN ৰিপজিটৰী চাওক নাইবা RSS-দ্বাৰা বিকাশৰ পঞ্জী ছাবস্ক্ৰাইব কৰক।
সলনি-পঞ্জী
2.1.1
- Some fixes
- Bump Tested up to
2.1.0
- removed Google+ support, since it not exists anymore
- changed plugin license to GNU General Public License v3.0
2.0.4
- compatibility with woocommerce pre-update extension version check
2.0.3
- updated banner and icon
2.0
- feature: option to add a text before of the icons.
- feature: simplified the size of icons (now is just 1 option, instead of two)
- feature: translated to pt-BR
- fix: several values have been sanitized
1.0
- Initial release.