Plugin Directory

Changeset 2401328


Ignore:
Timestamp:
10/17/2020 08:56:47 AM (5 years ago)
Author:
themeasia
Message:

1.0.3

Location:
shareme
Files:
8 added
3 edited

Legend:

Unmodified
Added
Removed
  • shareme/trunk/assets/css/style.css

    r2400844 r2401328  
    11/*
    2     Share
     2    ShareMe Css
    33*/
    44a.shareme-link {
     
    8282    background: #0074A1;
    8383}
    84  
     84a.shareme-whatsapp {
     85    background: #0DC143;
     86}
    8587.shareme-linkedin:hover,.shareme-linkedin:active {
    8688    background: #006288;
  • shareme/trunk/readme.txt

    r2400998 r2401328  
    22Plugin Name: ShareMe Simple Social Share Plugin
    33Author: ThemeAsia
    4 Version: 1.0.2
     4Version: 1.0.3
    55Contributors: ThemeAsia, shiponkarmakar, univahost
    66Requires at least: 4.7
     
    3232
    3333== Frequently Asked Questions ==
     34= ShortCode Code
     35You can use this Shortcode [show_shareme_social_buttons]
     36
    3437= How to get support?
    3538You will get support from support@themeasia.net
     
    5558= 1.0.2 =
    5659* Fix Fron end icon issue
     60
     61== Changelog ==
     62= 1.0.3 =
     63* Add Whatsapp Share Button
  • shareme/trunk/shareme.php

    r2400998 r2401328  
    44 * Plugin URI:        https://wordpress.org/plugins/shareme
    55 * Description:       ShareMe Plugin for Social Share, Grow your followers, increase your social shares!
    6  * Version:           1.0.2
     6 * Version:           1.0.3
    77 * Author:            ThemeAsia
    88 * Author URI:        https://themeasia.net
     
    7575            $facebookURL = 'https://www.facebook.com/sharer/sharer.php?u='.$sharemeURL;
    7676            $linkedInURL = 'https://www.linkedin.com/shareArticle?mini=true&url='.$sharemeURL.'&title='.$sharemeTitle;
     77
     78            $whatsappURL = 'https://api.whatsapp.com/send?text='.$sharemeTitle .$sharemeURL;
    7779     
    7880            // Based on popular demand added Pinterest too
     
    9193   
    9294            $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>';
    9397   
    9498            $content .= '</div>';
     
    102106    add_filter( 'the_content', 'shareme_social_sharing_buttons');
    103107}
     108
     109add_shortcode( 'show_shareme_social_buttons', 'shareme_social_sharing_buttons' );
Note: See TracChangeset for help on using the changeset viewer.