Plugin Directory

Changeset 3141119


Ignore:
Timestamp:
08/25/2024 03:50:49 PM (17 months ago)
Author:
samglover
Message:

1.8.6

Location:
client-power-tools
Files:
108 added
5 edited

Legend:

Unmodified
Added
Removed
  • client-power-tools/trunk/changelog.txt

    r3100099 r3141119  
    22
    33All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com).
     4
     5### 1.8.6 - 2024-08-25
     6
     7#### Fixed
     8- Fixed a bug in cpt_messages() where calling get_the_ID() after cpt_messages() would return the last message ID instead of the main post ID.
     9- Fixed a bug in cpt_get_notices() where WordPress would add a second, unstyled dismiss button to notices on the frontend.
     10
    411
    512### 1.8.5 - 2024-06-09
  • client-power-tools/trunk/client-power-tools.php

    r3100099 r3141119  
    55 * Plugin URI: https://clientpowertools.com
    66 * Description: Client Power Tools is an easy-to-use client dashboard, project management, and communication portal built for designers, developers, consultants, lawyers, and other professionals.
    7  * Version: 1.8.5
     7 * Version: 1.8.6
    88 * Author: Sam Glover
    99 * Author URI: https://samglover.net
     
    2020 * Constants
    2121 */
    22 define('CLIENT_POWER_TOOLS_PLUGIN_VERSION', '1.8.5');
     22define('CLIENT_POWER_TOOLS_PLUGIN_VERSION', '1.8.6');
    2323define('CLIENT_POWER_TOOLS_DIR_PATH', plugin_dir_path(__FILE__));
    2424define('CLIENT_POWER_TOOLS_DIR_URL', plugin_dir_url(__FILE__));
  • client-power-tools/trunk/common/cpt-common-messages.php

    r3025929 r3141119  
    8888    printf(__('%sNo messages found.%s' , 'client-power-tools'), '<p>', '</p>');
    8989  endif;
     90  wp_reset_postdata();
    9091}
    9192
  • client-power-tools/trunk/common/cpt-common.php

    r3025929 r3141119  
    259259
    260260  $classes = [
    261     'notice',
    262261    'cpt-notice',
    263     'is-dismissible',
    264262  ];
     263  if (is_admin()) {
     264    $classes[] = 'notice';
     265    $classes[] = 'is-dismissible';
     266  }
    265267  if (!is_admin()) {
    266268    $classes[] = 'card';
  • client-power-tools/trunk/readme.txt

    r3122235 r3141119  
    44Tags: client management, project management, portal, restrict content, frontend login
    55Requires at least: 5.5
    6 Tested up to: 6.6
     6Tested up to: 6.6.1
    77Requires PHP: 7.3.5
    88Stable tag: trunk
     
    110110== Changelog ==
    111111
     112### 1.8.6 - 2024-08-25
     113
     114#### Fixed
     115- Fixed a bug in cpt_messages() where calling get_the_ID() after cpt_messages() would return the last message ID instead of the main post ID.
     116- Fixed a bug in cpt_get_notices() where WordPress would add a second, unstyled dismiss button to notices on the frontend.
     117
     118
    112119### 1.8.5 - 2024-06-09
    113120
Note: See TracChangeset for help on using the changeset viewer.