Version Description
- Minor fixes & version bump
Download this release
Release Info
Developer | machothemes |
Plugin | Simple Author Box |
Version | 2.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.0 to 2.1.1
- readme.txt +7 -5
- simple-author-box.php +2 -2
readme.txt
CHANGED
@@ -2,8 +2,9 @@
|
|
2 |
Contributors: machothemes, silkalns
|
3 |
Tags: author box, responsive author box, author profile fields, author social icons, profile fields, author bio, author description, author profile, user profile, post author, rtl author box, amp, accelerated mobile pages
|
4 |
Requires at least: 4.6
|
|
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag:
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -42,9 +43,7 @@ The Simple Author Box plugin was designed to display the author information on p
|
|
42 |
|
43 |
= Can I remove the SAB from WooCommerce/Category/Tags pages? Can I have only on posts? =
|
44 |
|
45 |
-
|
46 |
-
Please download it from here: <a href="https://www.dropbox.com/s/gdkumeuilogui6g/wp-sab-fix.zip?dl=0">https://www.dropbox.com/s/gdkumeuilogui6g/wp-sab-fix.zip?dl=0</a>
|
47 |
-
Then go to your dashboard > Plugins > install and activate it and it will solve it.
|
48 |
|
49 |
= I have two author boxes. How can I hide one? =
|
50 |
|
@@ -80,7 +79,10 @@ Or you can give back by recommending this amazing plugin to your friends!
|
|
80 |
|
81 |
== Changelog ==
|
82 |
|
83 |
-
= 2.1.
|
|
|
|
|
|
|
84 |
* Speed improvement ( We removed FA and added icons as SVG's and removed our css file and added inline )
|
85 |
* Added new Social Icon : Mastodont
|
86 |
* Added RTL Support
|
2 |
Contributors: machothemes, silkalns
|
3 |
Tags: author box, responsive author box, author profile fields, author social icons, profile fields, author bio, author description, author profile, user profile, post author, rtl author box, amp, accelerated mobile pages
|
4 |
Requires at least: 4.6
|
5 |
+
Requires PHP: 5.6
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: trunk
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
43 |
|
44 |
= Can I remove the SAB from WooCommerce/Category/Tags pages? Can I have only on posts? =
|
45 |
|
46 |
+
The PRO version of Simple Author Box fixes this.
|
|
|
|
|
47 |
|
48 |
= I have two author boxes. How can I hide one? =
|
49 |
|
79 |
|
80 |
== Changelog ==
|
81 |
|
82 |
+
= 2.1.1 =
|
83 |
+
* Minor fixes & version bump
|
84 |
+
|
85 |
+
= 2.1.0 =
|
86 |
* Speed improvement ( We removed FA and added icons as SVG's and removed our css file and added inline )
|
87 |
* Added new Social Icon : Mastodont
|
88 |
* Added RTL Support
|
simple-author-box.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Simple Author Box
|
4 |
* Plugin URI: http://wordpress.org/plugins/simple-author-box/
|
5 |
* Description: Adds a responsive author box with social icons on your posts.
|
6 |
-
* Version: 2.1.
|
7 |
* Author: Macho Themes
|
8 |
* Author URI: https://www.machothemes.com/
|
9 |
* License: GPLv3
|
@@ -30,7 +30,7 @@
|
|
30 |
define( 'SIMPLE_AUTHOR_BOX_PATH', plugin_dir_path( __FILE__ ) );
|
31 |
define( 'SIMPLE_AUTHOR_BOX_ASSETS', plugins_url( '/assets/', __FILE__ ) );
|
32 |
define( 'SIMPLE_AUTHOR_BOX_SLUG', plugin_basename( __FILE__ ) );
|
33 |
-
define( 'SIMPLE_AUTHOR_BOX_VERSION', '2.1.
|
34 |
define( 'SIMPLE_AUTHOR_SCRIPT_DEBUG', false );
|
35 |
|
36 |
|
3 |
* Plugin Name: Simple Author Box
|
4 |
* Plugin URI: http://wordpress.org/plugins/simple-author-box/
|
5 |
* Description: Adds a responsive author box with social icons on your posts.
|
6 |
+
* Version: 2.1.1
|
7 |
* Author: Macho Themes
|
8 |
* Author URI: https://www.machothemes.com/
|
9 |
* License: GPLv3
|
30 |
define( 'SIMPLE_AUTHOR_BOX_PATH', plugin_dir_path( __FILE__ ) );
|
31 |
define( 'SIMPLE_AUTHOR_BOX_ASSETS', plugins_url( '/assets/', __FILE__ ) );
|
32 |
define( 'SIMPLE_AUTHOR_BOX_SLUG', plugin_basename( __FILE__ ) );
|
33 |
+
define( 'SIMPLE_AUTHOR_BOX_VERSION', '2.1.1' );
|
34 |
define( 'SIMPLE_AUTHOR_SCRIPT_DEBUG', false );
|
35 |
|
36 |
|