Version Description
- Dec 07, 2015
- Bug Fixes
- Updated Twitter Icons
- Updated Google Plus Icons
- Stable Release
Download this release
Release Info
Developer | Acurax |
Plugin | Social Media Widget by Acurax |
Version | 2.4.1 |
Comparing to | |
See all releases |
Code changes from version 2.4 to 2.4.1
- acurax-social-icon.php +2 -2
- function.php +59 -51
- images/admin.ico +0 -0
- images/button.jpg +0 -0
- images/buy.png +0 -0
- images/dyk.png +0 -0
- images/from.png +0 -0
- images/fsmi_lp_sprite.png +0 -0
- images/orange_buynow.png +0 -0
- images/payments.jpg +0 -0
- images/thank-you.png +0 -0
- images/themes/1/googleplus.png +0 -0
- images/themes/1/twitter.png +0 -0
- images/themes/10/googleplus.png +0 -0
- images/themes/10/twitter.png +0 -0
- images/themes/11/googleplus.png +0 -0
- images/themes/11/twitter.png +0 -0
- images/themes/12/googleplus.png +0 -0
- images/themes/12/twitter.png +0 -0
- images/themes/13/googleplus.png +0 -0
- images/themes/13/twitter.png +0 -0
- images/themes/14/googleplus.png +0 -0
- images/themes/14/twitter.png +0 -0
- images/themes/15/googleplus.png +0 -0
- images/themes/15/twitter.png +0 -0
- images/themes/16/googleplus.png +0 -0
- images/themes/16/twitter.png +0 -0
- images/themes/17/googleplus.png +0 -0
- images/themes/17/twitter.png +0 -0
- images/themes/18/googleplus.png +0 -0
- images/themes/18/twitter.png +0 -0
- images/themes/19/googleplus.png +0 -0
- images/themes/19/twitter.png +0 -0
- images/themes/2/googleplus.png +0 -0
- images/themes/2/twitter.png +0 -0
- images/themes/20/googleplus.png +0 -0
- images/themes/20/twitter.png +0 -0
- images/themes/21/googleplus.png +0 -0
- images/themes/21/twitter.png +0 -0
- images/themes/22/googleplus.png +0 -0
- images/themes/22/twitter.png +0 -0
- images/themes/23/googleplus.png +0 -0
- images/themes/23/twitter.png +0 -0
- images/themes/24/googleplus.png +0 -0
- images/themes/24/twitter.png +0 -0
- images/themes/3/googleplus.png +0 -0
- images/themes/3/twitter.png +0 -0
- images/themes/4/googleplus.png +0 -0
- images/themes/4/twitter.png +0 -0
- images/themes/5/googleplus.png +0 -0
- images/themes/5/twitter.png +0 -0
- images/themes/6/googleplus.png +0 -0
- images/themes/6/twitter.png +0 -0
- images/themes/7/googleplus.png +0 -0
- images/themes/7/twitter.png +0 -0
- images/themes/8/googleplus.png +0 -0
- images/themes/8/twitter.png +0 -0
- images/themes/9/googleplus.png +0 -0
- images/themes/9/twitter.png +0 -0
- premium.php +2 -2
- readme.txt +17 -3
- smw-misc.php +2 -3
- social-help.php +2 -3
- social-icon.php +3 -20
- style_admin.css → style_for_admin.css +38 -14
acurax-social-icon.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Social Media Widget by Acurax
|
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: A Simple Wordpress Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus. You can define icon style size for each widget.
|
6 |
Author: Acurax
|
7 |
-
Version: 2.4
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -24,7 +24,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
24 |
*/
|
25 |
define('ACX_SOCIALMEDIA_WIDGET_TOTAL_THEMES', 24);
|
26 |
define('ACX_SMW_TOTAL_STATIC_SERVICES', 7);
|
27 |
-
define('ACX_SMW_VERSION', 2.4);
|
28 |
?>
|
29 |
<?php
|
30 |
//*************** Include JS in Header ********
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: A Simple Wordpress Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus. You can define icon style size for each widget.
|
6 |
Author: Acurax
|
7 |
+
Version: 2.4.1
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
24 |
*/
|
25 |
define('ACX_SOCIALMEDIA_WIDGET_TOTAL_THEMES', 24);
|
26 |
define('ACX_SMW_TOTAL_STATIC_SERVICES', 7);
|
27 |
+
define('ACX_SMW_VERSION', "2.4.1");
|
28 |
?>
|
29 |
<?php
|
30 |
//*************** Include JS in Header ********
|
function.php
CHANGED
@@ -156,7 +156,7 @@ function extra_style_acx_widget_icon()
|
|
156 |
add_action('wp_head', 'extra_style_acx_widget_icon'); // PUBLIC
|
157 |
function acx_widget_si_admin_style() // Adding Style For Admin
|
158 |
{
|
159 |
-
echo '<link rel="stylesheet" type="text/css" href="' .plugins_url('
|
160 |
} add_action('admin_head', 'acx_widget_si_admin_style'); // ADMIN
|
161 |
$acx_widget_si_sc_id = 0; // Defined to assign shortcode unique id
|
162 |
function DISPLAY_WIDGET_acurax_widget_icons_SC($atts)
|
@@ -193,86 +193,94 @@ function acx_widget_si_custom_admin_js()
|
|
193 |
wp_enqueue_script('jquery-ui-core');
|
194 |
wp_enqueue_script('jquery-ui-sortable');
|
195 |
} add_action( 'admin_enqueue_scripts', 'acx_widget_si_custom_admin_js' );
|
196 |
-
|
197 |
-
function acx_widget_si_pluign_upgrade_not_finished()
|
198 |
-
{
|
199 |
-
echo '<div class="error">
|
200 |
-
<p><b>Thanks for updating Acurax Social Media Widget Plugin... You need to visit <a href="admin.php?page=Acurax-Social-Widget-Settings">Plugin\'s Settings Page</a> to Complete the Updating Process - <a href="admin.php?page=Acurax-Social-Widget-Settings">Click Here Visit Social Icon Plugin Settings</a></b></p>
|
201 |
-
</div>';
|
202 |
-
}
|
203 |
$total_arrays = ACX_SMW_TOTAL_STATIC_SERVICES; // Number Of static Services
|
204 |
$social_widget_icon_array_order = get_option('social_widget_icon_array_order');
|
205 |
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
$social_widget_icon_array_count = count($social_widget_icon_array_order);
|
211 |
if ($social_widget_icon_array_count < $total_arrays)
|
212 |
{
|
213 |
-
|
214 |
}
|
215 |
function enqueue_acx_widget_si_style()
|
216 |
{
|
217 |
wp_enqueue_style ( 'acx-widget-si-style', plugins_url('style.css', __FILE__) );
|
218 |
} add_action( 'wp_print_styles', 'enqueue_acx_widget_si_style' );
|
219 |
-
function acx_widget_si_pluign_finish_version_update()
|
220 |
-
{
|
221 |
-
echo '<div id="message" class="updated">
|
222 |
-
<p><b>Thanks for updating Acurax Social Media Widget Plugin... You need to visit <a href="admin.php?page=Acurax-Social-Widget-Settings&status=updated#updated">Plugin\'s Settings Page</a> to Complete the Updating Process - <a href="admin.php?page=Acurax-Social-Widget-Settings&status=updated#updated">Click Here Visit Social Icon Plugin Settings</a></b></p>
|
223 |
-
</div>';
|
224 |
-
}
|
225 |
$acx_widget_si_current_version = get_option('acx_widget_si_current_version');
|
226 |
if($acx_widget_si_current_version != ACX_SMW_VERSION) // Current Version
|
227 |
{
|
228 |
-
|
229 |
-
{
|
230 |
-
if($acx_si_widget_current_page != 'Acurax-Social-Widget-Settings ')
|
231 |
-
{
|
232 |
-
add_action('admin_notices', 'acx_widget_si_pluign_finish_version_update',1);
|
233 |
-
}
|
234 |
-
}
|
235 |
}
|
236 |
// wp-admin Notices >> Plugin not configured
|
237 |
function acx_widget_si_pluign_not_configured()
|
238 |
{
|
239 |
-
|
240 |
-
<p><b>Acurax Social Media Widget Plugin
|
241 |
-
to start showing the Acurax Social Media Widgets - <a href="admin.php?page=Acurax-Social-Widget-Settings">Click
|
242 |
-
here to configure</a></b></p>
|
243 |
-
</div>';
|
244 |
}
|
245 |
if ($social_widget_icon_array_count == $total_arrays)
|
246 |
{
|
247 |
-
if ($acx_widget_si_twitter == "" && $acx_widget_si_facebook == "" && $acx_widget_si_youtube == "" && $acx_widget_si_linkedin == "" && $acx_widget_si_pinterest == "" && $acx_widget_si_gplus == "" && $acx_widget_si_feed == "")
|
248 |
-
{
|
249 |
-
if($acx_si_widget_current_page != 'Acurax-Social-Widget-Settings ')
|
250 |
{
|
251 |
-
|
|
|
|
|
|
|
252 |
}
|
253 |
-
}
|
254 |
-
|
255 |
-
// wp-admin Notices >> Plugin not configured
|
256 |
function acx_widget_si_pluign_promotion()
|
257 |
{
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
|
|
|
|
|
|
|
|
|
|
267 |
}
|
268 |
$acx_widget_si_installed_date = get_option('acx_widget_si_installed_date');
|
269 |
if ($acx_widget_si_installed_date=="") { $acx_widget_si_installed_date = time();}
|
270 |
-
|
|
|
|
|
|
|
|
|
271 |
{
|
272 |
-
|
|
|
|
|
|
|
273 |
{
|
274 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
}
|
|
|
|
|
|
|
|
|
276 |
}
|
277 |
// Starting Widget Code
|
278 |
class acx_social_widget_icons_Widget extends WP_Widget
|
@@ -1002,7 +1010,7 @@ $acx_installation_url = "";
|
|
1002 |
</div> <!-- acx_asmw_es_acx_content_area -->
|
1003 |
|
1004 |
<div class="acx_asmw_es_footer_content_cvr">
|
1005 |
-
<div class="acx_asmw_es_wp_footer_area_desc">Its our pleasure to thank you for using our plugin and being with us. We always do our best to help you on your needs. If you like to hide this menu, you can do so at <a href="admin.php?page=Acurax-
|
1006 |
</div> <!-- acx_asmw_es_footer_content_cvr -->
|
1007 |
|
1008 |
</div> <!-- acx_asmw_es_middle_section -->
|
156 |
add_action('wp_head', 'extra_style_acx_widget_icon'); // PUBLIC
|
157 |
function acx_widget_si_admin_style() // Adding Style For Admin
|
158 |
{
|
159 |
+
echo '<link rel="stylesheet" type="text/css" href="' .plugins_url('style_for_admin.css', __FILE__). '">';
|
160 |
} add_action('admin_head', 'acx_widget_si_admin_style'); // ADMIN
|
161 |
$acx_widget_si_sc_id = 0; // Defined to assign shortcode unique id
|
162 |
function DISPLAY_WIDGET_acurax_widget_icons_SC($atts)
|
193 |
wp_enqueue_script('jquery-ui-core');
|
194 |
wp_enqueue_script('jquery-ui-sortable');
|
195 |
} add_action( 'admin_enqueue_scripts', 'acx_widget_si_custom_admin_js' );
|
196 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
$total_arrays = ACX_SMW_TOTAL_STATIC_SERVICES; // Number Of static Services
|
198 |
$social_widget_icon_array_order = get_option('social_widget_icon_array_order');
|
199 |
|
200 |
+
if(is_serialized($social_widget_icon_array_order))
|
201 |
+
{
|
202 |
+
$social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
|
203 |
+
}
|
204 |
$social_widget_icon_array_count = count($social_widget_icon_array_order);
|
205 |
if ($social_widget_icon_array_count < $total_arrays)
|
206 |
{
|
207 |
+
acx_asmw_orderarray_refresh();
|
208 |
}
|
209 |
function enqueue_acx_widget_si_style()
|
210 |
{
|
211 |
wp_enqueue_style ( 'acx-widget-si-style', plugins_url('style.css', __FILE__) );
|
212 |
} add_action( 'wp_print_styles', 'enqueue_acx_widget_si_style' );
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
$acx_widget_si_current_version = get_option('acx_widget_si_current_version');
|
214 |
if($acx_widget_si_current_version != ACX_SMW_VERSION) // Current Version
|
215 |
{
|
216 |
+
update_option('acx_widget_si_current_version', ACX_SMW_VERSION);
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
}
|
218 |
// wp-admin Notices >> Plugin not configured
|
219 |
function acx_widget_si_pluign_not_configured()
|
220 |
{
|
221 |
+
echo '<div class="updated">
|
222 |
+
<p><b>Congratulations!, You Have Successfully Installed Acurax Social Media Widget, The Plugin Is Not Configured - <a href="admin.php?page=Acurax-Social-Widget-Settings">Click Here to Configure</a></b></p></div>';
|
|
|
|
|
|
|
223 |
}
|
224 |
if ($social_widget_icon_array_count == $total_arrays)
|
225 |
{
|
226 |
+
if ($acx_widget_si_twitter == "" && $acx_widget_si_facebook == "" && $acx_widget_si_youtube == "" && $acx_widget_si_linkedin == "" && $acx_widget_si_pinterest == "" && $acx_widget_si_gplus == "" && $acx_widget_si_feed == "")
|
|
|
|
|
227 |
{
|
228 |
+
if($acx_si_widget_current_page != 'Acurax-Social-Widget-Settings ')
|
229 |
+
{
|
230 |
+
add_action('admin_notices', 'acx_widget_si_pluign_not_configured',1);
|
231 |
+
}
|
232 |
}
|
233 |
+
}
|
234 |
+
|
|
|
235 |
function acx_widget_si_pluign_promotion()
|
236 |
{
|
237 |
+
|
238 |
+
$acx_widget_si_installed_date = get_option('acx_widget_si_installed_date');
|
239 |
+
if ($acx_widget_si_installed_date=="") { $acx_widget_si_installed_date = time();}
|
240 |
+
$acx_widget_si_next_date = get_option('acx_widget_si_next_date');
|
241 |
+
$acx_widget_si_days_till_today_from_install = time()-$acx_widget_si_installed_date;
|
242 |
+
$acx_widget_si_days_till_today_from_install = round(($acx_widget_si_days_till_today_from_install/60/60/24))." Days";
|
243 |
+
global $current_user;
|
244 |
+
get_currentuserinfo();
|
245 |
+
$acx_widget_si_current_user = $current_user->display_name;
|
246 |
+
if($acx_widget_si_current_user == "")
|
247 |
+
{
|
248 |
+
$acx_widget_si_current_user = "Webmaster";
|
249 |
+
}
|
250 |
+
echo '<div id="acx_td_asmw" class="notice">Hey <b>'.$acx_widget_si_current_user.'</b>, You were using Acurax Social Media Widget Wordpress Plugin for the last <b>'.$acx_widget_si_days_till_today_from_install.'</b>,and hope you are enjoying it.<br>From the bottom of our heart, we the team @ <a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=days" style="font-weight: normal; margin-left: 0px; color: rgb(68, 68, 68);" target="_blank">Acurax Technologies</a> thank you for being with us, and we appreciate your feedback,reviews and support.<br><a href="https://wordpress.org/support/view/plugin-reviews/acurax-social-media-widget?filter=5" target="_blank">Rate 5★\'s on wordpress</a><a href="admin.php?page=Acurax-Social-Widget-Premium">Premium Version Benefits</a><a href="admin.php?page=Acurax-Social-Widget-Premium&td=hide">Hide for Now</a></div>';
|
251 |
}
|
252 |
$acx_widget_si_installed_date = get_option('acx_widget_si_installed_date');
|
253 |
if ($acx_widget_si_installed_date=="") { $acx_widget_si_installed_date = time();}
|
254 |
+
$acx_asmw_d = 30;
|
255 |
+
$acx_asmw_d_n = 100;
|
256 |
+
$acx_asmw_prom = false;
|
257 |
+
|
258 |
+
if(get_option('acx_widget_si_td') == "")
|
259 |
{
|
260 |
+
$acx_widget_si_next_date = $acx_widget_si_installed_date+((60*60*24)*$acx_asmw_d);
|
261 |
+
update_option('acx_widget_si_next_date', $acx_widget_si_next_date);
|
262 |
+
update_option('acx_widget_si_td', "show");
|
263 |
+
} else if(get_option('acx_widget_si_td') == "hidden")
|
264 |
{
|
265 |
+
$acx_widget_si_next_date = time()+((60*60*24)*$acx_asmw_d_n);
|
266 |
+
update_option('acx_widget_si_next_date', $acx_widget_si_next_date);
|
267 |
+
update_option('acx_widget_si_td', "show");
|
268 |
+
} else if(get_option('acx_widget_si_td') == "hide")
|
269 |
+
{
|
270 |
+
$acx_widget_si_next_date = time()+((60*60*24)*2);
|
271 |
+
update_option('acx_widget_si_next_date', $acx_widget_si_next_date);
|
272 |
+
update_option('acx_widget_si_td', "show");
|
273 |
+
}
|
274 |
+
$acx_widget_si_next_date = get_option('acx_widget_si_next_date');
|
275 |
+
|
276 |
+
if(time() > $acx_widget_si_next_date)
|
277 |
+
{
|
278 |
+
$acx_asmw_prom = true;
|
279 |
}
|
280 |
+
|
281 |
+
if ($acx_asmw_prom == true && get_option('acx_widget_si_td') == "show")
|
282 |
+
{
|
283 |
+
add_action('admin_notices', 'acx_widget_si_pluign_promotion',1);
|
284 |
}
|
285 |
// Starting Widget Code
|
286 |
class acx_social_widget_icons_Widget extends WP_Widget
|
1010 |
</div> <!-- acx_asmw_es_acx_content_area -->
|
1011 |
|
1012 |
<div class="acx_asmw_es_footer_content_cvr">
|
1013 |
+
<div class="acx_asmw_es_wp_footer_area_desc">Its our pleasure to thank you for using our plugin and being with us. We always do our best to help you on your needs. If you like to hide this menu, you can do so at <a href="admin.php?page=Acurax-Social-Widget-Misc">Misc</a> page which is under our plugin options.</div> <!--acx_asmw_es_wp_footer_area_desc -->
|
1014 |
</div> <!-- acx_asmw_es_footer_content_cvr -->
|
1015 |
|
1016 |
</div> <!-- acx_asmw_es_middle_section -->
|
images/admin.ico
DELETED
Binary file
|
images/button.jpg
CHANGED
Binary file
|
images/buy.png
ADDED
Binary file
|
images/dyk.png
DELETED
Binary file
|
images/from.png
CHANGED
Binary file
|
images/fsmi_lp_sprite.png
DELETED
Binary file
|
images/orange_buynow.png
DELETED
Binary file
|
images/payments.jpg
DELETED
Binary file
|
images/thank-you.png
ADDED
Binary file
|
images/themes/1/googleplus.png
CHANGED
Binary file
|
images/themes/1/twitter.png
CHANGED
Binary file
|
images/themes/10/googleplus.png
CHANGED
Binary file
|
images/themes/10/twitter.png
CHANGED
Binary file
|
images/themes/11/googleplus.png
CHANGED
Binary file
|
images/themes/11/twitter.png
CHANGED
Binary file
|
images/themes/12/googleplus.png
CHANGED
Binary file
|
images/themes/12/twitter.png
CHANGED
Binary file
|
images/themes/13/googleplus.png
CHANGED
Binary file
|
images/themes/13/twitter.png
CHANGED
Binary file
|
images/themes/14/googleplus.png
CHANGED
Binary file
|
images/themes/14/twitter.png
CHANGED
Binary file
|
images/themes/15/googleplus.png
CHANGED
Binary file
|
images/themes/15/twitter.png
CHANGED
Binary file
|
images/themes/16/googleplus.png
CHANGED
Binary file
|
images/themes/16/twitter.png
CHANGED
Binary file
|
images/themes/17/googleplus.png
CHANGED
Binary file
|
images/themes/17/twitter.png
CHANGED
Binary file
|
images/themes/18/googleplus.png
CHANGED
Binary file
|
images/themes/18/twitter.png
CHANGED
Binary file
|
images/themes/19/googleplus.png
CHANGED
Binary file
|
images/themes/19/twitter.png
CHANGED
Binary file
|
images/themes/2/googleplus.png
CHANGED
Binary file
|
images/themes/2/twitter.png
CHANGED
Binary file
|
images/themes/20/googleplus.png
CHANGED
Binary file
|
images/themes/20/twitter.png
CHANGED
Binary file
|
images/themes/21/googleplus.png
CHANGED
Binary file
|
images/themes/21/twitter.png
CHANGED
Binary file
|
images/themes/22/googleplus.png
CHANGED
Binary file
|
images/themes/22/twitter.png
CHANGED
Binary file
|
images/themes/23/googleplus.png
CHANGED
Binary file
|
images/themes/23/twitter.png
CHANGED
Binary file
|
images/themes/24/googleplus.png
CHANGED
Binary file
|
images/themes/24/twitter.png
CHANGED
Binary file
|
images/themes/3/googleplus.png
CHANGED
Binary file
|
images/themes/3/twitter.png
CHANGED
Binary file
|
images/themes/4/googleplus.png
CHANGED
Binary file
|
images/themes/4/twitter.png
CHANGED
Binary file
|
images/themes/5/googleplus.png
CHANGED
Binary file
|
images/themes/5/twitter.png
CHANGED
Binary file
|
images/themes/6/googleplus.png
CHANGED
Binary file
|
images/themes/6/twitter.png
CHANGED
Binary file
|
images/themes/7/googleplus.png
CHANGED
Binary file
|
images/themes/7/twitter.png
CHANGED
Binary file
|
images/themes/8/googleplus.png
CHANGED
Binary file
|
images/themes/8/twitter.png
CHANGED
Binary file
|
images/themes/9/googleplus.png
CHANGED
Binary file
|
images/themes/9/twitter.png
CHANGED
Binary file
|
premium.php
CHANGED
@@ -9,7 +9,7 @@ $get_td = "hide";
|
|
9 |
}
|
10 |
if($get_td == 'hide')
|
11 |
{
|
12 |
-
update_option('acx_widget_si_td', "
|
13 |
?>
|
14 |
<style type='text/css'>
|
15 |
#acx_td
|
@@ -18,7 +18,7 @@ display:none;
|
|
18 |
}
|
19 |
</style>
|
20 |
<div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
|
21 |
-
Thanks again for using the plugin.
|
22 |
</div>
|
23 |
<?php
|
24 |
}
|
9 |
}
|
10 |
if($get_td == 'hide')
|
11 |
{
|
12 |
+
update_option('acx_widget_si_td', "hidden");
|
13 |
?>
|
14 |
<style type='text/css'>
|
15 |
#acx_td
|
18 |
}
|
19 |
</style>
|
20 |
<div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
|
21 |
+
Thanks again for using the plugin.
|
22 |
</div>
|
23 |
<?php
|
24 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Acurax
|
|
3 |
|
4 |
Tags: Social Media Widget,social icon widget,social media icon,socialmedia,fb widget,business social media,pinterest,social media marketing tools,social profile link,twitter facebook,social media button,pinterest button,social media logos,social media buttons,google plus button
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 4.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Social Media Widget Plugin, A Simple Social Icon Widget To Show Essential Social Media Icons - Can Select Social Media Icon Style , Size and Order.
|
@@ -30,7 +30,7 @@ Display SocialMedia Icons Using Widgets, on your sidebar.
|
|
30 |
|
31 |
We have 20+ icon styles to choose from, so that this will be a great plugin for your personal and business social media integration. You can have any number of social media bar
|
32 |
|
33 |
-
We Always Look Forward Your Comments and Suggestions for Future Updates. You can Submit Your Comments at our [Website](http://
|
34 |
|
35 |
You can use this plugin to have beautiful social media icons on your website, which links to your most popular social networking sites.
|
36 |
|
@@ -38,7 +38,7 @@ You can use this plugin to have beautiful social media icons on your website, wh
|
|
38 |
|
39 |
This Social Media Widget Plugin is developed and maintained by [Acurax International](http://wordpress.acurax.com/ "Website Designing"). For any support, you may contact us [here](http://www.acurax.com/contact.php "Web Consulting").
|
40 |
|
41 |
-
[Acurax](http://
|
42 |
|
43 |
After Installation of this Social Media Integration Plugin,Don't Forgot to Cast Your Vote on Compatibility :) Thanks for trying...
|
44 |
|
@@ -108,6 +108,13 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
108 |
|
109 |
== Upgrade Notice ==
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
= 2.4 =
|
112 |
* Nov 22, 2015
|
113 |
* UI Improvements
|
@@ -184,6 +191,13 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
184 |
|
185 |
== Changelog ==
|
186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
= 2.4 =
|
188 |
* Nov 22, 2015
|
189 |
* UI Improvements
|
3 |
|
4 |
Tags: Social Media Widget,social icon widget,social media icon,socialmedia,fb widget,business social media,pinterest,social media marketing tools,social profile link,twitter facebook,social media button,pinterest button,social media logos,social media buttons,google plus button
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 4.4.1
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Social Media Widget Plugin, A Simple Social Icon Widget To Show Essential Social Media Icons - Can Select Social Media Icon Style , Size and Order.
|
30 |
|
31 |
We have 20+ icon styles to choose from, so that this will be a great plugin for your personal and business social media integration. You can have any number of social media bar
|
32 |
|
33 |
+
We Always Look Forward Your Comments and Suggestions for Future Updates. You can Submit Your Comments at our [Website](http://wordpress.acurax.com/ "Website Designing")
|
34 |
|
35 |
You can use this plugin to have beautiful social media icons on your website, which links to your most popular social networking sites.
|
36 |
|
38 |
|
39 |
This Social Media Widget Plugin is developed and maintained by [Acurax International](http://wordpress.acurax.com/ "Website Designing"). For any support, you may contact us [here](http://www.acurax.com/contact.php "Web Consulting").
|
40 |
|
41 |
+
[Acurax](http://wordpress.acurax.com/ "Acurax Web Design Development Service") Provide [Wordpress Theme Design](http://wordpress.acurax.com "Wordpress Theme Design Service") and [Development](http://www.acurax.com/services/web-development.php "Wordpress Development") Services.
|
42 |
|
43 |
After Installation of this Social Media Integration Plugin,Don't Forgot to Cast Your Vote on Compatibility :) Thanks for trying...
|
44 |
|
108 |
|
109 |
== Upgrade Notice ==
|
110 |
|
111 |
+
= 2.4.1 =
|
112 |
+
* Dec 07, 2015
|
113 |
+
* Bug Fixes
|
114 |
+
* Updated Twitter Icons
|
115 |
+
* Updated Google Plus Icons
|
116 |
+
* Stable Release
|
117 |
+
|
118 |
= 2.4 =
|
119 |
* Nov 22, 2015
|
120 |
* UI Improvements
|
191 |
|
192 |
== Changelog ==
|
193 |
|
194 |
+
= 2.4.1 =
|
195 |
+
* Dec 07, 2015
|
196 |
+
* Bug Fixes
|
197 |
+
* Updated Twitter Icons
|
198 |
+
* Updated Google Plus Icons
|
199 |
+
* Stable Release
|
200 |
+
|
201 |
= 2.4 =
|
202 |
* Nov 22, 2015
|
203 |
* UI Improvements
|
smw-misc.php
CHANGED
@@ -48,9 +48,8 @@ if ($acx_si_asmw_hide_expert_support_menu == "") { $acx_si_asmw_hide_expert_supp
|
|
48 |
<div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 100%;'>
|
49 |
<?php if($acx_si_smw_hide_advert == "no")
|
50 |
{ ?>
|
51 |
-
<div id="
|
52 |
-
<a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features
|
53 |
-
</div> <!-- acx_fsmi_premium -->
|
54 |
<?php } ?>
|
55 |
<?php echo "<h2 class='acx_asmw_h2'>" . __( 'Acurax Social Widget Misc Settings', 'acx_si_config' ) . "</h2>"; ?>
|
56 |
<div class="acx_asmw_admin_left">
|
48 |
<div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 100%;'>
|
49 |
<?php if($acx_si_smw_hide_advert == "no")
|
50 |
{ ?>
|
51 |
+
<div id="acx_asmw_premium">
|
52 |
+
<a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!</a><a href="http://clients.acurax.com/floating-socialmedia.php/?utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_fsmi_premium -->
|
|
|
53 |
<?php } ?>
|
54 |
<?php echo "<h2 class='acx_asmw_h2'>" . __( 'Acurax Social Widget Misc Settings', 'acx_si_config' ) . "</h2>"; ?>
|
55 |
<div class="acx_asmw_admin_left">
|
social-help.php
CHANGED
@@ -5,9 +5,8 @@ if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
|
|
5 |
if($acx_si_smw_hide_advert == "no")
|
6 |
{
|
7 |
?>
|
8 |
-
<div id="
|
9 |
-
<a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features
|
10 |
-
</div> <!-- acx_fsmi_premium -->
|
11 |
<?php } ?>
|
12 |
<h2>Acurax Social Media Widget - Wordpress Plugin - Help/Support</h2>
|
13 |
<p style="text-align:center;">Thank you for using Acurax Social Media Widget Plugin For Your Wordpress Social Media Profile Linking Need.</p>
|
5 |
if($acx_si_smw_hide_advert == "no")
|
6 |
{
|
7 |
?>
|
8 |
+
<div id="acx_asmw_premium">
|
9 |
+
<a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!</a><a href="http://clients.acurax.com/floating-socialmedia.php/?utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_fsmi_premium -->
|
|
|
10 |
<?php } ?>
|
11 |
<h2>Acurax Social Media Widget - Wordpress Plugin - Help/Support</h2>
|
12 |
<p style="text-align:center;">Thank you for using Acurax Social Media Widget Plugin For Your Wordpress Social Media Profile Linking Need.</p>
|
social-icon.php
CHANGED
@@ -121,9 +121,8 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
121 |
<div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 100%;'>
|
122 |
<?php if($acx_si_smw_hide_advert == "no")
|
123 |
{ ?>
|
124 |
-
<div id="
|
125 |
-
<a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features
|
126 |
-
</div> <!-- acx_fsmi_premium -->
|
127 |
<?php } ?>
|
128 |
<?php echo "<h2 class='acx_asmw_h2'>" . __( 'Acurax Social Icons Options', 'acx_widget_si_config' ) . "</h2>"; ?>
|
129 |
<div class="acx_asmw_admin_left">
|
@@ -208,7 +207,7 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
208 |
<div id="acx_asmw_admin_left_section">
|
209 |
<?php echo "<h4>" . "Icon Size Settings" . "</h4>"; ?>
|
210 |
<div class="acx_asmw_admin_left_section_c">
|
211 |
-
<select name="acx_widget_si_icon_size">
|
212 |
<option value="16"<?php if ($acx_widget_si_icon_size == "16") { echo 'selected="selected"'; } ?>>16px X 16px </option>
|
213 |
<option value="25"<?php if ($acx_widget_si_icon_size == "25") { echo 'selected="selected"'; } ?>>25px X 25px </option>
|
214 |
<option value="32"<?php if ($acx_widget_si_icon_size == "32") { echo 'selected="selected"'; } ?>>32px X 32px </option>
|
@@ -325,22 +324,6 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
325 |
</div> <!-- acx_csma_sidebar -->
|
326 |
|
327 |
</div> <!-- acx_asmw_admin_left -->
|
328 |
-
|
329 |
-
<?php
|
330 |
-
if(ISSET($_GET["status"]))
|
331 |
-
{
|
332 |
-
$acx_status = $_GET['status'];
|
333 |
-
}
|
334 |
-
else
|
335 |
-
{
|
336 |
-
$acx_status = '';
|
337 |
-
}
|
338 |
-
|
339 |
-
if($acx_status == "updated") { ?>
|
340 |
-
<div style="display: block; background-color: rgb(255, 255, 224); padding: 10px; border: 1px solid rgb(230, 219, 85); font-family: arial; font-size: 13px; font-weight: bold; text-align: center; border-radius: 10px 10px 10px 10px;">Acurax Social Media Widget Update Successfully Completed - Thank You</div>
|
341 |
-
<?php
|
342 |
-
update_option('acx_widget_si_current_version', ACX_SMW_VERSION);
|
343 |
-
} ?>
|
344 |
<hr/>
|
345 |
<?php if($acx_si_smw_hide_advert == "no")
|
346 |
{
|
121 |
<div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 100%;'>
|
122 |
<?php if($acx_si_smw_hide_advert == "no")
|
123 |
{ ?>
|
124 |
+
<div id="acx_asmw_premium">
|
125 |
+
<a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!</a><a href="http://clients.acurax.com/floating-socialmedia.php/?utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_fsmi_premium -->
|
|
|
126 |
<?php } ?>
|
127 |
<?php echo "<h2 class='acx_asmw_h2'>" . __( 'Acurax Social Icons Options', 'acx_widget_si_config' ) . "</h2>"; ?>
|
128 |
<div class="acx_asmw_admin_left">
|
207 |
<div id="acx_asmw_admin_left_section">
|
208 |
<?php echo "<h4>" . "Icon Size Settings" . "</h4>"; ?>
|
209 |
<div class="acx_asmw_admin_left_section_c">
|
210 |
+
<select name="acx_widget_si_icon_size" style="width: 99.5%">
|
211 |
<option value="16"<?php if ($acx_widget_si_icon_size == "16") { echo 'selected="selected"'; } ?>>16px X 16px </option>
|
212 |
<option value="25"<?php if ($acx_widget_si_icon_size == "25") { echo 'selected="selected"'; } ?>>25px X 25px </option>
|
213 |
<option value="32"<?php if ($acx_widget_si_icon_size == "32") { echo 'selected="selected"'; } ?>>32px X 32px </option>
|
324 |
</div> <!-- acx_csma_sidebar -->
|
325 |
|
326 |
</div> <!-- acx_asmw_admin_left -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
<hr/>
|
328 |
<?php if($acx_si_smw_hide_advert == "no")
|
329 |
{
|
style_admin.css → style_for_admin.css
RENAMED
@@ -390,16 +390,6 @@ margin-left: auto;
|
|
390 |
margin-right: auto;
|
391 |
width: 283px;
|
392 |
}
|
393 |
-
#ad_fsmi_2_button_payments
|
394 |
-
{
|
395 |
-
background: url("images/payments.jpg") repeat scroll 0 0 transparent;
|
396 |
-
height: 86px;
|
397 |
-
display: block;
|
398 |
-
cursor: pointer;
|
399 |
-
margin-left: auto;
|
400 |
-
margin-right: auto;
|
401 |
-
width: 601px;
|
402 |
-
}
|
403 |
#ad_fsmi_2_button_payments_link
|
404 |
{
|
405 |
height: 86px;
|
@@ -407,8 +397,8 @@ width: 283px;
|
|
407 |
cursor: pointer;
|
408 |
width: 601px;
|
409 |
}
|
410 |
-
#
|
411 |
-
background: #fff6d6
|
412 |
border: 1px solid #fcc328;
|
413 |
float: left;
|
414 |
margin-bottom: 20px;
|
@@ -416,13 +406,30 @@ width: 283px;
|
|
416 |
min-height: 40px;
|
417 |
padding: 5px 0;
|
418 |
text-align: left;
|
419 |
-
text-indent: 105px;
|
420 |
width: 100%;
|
421 |
}
|
422 |
-
#
|
423 |
font-family: sans-serif;
|
424 |
font-size: 21px;
|
425 |
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
426 |
}
|
427 |
.acx_asmw_h2
|
428 |
{
|
@@ -692,6 +699,23 @@ border-right: 1px solid #D3D3D3;
|
|
692 |
margin-left: 10px;
|
693 |
padding: 4px 10px 4px 28px;
|
694 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
/* Starting CSS for Quick Request Form */
|
696 |
#acx_quick_request_form
|
697 |
{
|
390 |
margin-right: auto;
|
391 |
width: 283px;
|
392 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
#ad_fsmi_2_button_payments_link
|
394 |
{
|
395 |
height: 86px;
|
397 |
cursor: pointer;
|
398 |
width: 601px;
|
399 |
}
|
400 |
+
#acx_asmw_premium {
|
401 |
+
background: #fff6d6;
|
402 |
border: 1px solid #fcc328;
|
403 |
float: left;
|
404 |
margin-bottom: 20px;
|
406 |
min-height: 40px;
|
407 |
padding: 5px 0;
|
408 |
text-align: left;
|
|
|
409 |
width: 100%;
|
410 |
}
|
411 |
+
#acx_asmw_premium a {
|
412 |
font-family: sans-serif;
|
413 |
font-size: 21px;
|
414 |
text-decoration: none;
|
415 |
+
float:left;
|
416 |
+
}
|
417 |
+
#acx_asmw_premium .buy_now
|
418 |
+
{
|
419 |
+
background: rgba(0, 0, 0, 0) url("images/buy.png") repeat scroll 0 0;
|
420 |
+
cursor: pointer;
|
421 |
+
display: block;
|
422 |
+
float: left;
|
423 |
+
height: 43px;
|
424 |
+
margin-left: 8px;
|
425 |
+
opacity: 0.7;
|
426 |
+
width: 418px;
|
427 |
+
transition: all 0.3s ease 0s;
|
428 |
+
}
|
429 |
+
#acx_asmw_premium .buy_now:hover
|
430 |
+
{
|
431 |
+
opacity:0.9;
|
432 |
+
transition: all 0.3s ease 0s;
|
433 |
}
|
434 |
.acx_asmw_h2
|
435 |
{
|
699 |
margin-left: 10px;
|
700 |
padding: 4px 10px 4px 28px;
|
701 |
}
|
702 |
+
#acx_td_asmw {
|
703 |
+
background: white url("images/thank-you.png") no-repeat scroll 25px center;
|
704 |
+
border: 1px solid lightsteelblue;
|
705 |
+
border-radius: 3px;
|
706 |
+
box-sizing: border-box;
|
707 |
+
font-family: arial;
|
708 |
+
font-size: 12px;
|
709 |
+
line-height: 25px !important;
|
710 |
+
padding: 10px 10px 10px 93px;
|
711 |
+
text-align: center;
|
712 |
+
}
|
713 |
+
#acx_td_asmw a {
|
714 |
+
font-family: arial;
|
715 |
+
font-weight: bold;
|
716 |
+
margin-left: 16px;
|
717 |
+
text-transform: capitalize;
|
718 |
+
}
|
719 |
/* Starting CSS for Quick Request Form */
|
720 |
#acx_quick_request_form
|
721 |
{
|