Social Share WordPress Plugin – AccessPress Social Share - Version 1.0.5

Version Description

  • Added the shortcode options.
  • fixed small css issue for the twitter share display.
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Share WordPress Plugin – AccessPress Social Share
Version 1.0.5
Comparing to
See all releases

Code changes from version 1.0.4 to 1.0.5

accesspress-social-share.php CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
4
  Plugin name: AccessPress Social Share
5
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
6
  Description: A plugin to add various social media shares to a site with dynamic configuration options.
7
- Version: 1.0.4
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain:apss-share
@@ -31,7 +31,7 @@ if( !defined( 'APSS_LANG_DIR' ) ) {
31
  }
32
 
33
  if( !defined( 'APSS_VERSION' ) ) {
34
- define( 'APSS_VERSION', '1.0.4' );
35
  }
36
 
37
  if(!defined('APSS_TEXT_DOMAIN')){
@@ -65,6 +65,7 @@ if( !class_exists( 'APSS_Class' ) ){
65
  add_action('admin_post_apss_save_options', array( $this, 'apss_save_options')); //save the options in the wordpress options table.
66
  add_action('admin_post_apss_restore_default_settings',array($this,'apss_restore_default_settings'));//restores default settings.
67
  add_action('admin_post_apss_clear_cache',array($this,'apss_clear_cache'));//clear the cache of the social share counter.
 
68
  add_action('wp_ajax_nopriv_frontend_counter', array($this, 'frontend_counter'));
69
  add_action('wp_ajax_frontend_counter', array($this, 'frontend_counter'));
70
  }
@@ -484,7 +485,16 @@ if( !class_exists( 'APSS_Class' ) ){
484
  $_SESSION['apss_message'] = __( 'Cache cleared Successfully', APSS_TEXT_DOMAIN );
485
  wp_redirect( admin_url() . 'admin.php?page=apss-share' );
486
  }
487
- }
 
 
 
 
 
 
 
 
 
488
 
489
  }//APSS_Class termination
490
 
4
  Plugin name: AccessPress Social Share
5
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
6
  Description: A plugin to add various social media shares to a site with dynamic configuration options.
7
+ Version: 1.0.5
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain:apss-share
31
  }
32
 
33
  if( !defined( 'APSS_VERSION' ) ) {
34
+ define( 'APSS_VERSION', '1.0.5' );
35
  }
36
 
37
  if(!defined('APSS_TEXT_DOMAIN')){
65
  add_action('admin_post_apss_save_options', array( $this, 'apss_save_options')); //save the options in the wordpress options table.
66
  add_action('admin_post_apss_restore_default_settings',array($this,'apss_restore_default_settings'));//restores default settings.
67
  add_action('admin_post_apss_clear_cache',array($this,'apss_clear_cache'));//clear the cache of the social share counter.
68
+ add_shortcode('apss-share', array($this, 'apss_shortcode')); //adds a shortcode
69
  add_action('wp_ajax_nopriv_frontend_counter', array($this, 'frontend_counter'));
70
  add_action('wp_ajax_frontend_counter', array($this, 'frontend_counter'));
71
  }
485
  $_SESSION['apss_message'] = __( 'Cache cleared Successfully', APSS_TEXT_DOMAIN );
486
  wp_redirect( admin_url() . 'admin.php?page=apss-share' );
487
  }
488
+ }
489
+
490
+ //function for adding shortcode of a plugin
491
+ function apss_shortcode($attr) {
492
+ ob_start();
493
+ include('inc/frontend/shortcode.php');
494
+ $html = ob_get_contents();
495
+ ob_get_clean();
496
+ return $html;
497
+ }
498
 
499
  }//APSS_Class termination
500
 
css/frontend.css CHANGED
@@ -65,7 +65,7 @@ a:hover, a:focus {
65
  padding: 1px 4px;
66
  position: relative;
67
  background-color: #f7f7f7;
68
- width: 82px;
69
  }
70
 
71
  .apss-theme-1 .apss-icon-block:before{
65
  padding: 1px 4px;
66
  position: relative;
67
  background-color: #f7f7f7;
68
+ width: 86px;
69
  }
70
 
