Version Description
- Changed input type to number for number of rows and columns field
Download this release
Release Info
Developer | Access Keys |
Plugin | Social Icons WordPress Plugin – AccessPress Social Icons |
Version | 1.5.5 |
Comparing to | |
See all releases |
Code changes from version 1.5.4 to 1.5.5
- accesspress-social-icons.php +2 -2
- icon-sets/png/set5/Thumbs.db +0 -0
- inc/backend/add-new-set.php +2 -2
- inc/backend/edit-icon-set.php +3 -3
- 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.5.
|
8 |
* Author:AccessPress Themes
|
9 |
* Author URI:http://accesspressthemes.com/
|
10 |
* Text Domain: accesspress-social-icons
|
@@ -46,7 +46,7 @@ if (!defined('APS_LANG_DIR')) {
|
|
46 |
}
|
47 |
if(!defined('APS_VERSION'))
|
48 |
{
|
49 |
-
define('APS_VERSION','1.5.
|
50 |
}
|
51 |
/**
|
52 |
* Register of widgets
|
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.5.5
|
8 |
* Author:AccessPress Themes
|
9 |
* Author URI:http://accesspressthemes.com/
|
10 |
* Text Domain: accesspress-social-icons
|
46 |
}
|
47 |
if(!defined('APS_VERSION'))
|
48 |
{
|
49 |
+
define('APS_VERSION','1.5.5');
|
50 |
}
|
51 |
/**
|
52 |
* Register of widgets
|
icon-sets/png/set5/Thumbs.db
CHANGED
Binary file
|
inc/backend/add-new-set.php
CHANGED
@@ -51,7 +51,7 @@
|
|
51 |
<div class="aps-field-wrapper display-horizontal-reference form-field">
|
52 |
<label><?php _e('Number of Rows', 'accesspress-social-icons') ?></label>
|
53 |
<div class="aps-field">
|
54 |
-
<input type="
|
55 |
</div>
|
56 |
<div class="aps-option-note">
|
57 |
<p><?php _e('Please enter the number of rows in number.Default is 1.', 'accesspress-social-icons'); ?></p>
|
@@ -62,7 +62,7 @@
|
|
62 |
<div class="aps-field-wrapper display-vertical-reference form-field" style="display: none">
|
63 |
<label><?php _e('Number of Columns', 'accesspress-social-icons') ?></label>
|
64 |
<div class="aps-field">
|
65 |
-
<input type="
|
66 |
</div>
|
67 |
<div class="aps-option-note">
|
68 |
<p><?php _e('Please enter the number of columns in number.Default is 1.', 'accesspress-social-icons'); ?></p>
|
51 |
<div class="aps-field-wrapper display-horizontal-reference form-field">
|
52 |
<label><?php _e('Number of Rows', 'accesspress-social-icons') ?></label>
|
53 |
<div class="aps-field">
|
54 |
+
<input type="number" name="num_rows" min="1"/>
|
55 |
</div>
|
56 |
<div class="aps-option-note">
|
57 |
<p><?php _e('Please enter the number of rows in number.Default is 1.', 'accesspress-social-icons'); ?></p>
|
62 |
<div class="aps-field-wrapper display-vertical-reference form-field" style="display: none">
|
63 |
<label><?php _e('Number of Columns', 'accesspress-social-icons') ?></label>
|
64 |
<div class="aps-field">
|
65 |
+
<input type="number" name="num_columns" min="1"/>
|
66 |
</div>
|
67 |
<div class="aps-option-note">
|
68 |
<p><?php _e('Please enter the number of columns in number.Default is 1.', 'accesspress-social-icons'); ?></p>
|
inc/backend/edit-icon-set.php
CHANGED
@@ -73,7 +73,7 @@ $icon_extra = unserialize($icon_set->icon_extra);
|
|
73 |
<div class="aps-field-wrapper form-field display-horizontal-reference" <?php if ($icon_set->icon_display == 'vertical') { ?>style="display: none"<?php } ?>>
|
74 |
<label><?php _e('Number of Rows', 'accesspress-social-icons') ?></label>
|
75 |
<div class="aps-field">
|
76 |
-
<input type="
|
77 |
</div>
|
78 |
<div class="aps-option-note">
|
79 |
<p><?php _e('Please enter the number of rows in number.Default is 1.', 'accesspress-social-icons'); ?></p>
|
@@ -84,11 +84,11 @@ $icon_extra = unserialize($icon_set->icon_extra);
|
|
84 |
<div class="aps-field-wrapper display-vertical-reference form-field" <?php if ($icon_set->icon_display == 'horizontal') { ?>style="display: none"<?php } ?>>
|
85 |
<label><?php _e('Number of Columns', 'accesspress-social-icons') ?></label>
|
86 |
<div class="aps-field">
|
87 |
-
<input type="
|
88 |
if (isset($icon_extra['num_columns'])) {
|
89 |
echo $icon_extra['num_columns'];
|
90 |
}
|
91 |
-
?>'/>
|
92 |
</div>
|
93 |
<div class="aps-option-note">
|
94 |
<p><?php _e('Please enter the number of columns in number.Default is 1.', 'accesspress-social-icons'); ?></p>
|
73 |
<div class="aps-field-wrapper form-field display-horizontal-reference" <?php if ($icon_set->icon_display == 'vertical') { ?>style="display: none"<?php } ?>>
|
74 |
<label><?php _e('Number of Rows', 'accesspress-social-icons') ?></label>
|
75 |
<div class="aps-field">
|
76 |
+
<input type="number" name="num_rows" value="<?php echo $icon_set->num_rows; ?>" min="1"/>
|
77 |
</div>
|
78 |
<div class="aps-option-note">
|
79 |
<p><?php _e('Please enter the number of rows in number.Default is 1.', 'accesspress-social-icons'); ?></p>
|
84 |
<div class="aps-field-wrapper display-vertical-reference form-field" <?php if ($icon_set->icon_display == 'horizontal') { ?>style="display: none"<?php } ?>>
|
85 |
<label><?php _e('Number of Columns', 'accesspress-social-icons') ?></label>
|
86 |
<div class="aps-field">
|
87 |
+
<input type="number" name="num_columns" value='<?php
|
88 |
if (isset($icon_extra['num_columns'])) {
|
89 |
echo $icon_extra['num_columns'];
|
90 |
}
|
91 |
+
?>' min="1"/>
|
92 |
</div>
|
93 |
<div class="aps-option-note">
|
94 |
<p><?php _e('Please enter the number of columns in number.Default is 1.', 'accesspress-social-icons'); ?></p>
|
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.5
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -129,6 +129,9 @@ Once you install the plugin , you can check some general documentation about how
|
|
129 |
4. Backend Lcon Sets Listing
|
130 |
|
131 |
== Changelog ==
|
|
|
|
|
|
|
132 |
= 1.5.4 =
|
133 |
* Updated about section
|
134 |
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.5.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
129 |
4. Backend Lcon Sets Listing
|
130 |
|
131 |
== Changelog ==
|
132 |
+
= 1.5.5 =
|
133 |
+
* Changed input type to number for number of rows and columns field
|
134 |
+
|
135 |
= 1.5.4 =
|
136 |
* Updated about section
|
137 |
|