Changeset 2765084
- Timestamp:
- 08/02/2022 10:11:57 AM (4 years ago)
- Location:
- wp-crm-system/trunk
- Files:
-
- 3 edited
-
includes/wcs-modal-quick-add.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-crm-system.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-crm-system/trunk/includes/wcs-modal-quick-add.php
r2761091 r2765084 16 16 * 17 17 * @since 3.2.5 18 * 19 * Update: Use admin_footer so that the modal markup won't be visible right away 20 * 21 * @since 3.2.5.1 18 22 */ 19 add_action( ' init', 'wcs_modal_quick_add' );23 add_action( 'admin_footer', 'wcs_modal_quick_add' ); 20 24 function wcs_modal_quick_add() { 21 25 ?> -
wp-crm-system/trunk/readme.txt
r2761105 r2765084 5 5 Requires PHP: 5.6 6 6 Tested up to: 6.0.1 7 Stable tag: 3.2.5 7 Stable tag: 3.2.5.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 91 91 92 92 == Changelog == 93 = 3.2.5.1 = 94 * Fix: Search feature failing 93 95 = 3.2.5 = 94 96 * New: Quick add modals for Campaigns, Organizations, Contacts and Projects -
wp-crm-system/trunk/wp-crm-system.php
r2761091 r2765084 4 4 Plugin URI: https://www.wp-crm.com 5 5 Description: A complete CRM for WordPress 6 Version: 3.2.5 6 Version: 3.2.5.1 7 7 Author: Premium WordPress Support 8 8 Author URI: https://www.wp-crm.com … … 35 35 } 36 36 if ( ! defined( 'WP_CRM_SYSTEM_VERSION' ) ) { 37 define( 'WP_CRM_SYSTEM_VERSION', '3.2.5 ' );37 define( 'WP_CRM_SYSTEM_VERSION', '3.2.5.1' ); 38 38 } 39 39 if( ! defined( 'WP_CRM_SYSTEM_URL' ) ) { … … 159 159 } 160 160 } elseif( isset( $_GET['post_type'] ) ) { 161 162 /** 163 * Ensure that the modal markup won't be visible on the table list page 164 * 165 * @since 3.2.5.1 166 */ 167 global $pagenow; 168 if( 'post-new.php' !== $pagenow ) { 169 return; 170 } 161 171 /** 162 172 * Valid post type we allow for this modal
Note: See TracChangeset
for help on using the changeset viewer.