by Luiz Bills
5 (4 reviews)
Social Icons for WooCoomerce Emails
Add social icons to your WooCommerce emails.
Tested up to WP 6.0.11 (Current: 6.8.2)
v2.1.1
Current Version v2.1.1
Updated 3 years ago
Last Update on 11 Aug, 2022
Synced 6 days ago
Last Synced on
Rank
#17,435
—
No change
Active Installs
90+
—
No change
KW Avg Position
N/A
—
No change
Downloads
6.1K
—
Total downloads
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(4 reviews)
Next Milestone 100
90+
100+
1,583
Ranks to Climb
-
Growth Needed
8,000,000
Current Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 9 more installs to reach 100+
Rank Changes
Current
#17,435
Change
Best
#
Active Installs Growth
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
4 reviews
Overall
100%
5
4
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.1.1
- Last Updated
- Aug 11, 2022
- Requires WP
- 4.0+
- Tested Up To
- 6.0.11
- PHP Version
- N/A
- Author
- Luiz Bills
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 4
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,740
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#927
Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin
200K+ installs
#255
MW
MW WP Form
200K+ installs
#262
SureMail – SMTP and Email Logs Plugin with Amazon SES, Postmark, and Other Providers
200K+ installs
#277
Frequently Asked Questions
Common questions about Social Icons for WooCoomerce Emails
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;
}
// 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;
}
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;
}
// 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;
}