Version Description
- Fixed a small bug re. custom AMP CSS (forgot to add 'px' units for author description paragraphs, browser was interpreting them as em)
Download this release
Release Info
| Developer | machothemes |
| Plugin | |
| Version | 2.0.8 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.7 to 2.0.8
- inc/class-simple-author-box.php +2 -2
- readme.txt +4 -1
- simple-author-box.php +2 -2
inc/class-simple-author-box.php
CHANGED
|
@@ -403,8 +403,8 @@ class Simple_Author_Box {
|
|
| 403 |
),
|
| 404 |
'.saboxplugin-wrap .saboxplugin-desc p' => array(
|
| 405 |
'margin: 5px 0 12px 0',
|
| 406 |
-
'font-size: ' . absint( get_option( 'sab_box_desc_size', 14 ) ),
|
| 407 |
-
'line-height: ' . absint( get_option( 'sab_box_desc_size', 14 ) + 7 ),
|
| 408 |
),
|
| 409 |
'.saboxplugin-wrap .saboxplugin-web' => array(
|
| 410 |
'margin: 0 20px 15px',
|
| 403 |
),
|
| 404 |
'.saboxplugin-wrap .saboxplugin-desc p' => array(
|
| 405 |
'margin: 5px 0 12px 0',
|
| 406 |
+
'font-size: ' . absint( get_option( 'sab_box_desc_size', 14 ) ) . 'px',
|
| 407 |
+
'line-height: ' . absint( get_option( 'sab_box_desc_size', 14 ) + 7 ) . 'px',
|
| 408 |
),
|
| 409 |
'.saboxplugin-wrap .saboxplugin-web' => array(
|
| 410 |
'margin: 0 20px 15px',
|
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ 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
|
| 4 |
Requires at least: 4.6
|
| 5 |
Tested up to: 4.9
|
| 6 |
-
Stable tag: 2.0.
|
| 7 |
License: GPLv3 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
| 9 |
|
|
@@ -79,6 +79,9 @@ Or you can give back by recommending this amazing plugin to your friends!
|
|
| 79 |
|
| 80 |
== Changelog ==
|
| 81 |
|
|
|
|
|
|
|
|
|
|
| 82 |
= 2.0.7 =
|
| 83 |
* Added AMP compatibility
|
| 84 |
* Fixed some CSS isues & cleaned up the code
|
| 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
|
| 4 |
Requires at least: 4.6
|
| 5 |
Tested up to: 4.9
|
| 6 |
+
Stable tag: 2.0.8
|
| 7 |
License: GPLv3 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
| 9 |
|
| 79 |
|
| 80 |
== Changelog ==
|
| 81 |
|
| 82 |
+
= 2.0.8 =
|
| 83 |
+
* Fixed a small bug re. custom AMP CSS (forgot to add 'px' units for author description paragraphs, browser was interpreting them as em)
|
| 84 |
+
|
| 85 |
= 2.0.7 =
|
| 86 |
* Added AMP compatibility
|
| 87 |
* Fixed some CSS isues & cleaned up the code
|
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.0.
|
| 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.0.
|
| 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.0.8
|
| 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.0.8' );
|
| 34 |
define( 'SIMPLE_AUTHOR_SCRIPT_DEBUG', false );
|
| 35 |
|
| 36 |
|
