Plugin Directory

Changeset 3160933


Ignore:
Timestamp:
10/01/2024 02:36:36 PM (17 months ago)
Author:
arstudios
Message:

Release 1.9.0.

Location:
constellation-client-portal
Files:
132 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • constellation-client-portal/trunk/README.txt

    r3145386 r3160933  
    55Requires at least: 6.0.0
    66Tested up to: 6.6
    7 Stable tag: 1.8.11
     7Stable tag: 1.9.0
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    210210
    211211== Changelog ==
     212= 1.9.0 (Pro) - 2024-10-1 =
     213* Update: Updated the syntax to check if wp_cron is disabled in the automated email settings.
     214* Fix: Fixed issue preventing global file lists from displaying multiple statuses (ex. "in progress" and "completed," etc.).
     215* Feature: Added functionality to allow companies to be created via CSV import.
     216
     217= 1.9.0 (Core) - 2024-10-1 =
     218* Fix: Fixed issue preventing lists from displaying multiple statuses (ex. "in progress" and "completed," etc.).
     219* Update: Added additional tooltips to the user profile fields.
    212220
    213221= 1.8.11 (Pro) - 2024-9-2 =
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-users.php

    r3101275 r3160933  
    225225        $html .= '<tr>';
    226226
    227         $html .= '<th><label for="client_company">Company</label></th>';
     227        $html .= '<th>';
     228
     229        $html .= '<label for="client_company">';
     230
     231        $html .= 'Company';
     232
     233        $html .= '<span class="accp-admin-tooltip-icon">i</span>';
     234
     235        $html .= '<span class="accp-wp-admin-tooltip accp-wp-admin-tooltip-dark accp-wp-admin-has-tooltip-center accp-user-status-tooltip">Not seeing an assigned company? Make sure that the company post is published.</span>';
     236
     237        $html .= '</label>';
     238
     239        $html .= '</th>';
    228240
    229241        $html .= '<td>';
     
    393405        $html .= '<th>';
    394406
    395         $html .= '<label for="client_company">' . esc_html( $label ) . '</label>';
     407        $html .= '<label for="client_company">';
     408
     409        $html .= esc_html( $label );
     410
     411        $html .= '<span class="accp-admin-tooltip-icon">i</span>';
     412
     413        $html .= '<span class="accp-wp-admin-tooltip accp-wp-admin-tooltip-dark accp-wp-admin-has-tooltip-center accp-user-status-tooltip">Not seeing an assigned company? Make sure that the company post is published.</span>';
     414
     415        $html .= '</label>';
    396416
    397417        $html .= '</th>';
  • constellation-client-portal/trunk/ars-constellation-client-portal.php

    r3145386 r3160933  
    77 * Plugin URI:        https://adrianrodriguezstudios.com/constellation-client-portal/
    88 * Description:       Create private pages for each of your clients, post private files, and protect your client files from unauthorized users and search engines.  <strong>Important:</strong> All Site-level File Protection features will cease to function if the plugin is disabled or uninstalled.
    9  * Version:           1.8.11
     9 * Version:           1.9.0
    1010 * Author:            ARS
    1111 * Author URI:        https://adrianrodriguezstudios.com
     
    5757     */
    5858    define('ACCP_PLUGIN_NAME', 'ARS_CONSTELLATION_CLIENT_PORTAL');
    59     define('ACCP_PLUGIN_VERSION', '1.8.11'); // Change the version in the header as well.
     59    define('ACCP_PLUGIN_VERSION', '1.9.0'); // Change the version in the header as well.
    6060    define( ACCP_PLUGIN_NAME, ACCP_PLUGIN_VERSION );
    6161    define( 'ACCP_PLUGIN_FILE_NAME', __FILE__ );
  • constellation-client-portal/trunk/public/shortcodes/class-ars-constellation-client-portal-list-shortcodes.php

    r3110365 r3160933  
    14431443            foreach ( $file_status as $status ) {
    14441444
    1445                 $sanitized_file_statuses = sanitize_text_field( $status );
     1445                $sanitized_file_statuses[] = sanitize_text_field( $status );
    14461446
    14471447            }
     
    15241524            foreach ( $invoice_status as $status ) {
    15251525
    1526                 $sanitized_invoice_statuses = sanitize_text_field( $status );
     1526                $sanitized_invoice_statuses[] = sanitize_text_field( $status );
    15271527
    15281528            }
Note: See TracChangeset for help on using the changeset viewer.