Changeset 2949019
- Timestamp:
- 08/08/2023 02:44:18 AM (3 years ago)
- Location:
- woo-commerce-addon-for-wp-courseware
- Files:
-
- 13 added
- 3 edited
-
tags/1.4.9 (added)
-
tags/1.4.9/includes (added)
-
tags/1.4.9/includes/class-wpcw-wc-addon.php (added)
-
tags/1.4.9/includes/class-wpcw-wc-admin.php (added)
-
tags/1.4.9/includes/class-wpcw-wc-members.php (added)
-
tags/1.4.9/includes/class-wpcw-wc-membership.php (added)
-
tags/1.4.9/includes/class-wpcw-wc-menu-courses.php (added)
-
tags/1.4.9/includes/deprecated.php (added)
-
tags/1.4.9/includes/functions.php (added)
-
tags/1.4.9/languages (added)
-
tags/1.4.9/languages/wpcw-wc-addon.pot (added)
-
tags/1.4.9/readme.txt (added)
-
tags/1.4.9/wp-courseware-woo-commerce.php (added)
-
trunk/includes/class-wpcw-wc-members.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-courseware-woo-commerce.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-commerce-addon-for-wp-courseware/trunk/includes/class-wpcw-wc-members.php
r2336347 r2949019 302 302 // Show which courses will be added to users created at this level. 303 303 foreach ( $courses as $courseID => $courseName ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName 304 $data['wpcw_members_levels'] .= sprintf( '<li class="wpcw_%s">%s</li>', ( isset( $courseListInDB[ $courseID ] ) ? 'enabled' : 'disabled' ), $courseName ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName 304 if ( ! isset($courseListInDB[ $courseID ]) ){ 305 continue; 306 } 307 $data['wpcw_members_levels'] .= sprintf( '<li class="wpcw_enabled">%s</li>', $courseName ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName 305 308 } 306 309 -
woo-commerce-addon-for-wp-courseware/trunk/readme.txt
r2946879 r2949019 5 5 Requires at least: 4.8 6 6 Tested up to: 6.2.2 7 Stable tag: 1.4. 87 Stable tag: 1.4.9 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 74 74 75 75 == Changelog == 76 77 = 1.4.9 = 78 * Tweak: Modified the Course Access Settings page to ONLY display the courses associated with the product. 76 79 77 80 = 1.4.8 = … … 146 149 147 150 = 1.1.0 = 148 * Fixed bug that prevented retroactive course assignment to assign incorrect course (s)151 * Fixed bug that prevented retroactive course assignment to assign incorrect course 149 152 150 153 = 1.0.0 = -
woo-commerce-addon-for-wp-courseware/trunk/wp-courseware-woo-commerce.php
r2946879 r2949019 2 2 /** 3 3 * Plugin Name: Woo Commmerce Addon for WP Courseware 4 * Version: 1.4. 84 * Version: 1.4.9 5 5 * Plugin URI: http://flyplugins.com 6 6 * Description: The official extension for WP Courseware to add integration for WooCommmerce. … … 12 12 * 13 13 * @package WPCW_WC_Addon 14 * @since 1.4. 814 * @since 1.4.9 15 15 */ 16 16 … … 19 19 20 20 // Constants. 21 define( 'WPCW_WC_ADDON_VERSION', '1.4. 8' );21 define( 'WPCW_WC_ADDON_VERSION', '1.4.9' ); 22 22 23 23 /**
Note: See TracChangeset
for help on using the changeset viewer.