Plugin Directory

Changeset 3234166


Ignore:
Timestamp:
02/03/2025 04:57:34 PM (13 months ago)
Author:
arstudios
Message:

Release 1.10.3.

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

Legend:

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

    r3216060 r3234166  
    55Requires at least: 6.0.0
    66Tested up to: 6.7
    7 Stable tag: 1.10.2
     7Stable tag: 1.10.3
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    210210
    211211== Changelog ==
     212= 1.10.3 (Pro) - 2025-2-3 =
     213* Update: All core updates.
     214
     215= 1.10.3 (Core) - 2025-2-3 =
     216* Update: Updated the settings -> site info -> theme thumbnail list to only display in the core version, as these are only needed for core and legacy shortcode implementations.
     217
    212218= 1.10.2 (Pro) - 2025-1-2 =
    213219* Update: Updated the automated email cron scheduling function to also fire on WP init to ensure that the cron job remains scheduled/active during site changes or extended periods of site inactivity.
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-settings.php

    r3216060 r3234166  
    900900        $plugin_version  = defined( 'ACCP_PLUGIN_VERSION' ) ? ACCP_PLUGIN_VERSION : '';
    901901        $plugin_name     = defined( 'ACCP_PLUGIN_NAME' ) && false !== strpos( strtolower( ACCP_PLUGIN_NAME ), 'pro' ) ? 'Constellation Client Portal Pro' : 'Constellation Client Portal Pro';
     902        $is_pro          = $this->utilities->is_pro_plugin( $this->plugin_name );
    902903
    903904        $html = '';
    904905
     906        /**
     907         * Status Section
     908         */
    905909        $html .= '<div class="accp-settings-section">';
    906910
     
    913917        $html .= '<div class="accp-settings-section">';
    914918
     919        /**
     920         * Client File Directory Section
     921         */
    915922        $html .= '<h2>Your Client File Directory</h2>';
    916923
     
    933940        $html .= '</div>';
    934941
    935         $html .= '<div class="accp-settings-section floated-container">';
    936 
    937         $html .= '<h2>Your Theme\'s Thumbnail Names</h2>';
    938 
    939         $html .= '<span>Below is a list of your theme&apos;s thumbnail names that can be pasted into shortcodes if you choose to enable thumbnails in a given list.</span>';
    940 
    941         $html .= '<ul class="theme-thumb-list">';
    942 
    943         foreach ( $thumbnails as $key => $thumbnail ) {
    944             $html .= '<li>' . esc_html( $thumbnail ) . '</li>';
    945         }
    946 
    947         $html .= '</ul>';
    948 
    949         $html .= '</div>';
     942        /**
     943         * Theme Thumbnail Section
     944         */
     945
     946        if ( ! $is_pro ) {
     947
     948            $html .= '<div class="accp-settings-section floated-container">';
     949
     950            $html .= '<h2>Your Theme\'s Thumbnail Names</h2>';
     951
     952            $html .= '<span>Below is a list of your theme&apos;s thumbnail names that can be pasted into shortcodes if you choose to enable thumbnails in a given list.</span>';
     953
     954            $html .= '<ul class="theme-thumb-list">';
     955
     956            foreach ( $thumbnails as $key => $thumbnail ) {
     957                $html .= '<li>' . esc_html( $thumbnail ) . '</li>';
     958            }
     959
     960            $html .= '</ul>';
     961
     962            $html .= '</div>';
     963
     964        }
    950965
    951966        $html .= '<div style="clear: both;"></div>';
  • constellation-client-portal/trunk/ars-constellation-client-portal.php

    r3216060 r3234166  
    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.10.2
     9 * Version:           1.10.3
    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.10.2'); // Change the version in the header as well.
     59    define('ACCP_PLUGIN_VERSION', '1.10.3'); // 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.