Changeset 2401328
- Timestamp:
- 10/17/2020 08:56:47 AM (5 years ago)
- Location:
- shareme
- Files:
-
- 8 added
- 3 edited
-
tags/1.0.3 (added)
-
tags/1.0.3/assets (added)
-
tags/1.0.3/assets/css (added)
-
tags/1.0.3/assets/css/style.css (added)
-
tags/1.0.3/assets/js (added)
-
tags/1.0.3/languages (added)
-
tags/1.0.3/readme.txt (added)
-
tags/1.0.3/shareme.php (added)
-
trunk/assets/css/style.css (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/shareme.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shareme/trunk/assets/css/style.css
r2400844 r2401328 1 1 /* 2 Share 2 ShareMe Css 3 3 */ 4 4 a.shareme-link { … … 82 82 background: #0074A1; 83 83 } 84 84 a.shareme-whatsapp { 85 background: #0DC143; 86 } 85 87 .shareme-linkedin:hover,.shareme-linkedin:active { 86 88 background: #006288; -
shareme/trunk/readme.txt
r2400998 r2401328 2 2 Plugin Name: ShareMe Simple Social Share Plugin 3 3 Author: ThemeAsia 4 Version: 1.0. 24 Version: 1.0.3 5 5 Contributors: ThemeAsia, shiponkarmakar, univahost 6 6 Requires at least: 4.7 … … 32 32 33 33 == Frequently Asked Questions == 34 = ShortCode Code 35 You can use this Shortcode [show_shareme_social_buttons] 36 34 37 = How to get support? 35 38 You will get support from support@themeasia.net … … 55 58 = 1.0.2 = 56 59 * Fix Fron end icon issue 60 61 == Changelog == 62 = 1.0.3 = 63 * Add Whatsapp Share Button -
shareme/trunk/shareme.php
r2400998 r2401328 4 4 * Plugin URI: https://wordpress.org/plugins/shareme 5 5 * Description: ShareMe Plugin for Social Share, Grow your followers, increase your social shares! 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Author: ThemeAsia 8 8 * Author URI: https://themeasia.net … … 75 75 $facebookURL = 'https://www.facebook.com/sharer/sharer.php?u='.$sharemeURL; 76 76 $linkedInURL = 'https://www.linkedin.com/shareArticle?mini=true&url='.$sharemeURL.'&title='.$sharemeTitle; 77 78 $whatsappURL = 'https://api.whatsapp.com/send?text='.$sharemeTitle .$sharemeURL; 77 79 78 80 // Based on popular demand added Pinterest too … … 91 93 92 94 $content .= '<a class="shareme-link shareme-pinterest" href="'. esc_url( $pinterestURL ) .'" data-pin-custom="true" target="_blank" rel="nofollow"><span class="dashicons dashicons-pinterest"></span></a>'; 95 96 $content .= '<a class="shareme-link shareme-whatsapp" href="'. esc_url( $whatsappURL ) .'" data-pin-custom="true" target="_blank" rel="nofollow"><span class="dashicons dashicons-whatsapp"></span></a>'; 93 97 94 98 $content .= '</div>'; … … 102 106 add_filter( 'the_content', 'shareme_social_sharing_buttons'); 103 107 } 108 109 add_shortcode( 'show_shareme_social_buttons', 'shareme_social_sharing_buttons' );
Note: See TracChangeset
for help on using the changeset viewer.