71
  .apss-theme-1 .apss-icon-block:before{
images/Thumbs.db CHANGED
Binary file
inc/backend/how-to-use.php CHANGED
@@ -20,6 +20,15 @@
20
  <li><i class="fa fa-check"></i>Email settings - If you have enabled the email settings you can setup the email header and body part.</li>
21
  </ul>
22
  </p></dd>
 
 
 
 
 
 
 
 
 
23
 
24
  </dl>
25
 
20
  <li><i class="fa fa-check"></i>Email settings - If you have enabled the email settings you can setup the email header and body part.</li>
21
  </ul>
22
  </p></dd>
23
+
24
+ <dt><strong>Shortcode</strong></dt>
25
+ <dd><p>You can use shortcode for the display of the social share in the contents. Optionally You can enter the name of the networks you want to display. The networks will be displayed in the order of entered networks.
26
+ <ul class="how-list">
27
+ <li><i class="fa fa-check"></i>Example 1: [apss-share]</li>
28
+ <li><i class="fa fa-check"></i>Example 2: [apss-share networks='facebook, twitter, pinterest']</li>
29
+ <li><i class="fa fa-check"></i>network parameters are: facebook, twitter, google-plus, pinterest, linkedin, digg, email, print</li>
30
+ </ul>
31
+ </p></dd>
32
 
33
  </dl>
34
 
inc/frontend/shortcode.php ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php defined('ABSPATH') or die("No script kiddies please!"); ?>
2
+ <?php
3
+ global $post;
4
+ $options = get_option( APSS_SETTING_NAME );
5
+ $apss_link_open_option=($options['dialog_box_options']=='1') ? "_blank": "";
6
+ $twitter_user=$options['twitter_username'];
7
+ $counter_enable_options=$options['counter_enable_options'];
8
+ $icon_set_value=$options['social_icon_set'];
9
+ $url= $this->curPageURL();
10
+ $text= get_the_title();
11
+ $cache_period = ($options['cache_period'] != '') ? $options['cache_period']*60*60 : 24 * 60 * 60 ;
12
+
13
+ if( isset($attr['networks']) ){
14
+ $raw_array = explode( ',', $attr['networks'] );
15
+ $network_array=array_map('trim', $raw_array );
16
+ $new_array = array();
17
+ foreach( $network_array as $network )
18
+ {
19
+ $new_array[$network] = '1';
20
+ }
21
+ $options['social_networks'] = $new_array;
22
+ }
23
+ ?>
24
+
25
+ <div class='apss-social-share apss-theme-<?php echo $icon_set_value; ?> clearfix'>
26
+ <?php
27
+
28
+ $title=get_the_title();
29
+ $content=strip_tags(get_the_content());
30
+ $excerpt= substr($content, 0, 50 );
31
+
32
+ foreach( $options['social_networks'] as $key=>$value ){
33
+ if( intval($value)=='1' ){
34
+ switch($key){
35
+ //counter available for facebook
36
+ case 'facebook':
37
+ $link = 'https://www.facebook.com/sharer/sharer.php?u='.$url;
38
+ ?>
39
+ <div class='apss-facebook apss-single-icon'>
40
+ <a title='Share on Facebook' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
41
+ <div class='apss-icon-block clearfix'>
42
+ <i class='fa fa-facebook'></i>
43
+ <span class='apss-social-text'><?php _e('Share on', APSS_TEXT_DOMAIN ); ?> <?php echo ucfirst($key); ?></span>
44
+ <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
45
+ </div>
46
+ <?php if(isset($counter_enable_options) && $counter_enable_options=='1'){ ?>
47
+ <div class='count apss-count' data-url='<?php echo $url;?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url.'_'.$key;?>">Loading...</div>
48
+ <?php } ?>
49
+ </a>
50
+ </div>
51
+ <?php
52
+ break;
53
+
54
+ //counter available for twitter
55
+ case 'twitter':
56
+ $url_twitter = $url;
57
+ $url_twitter=urlencode($url_twitter);
58
+ if(isset( $twitter_user) && $twitter_user !='' ){
59
+ $twitter_user = 'via='.$twitter_user;
60
+ }
61
+ $link ="https://twitter.com/intent/tweet?text=$title&amp;url=$url_twitter&amp;$twitter_user";
62
+ ?>
63
+ <div class='apss-twitter apss-single-icon'>
64
+ <a title='Share on Twitter' target='<?php echo $apss_link_open_option; ?>' href="<?php echo $link; ?>">
65
+ <div class='apss-icon-block clearfix'>
66
+ <i class='fa fa-twitter'></i>
67
+ <span class='apss-social-text'><?php _e('Share on', APSS_TEXT_DOMAIN ); ?> <?php echo ucfirst($key); ?></span><span class='apss-share'><?php _e( 'Tweet', APSS_TEXT_DOMAIN ); ?></span>
68
+ </div>
69
+ <?php if(isset($counter_enable_options) && $counter_enable_options=='1'){ ?>
70
+ <div class='count apss-count' data-url='<?php echo $url;?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url.'_'.$key;?>">Loading...</div>
71
+ <?php } ?>
72
+ </a>
73
+ </div>
74
+ <?php
75
+ break;
76
+
77
+ //counter available for google plus
78
+ case 'google-plus':
79
+ $link = 'https://plus.google.com/share?url='.$url;
80
+ ?>
81
+ <div class='apss-google-plus apss-single-icon'>
82
+ <a title='Share on Google+' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
83
+ <div class='apss-icon-block clearfix'>
84
+ <i class='fa fa-google-plus'></i>
85
+ <span class='apss-social-text'><?php _e('Share on', APSS_TEXT_DOMAIN ); ?> Google Plus</span>
86
+ <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
87
+ </div>
88
+ <?php if(isset($counter_enable_options) && $counter_enable_options=='1'){ ?>
89
+ <div class='count apss-count' data-url='<?php echo $url;?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url.'_'.$key;?>">Loading...</div>
90
+ <?php } ?>
91
+ </a>
92
+ </div>
93
+ <?php
94
+ break;
95
+
96
+ //counter available for pinterest
97
+ case 'pinterest':
98
+ // if(has_post_thumbnail()){
99
+ // $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
100
+ // $link = 'http://pinterest.com/pin/create/bookmarklet/?media='.$image[0].'&amp;url='.$url.'&amp;title='.$title.'&amp;description='.$excerpt;
101
+ ?>
102
+
103
+ <div class='apss-pinterest apss-single-icon'>
104
+ <a title='Share on Pinterest' href='javascript:void((function()%7Bvar%20e=document.createElement(&apos;script&apos;);e.setAttribute(&apos;type&apos;,&apos;text/javascript&apos;);e.setAttribute(&apos;charset&apos;,&apos;UTF-8&apos;);e.setAttribute(&apos;src&apos;,&apos;http://assets.pinterest.com/js/pinmarklet.js?r=&apos;+Math.random()*99999999);document.body.appendChild(e)%7D)());'>
105
+ <div class='apss-icon-block clearfix'>
106
+ <i class='fa fa-pinterest'></i>
107
+ <span class='apss-social-text'><?php _e('Share on', APSS_TEXT_DOMAIN ); ?> <?php echo ucfirst($key); ?></span>
108
+ <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
109
+ </div>
110
+
111
+ <?php if(isset($counter_enable_options) && $counter_enable_options=='1'){ ?>
112
+ <div class='count apss-count' data-url='<?php echo $url;?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url.'_'.$key;?>">Loading...</div>
113
+ <?php } ?>
114
+
115
+ </a>
116
+ </div>
117
+ <?php
118
+ //}
119
+ break;
120
+
121
+ //couter available for linkedin
122
+ case 'linkedin':
123
+ $link = "http://www.linkedin.com/shareArticle?mini=true&amp;ro=true&amp;trk=JuizSocialPostSharer&amp;title=".$title."&amp;url=".$url;
124
+ ?>
125
+ <div class='apss-linkedin apss-single-icon'>
126
+ <a title='Share on LinkedIn' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
127
+ <div class='apss-icon-block clearfix'><i class='fa fa-linkedin'></i>
128
+ <span class='apss-social-text'><?php _e('Share on', APSS_TEXT_DOMAIN ); ?> <?php echo ucfirst($key); ?></span>
129
+ <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
130
+ </div>
131
+
132
+ <?php if(isset($counter_enable_options) && $counter_enable_options=='1'){ ?>
133
+ <div class='count apss-count' data-url='<?php echo $url;?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url.'_'.$key;?>">Loading...</div>
134
+ <?php } ?>
135
+
136
+ </a>
137
+ </div>
138
+ <?php
139
+ break;
140
+
141
+ //there is no counter available for digg
142
+ case 'digg':
143
+ $link = "http://digg.com/submit?phase=2%20&amp;url=".$url."&amp;title=".$title;
144
+ ?>
145
+ <div class='apss-digg apss-single-icon'>
146
+ <a title='Share on Digg' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
147
+ <div class='apss-icon-block clearfix'>
148
+ <i class='fa fa-digg'></i>
149
+ <span class='apss-social-text'><?php _e('Share on', APSS_TEXT_DOMAIN ); ?> <?php echo ucfirst($key); ?></span>
150
+ <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
151
+ </div>
152
+ </a>
153
+ </div>
154
+
155
+ <?php
156
+ break;
157
+
158
+ case 'email':
159
+ if ( strpos( $options['apss_email_body'], '%%' ) || strpos( $options['apss_email_subject'], '%%' ) ) {
160
+ $link = 'mailto:?subject='.$options['apss_email_subject'].'&amp;body='.$options['apss_email_body'];
161
+ $link = preg_replace( array( '#%%title%%#', '#%%siteurl%%#', '#%%permalink%%#', '#%%url%%#' ), array( get_the_title(), get_site_url(), get_permalink(), $url ), $link );
162
+ }
163
+ else {
164
+ $link = 'mailto:?subject='.$options['apss_email_subject'].'&amp;body='.$options['apss_email_body'].": ".$url;
165
+ }
166
+ ?>
167
+ <div class='apss-email apss-single-icon'>
168
+ <a class='share-email-popup' title='Share it on Email' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
169
+ <div class='apss-icon-block clearfix'>
170
+ <i class='fa fa-envelope'></i>
171
+ <span class='apss-social-text'><?php _e( 'Send email', APSS_TEXT_DOMAIN ); ?></span>
172
+ <span class='apss-share'><?php _e( 'Mail', APSS_TEXT_DOMAIN ); ?></span>
173
+ </div>
174
+ </a>
175
+ </div>
176
+
177
+ <?php
178
+ break;
179
+
180
+ case 'print':
181
+ ?>
182
+ <div class='apss-print apss-single-icon'>
183
+ <a title='Print' href='javascript:void(0);' onclick='window.print();return false;'>
184
+ <div class='apss-icon-block clearfix'><i class='fa fa-print'></i>
185
+ <span class='apss-social-text'><?php _e( 'Print', APSS_TEXT_DOMAIN ); ?></span>
186
+ <span class='apss-share'><?php _e( 'Print', APSS_TEXT_DOMAIN ); ?></span>
187
+ </div>
188
+ </a>
189
+ </div>
190
+ <?php
191
+ break;
192
+
193
+ }
194
+ }
195
+
196
+ }
197
+
198
+ ?>
199
+ </div>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social share counter, social share, social media share, social network sha
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
- Stable tag: 1.0.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -21,7 +21,11 @@ The available social media are: Facebook, Twitter, Google+, Pinterest, LinkedIn
21
 
22
  Just get it done in a few minutes!
23
 
24
- = Features: =
 
 
 
 
25
 
26
  * <strong>Beautifully designed 5 themes to select from.</strong> More available in Pro versoin.
27
  * <strong>Major 6 social media included </strong>(Facebook, Twitter, Google+, Pinterest, LinkedIn and Digg). More available in Pro version.
@@ -29,17 +33,36 @@ Just get it done in a few minutes!
29
  * <strong>Auto updates on all APIs</strong>
30
  * <strong>Option to select which social media profile to show</strong>
31
  * <strong>Display order for selected social media</strong>
32
- * <strong>Cache setting</strong> - you can set a cache period to avoid frequent API calls
33
- * <strong>Fully Responsive</strong> - compatible with mobile devices
 
34
  * <strong>User friendly and very interactive user interface</strong>
35
  - Anyone can use it, its as easy as drag and drop.
36
  * <strong>Upgrades available</strong>
37
- - For more features like more social media profiles, more design themes, your own design etc. - upgrade to Pro.
38
  * <strong>Support</strong>
39
- - Dedicated email, forum support
40
  * <strong>Free updates</strong>
41
  - Get free updates for lifetime.
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
 
45
  = Some Useful Links =
@@ -59,6 +82,8 @@ For complete information and documentation regarding plugin, please visit below
59
 
60
  [Docs](https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-share/ )
61
 
 
 
62
  == Installation ==
63
  1. Unzip accesspress-social-share.zip
64
  2. Upload all the files to the /wp-content/plugins/accesspress-social-share
@@ -80,6 +105,11 @@ No , you won't need to get any trouble regarding design and layout of the icons
80
  = Where can I find the documentation for the plugin? =
81
  Once you install the plugin , you can check some general documentation about how to use the plugin in the "How to use" panel of the plugin's settings page. Complete documentation can be found [here](https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-share/).
82
 
 
 
 
 
 
83
  == Screenshots ==
84
  1. Frontend Display of Social Share
85
  2. Frontend Display of Social Share
@@ -89,6 +119,10 @@ Once you install the plugin , you can check some general documentation about how
89
  6. Backend Miscellaneous Settings Section
90
 
91
  == Changelog ==
 
 
 
 
92
  = 1.0.4 =
93
  * Code modification for the pinterest share options for images.
94
  * Share count using ajax to store it in cache.
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
+ Stable tag: 1.0.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
21
 
22
  Just get it done in a few minutes!
23
 
24
+ `For more options - more social media integration, more themes, floating
25
+ sidebar options, widget options, more shortcode options. Pinterest pin
26
+ it button for each images. Please upgrade to Premium version.`
27
+
28
+ = Free Features: =
29
 
30
  * <strong>Beautifully designed 5 themes to select from.</strong> More available in Pro versoin.
31
  * <strong>Major 6 social media included </strong>(Facebook, Twitter, Google+, Pinterest, LinkedIn and Digg). More available in Pro version.
33
  * <strong>Auto updates on all APIs</strong>
34
  * <strong>Option to select which social media profile to show</strong>
35
  * <strong>Display order for selected social media</strong>
36
+ * <strong>Cache setting</strong> - you can set a cache period to avoid frequent API calls.
37
+ * <strong>Shortcode</strong> - You can display the social share easily anywhere by using shortcode [apss-share].
38
+ * <strong>Fully Responsive</strong> - compatible with mobile devices.
39
  * <strong>User friendly and very interactive user interface</strong>
40
  - Anyone can use it, its as easy as drag and drop.
41
  * <strong>Upgrades available</strong>
42
+ - For more features like more social media profiles, more design themes, etc. - upgrade to Pro.
43
  * <strong>Support</strong>
44
+ - Dedicated email, forum support.
45
  * <strong>Free updates</strong>
46
  - Get free updates for lifetime.
47
 
48
+ = Premium Features: =
49
+
50
+ * <strong>Beautifully designed 10 themes to select from.</strong>
51
+ * <strong>Major 14 social media included </strong>
52
+ - (Facebook, Twitter, Google+, Pinterest, LinkedIn, Digg, Delicious, Stumbleupon, Tumblr, Vkontakte, Reddit, Xing, Weibo and Buffer).
53
+ * <strong>Popup sharing </strong>
54
+ * <strong>Pinterest image pin options</strong>
55
+ * <strong>Buddypress and woocommerce compactible</strong>
56
+ * <strong>Shortcode</strong> - more parameters available for shortcodes.
57
+ * <strong>Widgets</strong> - Add the AccessPress Social Share in widgets.
58
+ * <strong>Floating Sidebar</strong> - Beautifully designed 4 themes to display in the floating sidebar with various display position options.
59
+ * <strong>Social media fans/followers count display options</strong>
60
+ * <strong>Beautiful 20 themes</strong> for social counts
61
+ * <strong>18 major social media </strong> for social count display
62
+
63
+ = Premium upgrade =
64
+
65
+ For premium upgrade please go [here](https://accesspressthemes.com/wordpress-plugins/accesspress-social-pro/)
66
 
67
 
68
  = Some Useful Links =
82
 
83
  [Docs](https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-share/ )
84
 
85
+ [Demo](http://accesspressthemes.com/demo/wordpress-plugins/accesspress-social-share/)
86
+
87
  == Installation ==
88
  1. Unzip accesspress-social-share.zip
89
  2. Upload all the files to the /wp-content/plugins/accesspress-social-share
105
  = Where can I find the documentation for the plugin? =
106
  Once you install the plugin , you can check some general documentation about how to use the plugin in the "How to use" panel of the plugin's settings page. Complete documentation can be found [here](https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-share/).
107
 
108
+
109
+
110
+ = Can I use AccessPress social share where ever I want? =
111
+ Yes. You can use the AccessPress social share by using shortcode anywhere you want in your templates files or in posts and pages content.
112
+
113
  == Screenshots ==
114
  1. Frontend Display of Social Share
115
  2. Frontend Display of Social Share
119
  6. Backend Miscellaneous Settings Section
120
 
121
  == Changelog ==
122
+ = 1.0.5 =
123
+ * Added the shortcode options.
124
+ * fixed small css issue for the twitter share display.
125
+
126
  = 1.0.4 =
127
  * Code modification for the pinterest share options for images.
128
  * Share count using ajax to store it in cache.