Plugin Directory

Changeset 3187348


Ignore:
Timestamp:
11/13/2024 10:20:55 AM (17 months ago)
Author:
dbeja
Message:

Update to version 2.0.2 from GitHub

Location:
author-box-for-divi
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • author-box-for-divi/tags/2.0.2/css/author.css

    r3168914 r3187348  
    99.abfd-container-divi {
    1010    z-index: 1;
     11}
     12
     13.abfd-container-divi .et_pb_column {
     14    float: none;
    1115}
    1216
  • author-box-for-divi/tags/2.0.2/index.php

    r3168914 r3187348  
    44Plugin URI: https://wordpress.org/plugins/author-box-for-divi/
    55Description: A plugin which provides an author box for your WordPress blog.
    6 Version: 2.0.1
     6Version: 2.0.2
    77Text Domain: author-box-for-divi
    88Domain Path: /languages
     
    430430    static function get_current_page_author_box_html( $users = false, $bypass_checks = false )
    431431    {
    432         if( ! is_single() && ! is_page() ) {
     432        if( ! $bypass_checks && ! is_single() && ! is_page() ) {
    433433            return false;
    434434        }
  • author-box-for-divi/tags/2.0.2/readme.txt

    r3178651 r3187348  
    55Requires PHP: 5.2.4
    66Requires at least: 3.0
    7 Stable tag: 2.0.1
     7Stable tag: 2.0.2
    88Tested up to: 6.7
    99License: GPLv2 or later
     
    7575
    7676== Changelog ==
     77
     78= 2.0.2 =
     79* Fixed a bug with shortcodes and some Divi layouts
    7780
    7881= 2.0.1 =
  • author-box-for-divi/trunk/css/author.css

    r3168914 r3187348  
    99.abfd-container-divi {
    1010    z-index: 1;
     11}
     12
     13.abfd-container-divi .et_pb_column {
     14    float: none;
    1115}
    1216
  • author-box-for-divi/trunk/index.php

    r3168914 r3187348  
    44Plugin URI: https://wordpress.org/plugins/author-box-for-divi/
    55Description: A plugin which provides an author box for your WordPress blog.
    6 Version: 2.0.1
     6Version: 2.0.2
    77Text Domain: author-box-for-divi
    88Domain Path: /languages
     
    430430    static function get_current_page_author_box_html( $users = false, $bypass_checks = false )
    431431    {
    432         if( ! is_single() && ! is_page() ) {
     432        if( ! $bypass_checks && ! is_single() && ! is_page() ) {
    433433            return false;
    434434        }
  • author-box-for-divi/trunk/readme.txt

    r3178651 r3187348  
    55Requires PHP: 5.2.4
    66Requires at least: 3.0
    7 Stable tag: 2.0.1
     7Stable tag: 2.0.2
    88Tested up to: 6.7
    99License: GPLv2 or later
     
    7575
    7676== Changelog ==
     77
     78= 2.0.2 =
     79* Fixed a bug with shortcodes and some Divi layouts
    7780
    7881= 2.0.1 =
Note: See TracChangeset for help on using the changeset viewer.