Plugin Directory

Changeset 3452151


Ignore:
Timestamp:
02/02/2026 02:00:48 PM (3 weeks ago)
Author:
arstudios
Message:

Constellation Client Portal release 2.6.1.

Location:
constellation-client-portal
Files:
134 added
1 deleted
3 edited

Legend:

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

    r3435420 r3452151  
    55Requires at least: 6.0.0
    66Tested up to: 6.9
    7 Stable tag: 2.6.0
     7Stable tag: 2.6.1
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    210210
    211211== Changelog ==
     212= 2.6.1 (Pro) - 2026-2-2 =
     213* Update: Updated the review request last shown functionality to show the element once per week for pro instances of the plugin.
     214* Fix: Corrected the filter name in the get_global_file_rewrite_slug function from accp_update_client_file_slug to accp_update_global_file_slug.
     215
     216= 2.6.1 (Core) - 2026-2-2 =
     217* Update: Updated the review request last shown functionality to show the element once per week for pro instances of the plugin.
     218
    212219= 2.6.0 (Pro) - 2026-1-8 =
    213220* Fix: Fixed issue where the accp-item-container link color css rule overrode individual a.accp-pay-link text color within invoice list items.
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-admin.php

    r3435420 r3452151  
    38633863
    38643864        /**
    3865          * Only show once per week.
     3865         * Only show once per week for pro instances.
    38663866         */
    38673867        $last_shown = get_option( 'accp_review_notice_last_shown' );
    38683868
    3869         if ( $last_shown && ( time() - intval( $last_shown ) ) < WEEK_IN_SECONDS ) {
    3870             return;
     3869        if ( $is_pro ) {
     3870
     3871            if ( $last_shown && ( time() - intval( $last_shown ) ) < WEEK_IN_SECONDS ) {
     3872                return;
     3873            }
    38713874        }
    38723875
  • constellation-client-portal/trunk/ars-constellation-client-portal.php

    r3435420 r3452151  
    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:           2.6.0
     9 * Version:           2.6.1
    1010 * Author:            ARS
    1111 * Author URI:        https://adrianrodriguezstudios.com
     
    5757     */
    5858    define('ACCP_PLUGIN_NAME', 'ARS_CONSTELLATION_CLIENT_PORTAL');
    59     define('ACCP_PLUGIN_VERSION', '2.6.0'); // Change the version in the header as well.
     59    define('ACCP_PLUGIN_VERSION', '2.6.1'); // Change the version in the header as well.
    6060    define( ACCP_PLUGIN_NAME, ACCP_PLUGIN_VERSION );
    6161    define( 'ACCP_PLUGIN_FILE_NAME', __FILE__ );
Note: See TracChangeset for help on using the changeset viewer.