Skip to content

Commit

Permalink
Updated Plugin - 2.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
syedaliObjects committed May 16, 2024
1 parent 75f9178 commit 6faccb6
Show file tree
Hide file tree
Showing 99 changed files with 4,786 additions and 2,070 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 2.7.2 2024-05-07
- Fix: Updated depreciated PHP function to make it compatible with the latest PHP version.
- Added: Login designer compatibility banner.
- Improvement: Implement few UI tweaks.

## 2.7.1 2024-03-27
- Fixed - Disabled activity report by default.

## 2.7 - 2024-03-26
- New: Added Password Activity Report to provide weekly insights on access attempts to your protected sites.
- New: Added Categoric Tabs and Sub-Tabs User Interface for easy navigation and better user experience.

## 2.6.5.1 - 2023-11-20
- Ensured seamless compatibility with the latest WordPress version
Expand Down
388 changes: 69 additions & 319 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions admin/admin-bar.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class Admin_Bar {
*/
public static function load() {

add_action( 'wp_head', array( get_class(), 'styles' ) );
add_action( 'admin_head', array( get_class(), 'styles' ) );
add_action( 'wp_before_admin_bar_render', array( get_class(), 'toolbar_item' ) );
add_action( 'wp_head', array( self::class, 'styles' ) );
add_action( 'admin_head', array( self::class, 'styles' ) );
add_action( 'wp_before_admin_bar_render', array( self::class, 'toolbar_item' ) );

}

Expand Down
12 changes: 12 additions & 0 deletions admin/admin-caching.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ public function cache_settings_info() {
'password_protected_compat_caching'
);

add_settings_field(
'password_protected_documentation',
__( 'Documentation', 'password-protected' ),
array( $this, 'documentation' ),
'password-protected-compat',
'password_protected_compat_caching'
);

// WP Engine Hosting
if ( $this->test_wp_engine() ) {

Expand Down Expand Up @@ -112,6 +120,10 @@ public function field_cookies() {

}

public function documentation() {
echo '<a href="https://passwordprotectedwp.com/documentation?utm_source=documentation&utm_medium=help-tab">Documentation</a>';
}

/**
* WP Engine Hosting
*
Expand Down
1,094 changes: 925 additions & 169 deletions admin/admin.php

Large diffs are not rendered by default.

Loading

0 comments on commit 6faccb6

Please sign in to comment.