Version Description
- Compatible with WP 4.2.1
Download this release
Release Info
| Developer | cifi |
| Plugin | |
| Version | 3.0.3 |
| Comparing to | |
| See all releases | |
Code changes from version 3.0.2 to 3.0.3
- models/Frontend.php +1 -1
- readme.txt +4 -2
- starbox.php +3 -3
models/Frontend.php
CHANGED
|
@@ -51,7 +51,7 @@ class ABH_Models_Frontend {
|
|
| 51 |
*/
|
| 52 |
public function getProfileImage() {
|
| 53 |
if (isset($this->details['abh_gravatar']) && $this->details['abh_gravatar'] <> '' && file_exists(_ABH_GRAVATAR_DIR_ . $this->details['abh_gravatar'])) {
|
| 54 |
-
return '<img src="' . _ABH_GRAVATAR_URL_ . $this->details['abh_gravatar'] . '" class="photo" width="80" />';
|
| 55 |
} else {
|
| 56 |
return get_avatar($this->author->ID, 80);
|
| 57 |
}
|
| 51 |
*/
|
| 52 |
public function getProfileImage() {
|
| 53 |
if (isset($this->details['abh_gravatar']) && $this->details['abh_gravatar'] <> '' && file_exists(_ABH_GRAVATAR_DIR_ . $this->details['abh_gravatar'])) {
|
| 54 |
+
return '<img src="' . _ABH_GRAVATAR_URL_ . $this->details['abh_gravatar'] . '" class="photo" width="80" alt="' . $this->author->display_name . '" />';
|
| 55 |
} else {
|
| 56 |
return get_avatar($this->author->ID, 80);
|
| 57 |
}
|
readme.txt
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
Contributors: cifi, florinmuresan
|
| 3 |
Tags: author box,author,twitter,sidebar,images,shortcode,publisher,meta,post,posts,page,pages,google,facebook,snippet,plugin,html5,vcard,klout,users,user,author box,rich snippet,author bio, author bio box,bio,widget,comments,blog,content,email,image,linkedin,marketing,mobile,pinterest,profile,shortcodes,social,social media,wordpress
|
| 4 |
Requires at least: 3.3
|
| 5 |
-
Tested up to: 4.
|
| 6 |
Stable tag: trunk
|
| 7 |
Donate link: http://starbox.squirrly.co/starbox-the-author-box-for-humans/
|
| 8 |
|
|
@@ -103,11 +103,13 @@ Download it from the Wordpress directory and try it out. Having an author box af
|
|
| 103 |
|
| 104 |
|
| 105 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
| 106 |
= 3.0.2 =
|
| 107 |
* Compatible with WP 4.1.1
|
| 108 |
* Fix link tag close duplicates
|
| 109 |
* Added some theme compatibilities
|
| 110 |
-
* Social Networks removed in the free version. Only Facebook add Twitter remained.
|
| 111 |
|
| 112 |
= 3.0.1 =
|
| 113 |
* Compatible with WP 4.0.1
|
| 2 |
Contributors: cifi, florinmuresan
|
| 3 |
Tags: author box,author,twitter,sidebar,images,shortcode,publisher,meta,post,posts,page,pages,google,facebook,snippet,plugin,html5,vcard,klout,users,user,author box,rich snippet,author bio, author bio box,bio,widget,comments,blog,content,email,image,linkedin,marketing,mobile,pinterest,profile,shortcodes,social,social media,wordpress
|
| 4 |
Requires at least: 3.3
|
| 5 |
+
Tested up to: 4.2.1
|
| 6 |
Stable tag: trunk
|
| 7 |
Donate link: http://starbox.squirrly.co/starbox-the-author-box-for-humans/
|
| 8 |
|
| 103 |
|
| 104 |
|
| 105 |
== Changelog ==
|
| 106 |
+
= 3.0.3 =
|
| 107 |
+
* Compatible with WP 4.2.1
|
| 108 |
+
|
| 109 |
= 3.0.2 =
|
| 110 |
* Compatible with WP 4.1.1
|
| 111 |
* Fix link tag close duplicates
|
| 112 |
* Added some theme compatibilities
|
|
|
|
| 113 |
|
| 114 |
= 3.0.1 =
|
| 115 |
* Compatible with WP 4.0.1
|
starbox.php
CHANGED
|
@@ -8,11 +8,11 @@
|
|
| 8 |
Plugin URI:
|
| 9 |
Author: Squirrly UK
|
| 10 |
Description: Starbox is the Author Box for Humans. Professional Themes to choose from, HTML5, Social Media Profiles, Google Authorship
|
| 11 |
-
Version: 3.0.
|
| 12 |
-
Author URI:
|
| 13 |
*/
|
| 14 |
/* SET THE CURRENT VERSION ABOVE AND BELOW */
|
| 15 |
-
define('ABH_VERSION', '3.0.
|
| 16 |
/* Call config files */
|
| 17 |
require(dirname(__FILE__) . '/config/config.php');
|
| 18 |
|
| 8 |
Plugin URI:
|
| 9 |
Author: Squirrly UK
|
| 10 |
Description: Starbox is the Author Box for Humans. Professional Themes to choose from, HTML5, Social Media Profiles, Google Authorship
|
| 11 |
+
Version: 3.0.3
|
| 12 |
+
Author URI: https://www.squirrly.co/wordpress-seo-by-squirrly
|
| 13 |
*/
|
| 14 |
/* SET THE CURRENT VERSION ABOVE AND BELOW */
|
| 15 |
+
define('ABH_VERSION', '3.0.3');
|
| 16 |
/* Call config files */
|
| 17 |
require(dirname(__FILE__) . '/config/config.php');
|
| 18 |
|
