Plugin Directory

Changeset 2949019


Ignore:
Timestamp:
08/08/2023 02:44:18 AM (3 years ago)
Author:
flyplugins
Message:

Updated 1.4.9

Location:
woo-commerce-addon-for-wp-courseware
Files:
13 added
3 edited

Legend:

Unmodified
Added
Removed
  • woo-commerce-addon-for-wp-courseware/trunk/includes/class-wpcw-wc-members.php

    r2336347 r2949019  
    302302                        // Show which courses will be added to users created at this level.
    303303                        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
    305308                        }
    306309
  • woo-commerce-addon-for-wp-courseware/trunk/readme.txt

    r2946879 r2949019  
    55Requires at least: 4.8
    66Tested up to: 6.2.2
    7 Stable tag: 1.4.8
     7Stable tag: 1.4.9
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7474
    7575== Changelog ==
     76
     77= 1.4.9 =
     78* Tweak: Modified the Course Access Settings page to ONLY display the courses associated with the product.
    7679
    7780= 1.4.8 =
     
    146149
    147150= 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
    149152
    150153= 1.0.0 =
  • woo-commerce-addon-for-wp-courseware/trunk/wp-courseware-woo-commerce.php

    r2946879 r2949019  
    22/**
    33 * Plugin Name: Woo Commmerce Addon for WP Courseware
    4  * Version:     1.4.8
     4 * Version:     1.4.9
    55 * Plugin URI:  http://flyplugins.com
    66 * Description: The official extension for WP Courseware to add integration for WooCommmerce.
     
    1212 *
    1313 * @package WPCW_WC_Addon
    14  * @since 1.4.8
     14 * @since 1.4.9
    1515 */
    1616
     
    1919
    2020// Constants.
    21 define( 'WPCW_WC_ADDON_VERSION', '1.4.8' );
     21define( 'WPCW_WC_ADDON_VERSION', '1.4.9' );
    2222
    2323/**
Note: See TracChangeset for help on using the changeset viewer.