Version Description
- Done some code cleanup
Download this release
Release Info
Developer | Access Keys |
Plugin | Social Icons WordPress Plugin – AccessPress Social Icons |
Version | 1.0.7 |
Comparing to | |
See all releases |
Code changes from version 1.0.6 to 1.0.7
- accesspress-social-icons.php +3 -5
- inc/frontend/icon-group-list.php +0 -2
- readme.txt +4 -1
accesspress-social-icons.php
CHANGED
@@ -4,7 +4,7 @@ defined('ABSPATH') or die("No script kiddies please!");
|
|
4 |
* Plugin Name:AccessPress Social Icons
|
5 |
* Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
|
6 |
* Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
|
7 |
-
* Version:1.0.
|
8 |
* Author:AccessPress Themes
|
9 |
* Author URI:http://accesspressthemes.com/
|
10 |
* Text Domain: aps-social
|
@@ -31,7 +31,7 @@ if (!defined('APS_LANG_DIR')) {
|
|
31 |
}
|
32 |
if(!defined('APS_VERSION'))
|
33 |
{
|
34 |
-
define('APS_VERSION','1.0.
|
35 |
}
|
36 |
/**
|
37 |
* Register of widgets
|
@@ -238,9 +238,7 @@ if (!class_exists('APS_Class')) {
|
|
238 |
<?php
|
239 |
}
|
240 |
}
|
241 |
-
|
242 |
-
$images = glob($icon_set_path . "*.*");
|
243 |
-
$this->print_array($images); */
|
244 |
?>
|
245 |
</div>
|
246 |
</div><!--aps-set-wrapper-->
|
4 |
* Plugin Name:AccessPress Social Icons
|
5 |
* Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
|
6 |
* Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
|
7 |
+
* Version:1.0.7
|
8 |
* Author:AccessPress Themes
|
9 |
* Author URI:http://accesspressthemes.com/
|
10 |
* Text Domain: aps-social
|
31 |
}
|
32 |
if(!defined('APS_VERSION'))
|
33 |
{
|
34 |
+
define('APS_VERSION','1.0.7');
|
35 |
}
|
36 |
/**
|
37 |
* Register of widgets
|
238 |
<?php
|
239 |
}
|
240 |
}
|
241 |
+
|
|
|
|
|
242 |
?>
|
243 |
</div>
|
244 |
</div><!--aps-set-wrapper-->
|
inc/frontend/icon-group-list.php
CHANGED
@@ -4,7 +4,6 @@
|
|
4 |
$icon_counter = 0;
|
5 |
$group_icon_counter = 0;
|
6 |
$total_display_icons = $this->get_total_display_icons($icon_details);
|
7 |
-
//$this->print_array($icon_details);
|
8 |
$total_rows = ($icon_set->num_rows == '') ? 1 : $icon_set->num_rows;
|
9 |
$total_columns = ($icon_extra['num_columns'] == '') ? 1 : $icon_extra['num_columns'];
|
10 |
if ($icon_set->icon_display == 'horizontal') {
|
@@ -24,7 +23,6 @@
|
|
24 |
|
25 |
|
26 |
if ($icon['link'] != '') {
|
27 |
-
//$this->print_array($icon);
|
28 |
$icon_style = '<style class="aps-icon-front-style">';
|
29 |
$icon_counter++;
|
30 |
$group_icon_counter++;
|
4 |
$icon_counter = 0;
|
5 |
$group_icon_counter = 0;
|
6 |
$total_display_icons = $this->get_total_display_icons($icon_details);
|
|
|
7 |
$total_rows = ($icon_set->num_rows == '') ? 1 : $icon_set->num_rows;
|
8 |
$total_columns = ($icon_extra['num_columns'] == '') ? 1 : $icon_extra['num_columns'];
|
9 |
if ($icon_set->icon_display == 'horizontal') {
|
23 |
|
24 |
|
25 |
if ($icon['link'] != '') {
|
|
|
26 |
$icon_style = '<style class="aps-icon-front-style">';
|
27 |
$icon_counter++;
|
28 |
$group_icon_counter++;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: social icon, social icons, social media, social icon widget, social icons
|
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -118,6 +118,9 @@ Once you install the plugin , you can check some general documentation about how
|
|
118 |
4. Backend Lcon Sets Listing
|
119 |
|
120 |
== Changelog ==
|
|
|
|
|
|
|
121 |
= 1.0.6 =
|
122 |
* Done some minor changes in add and edit icon set section
|
123 |
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 1.0.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
118 |
4. Backend Lcon Sets Listing
|
119 |
|
120 |
== Changelog ==
|
121 |
+
= 1.0.7 =
|
122 |
+
* Done some code cleanup
|
123 |
+
|
124 |
= 1.0.6 =
|
125 |
* Done some minor changes in add and edit icon set section
|
126 |
|