Plugin Directory

Changeset 2811296


Ignore:
Timestamp:
11/03/2022 05:15:06 PM (3 years ago)
Author:
honorswp
Message:

Update to version 1.3.2 from GitHub

Location:
powerpack-for-learndash
Files:
18 added
13 edited
1 copied

Legend:

Unmodified
Added
Removed
  • powerpack-for-learndash/assets/icon.svg

    • Property svn:mime-type set to image/svg+xml
  • powerpack-for-learndash/tags/1.3.2/changelog.txt

    r2665925 r2811296  
    4848* Removed deprecated "Remove Video Progression Cookie on Lesson Completion"
    4949* Removed deprecated "Remove Video Progression Cookie on Topic Completion"
     50
     51= 1.3.1 =
     52* Fixed fatal error
     53
     54= 1.3.2 =
     55* Fixed PHP warnings
  • powerpack-for-learndash/tags/1.3.2/includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php

    r2665925 r2811296  
    4040         * @return String The status of the comments.
    4141         */
    42         public function learndash_focus_mode_comments_func( $comment_status = 'closed', $post ) {
     42        public function learndash_focus_mode_comments_func( $comment_status, $post ) {
    4343            // Example Only allow comments on Quiz post type.
    4444            if ( 'sfwd-quiz' === $post->post_type ) {
  • powerpack-for-learndash/tags/1.3.2/includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php

    r2665925 r2811296  
    3838         */
    3939        public function pre_get_comments_func( $comment_query ) {
    40             if ( is_admin() ) {
    41                 $current_screen = get_current_screen();
    42                 if ( 'dashboard' === $current_screen->id ) {
    43                     if ( ! current_user_can( 'moderate_comments' ) ) {
    44                         $post_query_args = [
    45                             'post_type'   => [ 'sfwd-assignment', 'sfwd-essays' ],
    46                             'post_status' => [ 'draft', 'publish', 'graded', 'not_graded' ],
    47                             'fields'      => 'ids',
    48                             'nopaging'    => true,
    49                         ];
     40            global $pagenow;
    5041
    51                         $post_query = new WP_Query( $post_query_args );
    52                         if ( ( $post_query instanceof WP_Query ) && ( ! empty( $post_query->posts ) ) ) {
    53                             $post__not_in = [];
     42            // $current_screen = get_current_screen();
     43            if ( is_admin() && 'index.php' === $pagenow ) {
     44                if ( ! current_user_can( 'moderate_comments' ) ) {
     45                    $post_query_args = [
     46                        'post_type'   => [ 'sfwd-assignment', 'sfwd-essays' ],
     47                        'post_status' => [ 'draft', 'publish', 'graded', 'not_graded' ],
     48                        'fields'      => 'ids',
     49                        'nopaging'    => true,
     50                    ];
    5451
    55                             if ( '' === $comment_query->query_vars['post__not_in'] ) {
    56                                 $post__not_in = $post_query->posts;
    57                             } else {
    58                                 $post__not_in = array_merge( (array) $comment_query->query_vars['post__not_in'], $post_query->posts );
    59                             }
     52                    $post_query = new WP_Query( $post_query_args );
     53                    if ( ( $post_query instanceof WP_Query ) && ( ! empty( $post_query->posts ) ) ) {
     54                        $post__not_in = [];
    6055
    61                             if ( ! empty( $post__not_in ) ) {
    62                                 $comment_query->query_vars['post__not_in'] = $post__not_in;
    63                             }
     56                        if ( '' === $comment_query->query_vars['post__not_in'] ) {
     57                            $post__not_in = $post_query->posts;
     58                        } else {
     59                            $post__not_in = array_merge( (array) $comment_query->query_vars['post__not_in'], $post_query->posts );
     60                        }
     61
     62                        if ( ! empty( $post__not_in ) ) {
     63                            $comment_query->query_vars['post__not_in'] = $post__not_in;
    6464                        }
    6565                    }
     
    7575        public function learndash_powerpack_class_details() {
    7676            $ld_type           = esc_html__( 'comment', 'learndash-powerpack' );
    77             $class_title       = esc_html__( 'Comments options for Assignments and Essay', 'learndash-powerpack' );
    78             $class_description = esc_html__( 'Enable this option will Hide comments from Assignments and Essay from showing on Dashboard Activity Widget.', 'learndash-powerpack' );
     77            $class_title       = esc_html__( 'Comment options for Assignments and Essay', 'learndash-powerpack' );
     78            $class_description = esc_html__( 'Enabling this option hides comments on Assignments and Essays from the Dashboard Activity Widget. Users that can moderate comments will still see them.', 'learndash-powerpack' );
    7979
    8080            return [
  • powerpack-for-learndash/tags/1.3.2/languages/learndash-powerpack.pot

    r2665925 r2811296  
    1 # Copyright (C) 2021 HonorsWP
    2 # This file is distributed under the same license as the PowerPack for LearnDash plugin.
     1# Copyright (C) 2022 HonorsWP
     2# This file is distributed under the GNU General Public License v3.0.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: PowerPack for LearnDash 1.3.0\n"
    6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/LearnDash-PowerPack\n"
     5"Project-Id-Version: PowerPack for LearnDash 1.3.2\n"
     6"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ea-powerpack\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <LL@li.org>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2021-10-21T23:01:18+00:00\n"
     12"POT-Creation-Date: 2022-11-03T17:14:46+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.4.0\n"
     14"X-Generator: WP-CLI 2.6.0\n"
    1515"X-Domain: learndash-powerpack\n"
    1616
     
    5353msgstr ""
    5454
     55#: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:73
     56#: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:88
     57#: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:101
     58#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:58
     59#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:61
     60#: includes/ld_classes/learndash-powerpack-course-points-format-round.php:88
     61#: includes/ld_classes/learndash-powerpack-disable-course-progression.php:57
     62#: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:89
     63#: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:55
     64#: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:58
     65#: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:57
     66#: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:53
     67#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:56
     68#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:62
     69#: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:124
     70msgid "course"
     71msgstr ""
     72
    5573#: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:74
    56 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:93
    57 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:106
    58 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:62
    59 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:63
    60 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:84
    61 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:61
    62 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:85
    63 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:57
    64 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:60
    65 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:62
    66 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:57
    67 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:58
    68 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:66
    69 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:125
    70 msgid "course"
     74msgid "Custom content to the single Course template output"
    7175msgstr ""
    7276
    7377#: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:75
    74 msgid "Custom content to the single Course template output"
    75 msgstr ""
    76 
    77 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:76
    7878msgid "Enable this option to add custom content to the single Course template output after the Course Status complete."
    7979msgstr ""
    8080
    81 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:111
     81#: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:110
    8282msgid "Enter custom content text"
    8383msgstr ""
    8484
    85 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:94
     85#: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:89
    8686msgid "Allow access to previously completed course"
    8787msgstr ""
    8888
    89 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:95
     89#: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:90
    9090msgid "Enable this option to allow access to previously completed course steps after course access is removed."
    9191msgstr ""
    9292
     93#: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:58
     94#: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:57
     95#: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:85
     96#: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:57
     97#: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:60
     98msgid "quiz"
     99msgstr ""
     100
     101#: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:59
     102msgid "Unlimited Quiz Attempts"
     103msgstr ""
     104
    93105#: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:60
    94 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:59
    95 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:97
    96 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:62
    97 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:64
    98 msgid "quiz"
    99 msgstr ""
    100 
    101 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:61
    102 msgid "Unlimited Quiz Attempts"
    103 msgstr ""
    104 
    105 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:62
    106106msgid "Allow \"admin\" for unlimited quiz attempts"
    107107msgstr ""
    108108
    109 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:107
     109#: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:102
    110110msgid "Auto Complete Course Lessons and Topics"
    111111msgstr ""
    112112
    113 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:108
     113#: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:103
    114114msgid "Enable this option to Auto Complete Course Lessons and Topics."
    115115msgstr ""
    116116
    117 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:60
     117#: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:55
    118118msgid "Bypass Background Enrollment in WooCommerce"
    119119msgstr ""
    120120
    121 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:61
     121#: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:56
    122122msgid "Enable this option to Bypass Background Enrollment in WooCommerce."
    123123msgstr ""
    124124
    125 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:60
     125#: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:55
    126126#: includes/ld_classes/learndash-powerpack-restrict-access-to-certificates.php:55
    127127msgid "certificate"
    128128msgstr ""
    129129
    130 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:61
     130#: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:56
    131131msgid "Certificate shortcode link to open in new window"
    132132msgstr ""
    133133
    134 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:62
     134#: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:57
    135135msgid "Enable this option to open certificate shortcode link in new window"
    136136msgstr ""
    137137
     138#: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:84
     139#: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:67
     140#: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:76
     141msgid "comment"
     142msgstr ""
     143
     144#: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:85
     145msgid "Focus mode reply title"
     146msgstr ""
     147
    138148#: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:86
    139 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:73
    140 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:82
    141 msgid "comment"
    142 msgstr ""
    143 
    144 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:87
    145 msgid "Focus mode reply title"
    146 msgstr ""
    147 
    148 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:88
    149149msgid "Enable this option to change Focus Mode comment reply title."
    150150msgstr ""
    151151
    152 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:107
     152#: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:105
    153153msgid "Title"
    154154msgstr ""
    155155
     156#: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:82
     157msgid "stripe"
     158msgstr ""
     159
    156160#: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:83
    157 msgid "stripe"
     161msgid "Stripe Purchase Button Text"
    158162msgstr ""
    159163
    160164#: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:84
    161 msgid "Stripe Purchase Button Text"
    162 msgstr ""
    163 
    164 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:85
    165165msgid "Enable this option to change Stripe Purchase Button Text"
    166166msgstr ""
    167167
    168 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:104
     168#: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:103
    169169msgid "Button Text"
    170170msgstr ""
    171171
    172 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:63
     172#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:59
    173173msgid "Change the Price Type for all Courses"
    174174msgstr ""
    175175
    176 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:64
     176#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:60
    177177msgid "Enable this option to set the course price type to closed for all courses."
    178178msgstr ""
    179179
    180 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:64
     180#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:62
    181181msgid "Change the Price Type for only open Courses"
    182182msgstr ""
    183183
    184 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:65
     184#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:63
    185185msgid "Enable this option to set the course price type to closed only if it is currently open."
    186186msgstr ""
    187187
    188 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:56
     188#: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:51
    189189msgid "focus_mode"
    190190msgstr ""
    191191
    192 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:57
     192#: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:52
    193193msgid "Welcome message in Focus Mode"
    194194msgstr ""
    195195
    196 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:58
     196#: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:53
    197197msgid "Enable this option to change welcome message in Focus Mode to use first name instead of the username"
    198198msgstr ""
    199199
     200#: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:81
     201#: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:93
     202msgid "button"
     203msgstr ""
     204
    200205#: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:82
    201 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:92
    202 msgid "button"
     206msgid "Changing Complete button border radius property"
    203207msgstr ""
    204208
    205209#: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:83
    206 msgid "Changing Complete button border radius property"
    207 msgstr ""
    208 
    209 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:84
    210210msgid "Enable this option to change border radius of complete button."
    211211msgstr ""
    212212
    213 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:103
     213#: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:102
    214214msgid "Enter border radius for complete button"
    215215msgstr ""
    216216
    217 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:93
     217#: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:94
    218218msgid "Course grid custom button text"
    219219msgstr ""
    220220
    221 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:94
     221#: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:95
    222222msgid "Enable this option to change course grid custom button text."
    223223msgstr ""
    224224
    225 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:114
     225#: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:115
    226226msgid "Enter Take course grid custom button text"
    227227msgstr ""
    228228
    229 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:85
     229#: includes/ld_classes/learndash-powerpack-course-points-format-round.php:89
    230230msgid "Course Points Format"
    231231msgstr ""
    232232
    233 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:86
     233#: includes/ld_classes/learndash-powerpack-course-points-format-round.php:90
    234234msgid "Enable this option to select decimal place formatting outside of the [courseinfo] shortcode."
    235235msgstr ""
    236236
    237 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:105
     237#: includes/ld_classes/learndash-powerpack-course-points-format-round.php:109
    238238msgid "Enter decimal points used, 0 or higher"
    239239msgstr ""
    240240
    241 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:62
     241#: includes/ld_classes/learndash-powerpack-disable-course-progression.php:58
    242242msgid "Course Progression"
    243243msgstr ""
    244244
    245 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:63
     245#: includes/ld_classes/learndash-powerpack-disable-course-progression.php:59
    246246msgid "Enable this option to disable Course Progression."
    247247msgstr ""
    248248
     249#: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:58
     250msgid "editor"
     251msgstr ""
     252
     253#: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:59
     254msgid "Disable Gutenberg Editor"
     255msgstr ""
     256
    249257#: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:60
    250 msgid "editor"
    251 msgstr ""
    252 
    253 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:61
    254 msgid "Disable Gutenberg Editor"
    255 msgstr ""
    256 
    257 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:62
    258258msgid "Enable this option to Disable Gutenberg Editor on any of the LearnDash custom post types."
    259259msgstr ""
    260260
     261#: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:57
     262msgid "video"
     263msgstr ""
     264
     265#: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:58
     266msgid "Video Progression"
     267msgstr ""
     268
    261269#: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:59
    262 msgid "video"
    263 msgstr ""
    264 
    265 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:60
    266 msgid "Video Progression"
    267 msgstr ""
    268 
    269 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:61
    270270msgid "Enable this option to disable video auto-start on mobile."
    271271msgstr ""
    272272
    273 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:86
     273#: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:90
    274274msgid "Custom message for a shortcode [ld_course_list]"
    275275msgstr ""
    276276
    277 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:87
     277#: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:91
    278278msgid "Display a custom message when ld_course_list shortcode returns no results."
    279279msgstr ""
    280280
    281 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:106
     281#: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:110
    282282msgid "Enter Custom message for shortcode ld_course_list"
    283283msgstr ""
    284284
    285 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:58
     285#: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:56
    286286msgid "Display course content below prerequisite message"
    287287msgstr ""
    288288
    289 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:59
     289#: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:57
    290290msgid "Enable this option to Display course content below prerequisite message."
    291291msgstr ""
    292292
    293 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:60
     293#: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:58
    294294msgid "Comments on Quiz post type"
    295295msgstr ""
    296296
    297 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:61
     297#: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:59
    298298msgid "Only allow comments on Quiz post type."
    299299msgstr ""
    300300
    301 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:61
     301#: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:59
    302302msgid "Course step in WP menu"
    303303msgstr ""
    304304
    305 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:62
     305#: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:60
    306306msgid "LearnDash enable course step in WP menu."
    307307msgstr ""
    308308
    309 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:60
     309#: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:58
    310310msgid "taxonomy"
    311311msgstr ""
    312312
    313 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:61
     313#: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:59
    314314msgid "LearnDash Enable Custom Taxonomy Terms Archive"
    315315msgstr ""
    316316
    317 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:67
    318 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:85
    319 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:63
    320 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:85
     317#: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:62
     318#: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:81
     319#: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:59
     320#: includes/ld_classes/learndash-powerpack-sample-lesson.php:84
    321321msgid "lesson"
    322322msgstr ""
    323323
    324 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:68
     324#: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:63
    325325msgid "Lesson Section"
    326326msgstr ""
    327327
    328 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:69
     328#: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:64
    329329msgid "Expand all lesson section on Focus mode"
    330330msgstr ""
    331331
    332 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:74
     332#: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:68
    333333msgid "Disable comments on LearnDash Assignment"
    334334msgstr ""
    335335
    336 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:75
     336#: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:69
    337337msgid "Enable this option disable comments on LearnDash Assignment."
    338338msgstr ""
    339339
    340 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:98
     340#: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:86
    341341msgid "HTML formatting"
    342342msgstr ""
    343343
    344 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:99
     344#: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:87
    345345msgid "Force HTML formatting on Quiz emails."
    346346msgstr ""
    347347
    348 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:63
     348#: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:58
    349349msgid "Page reload"
    350350msgstr ""
    351351
    352 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:64
     352#: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:59
    353353msgid "Enable this option to force page reload when Restart Quiz button is clicked."
    354354msgstr ""
    355355
    356 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:83
    357 msgid "Comments options for Assignments and Essay"
    358 msgstr ""
    359 
    360 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:84
    361 msgid "Enable this option will Hide comments from Assignments and Essay from showing on Dashboard Activity Widget."
    362 msgstr ""
    363 
    364 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:63
     356#: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:77
     357msgid "Comment options for Assignments and Essay"
     358msgstr ""
     359
     360#: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:78
     361msgid "Enabling this option hides comments on Assignments and Essays from the Dashboard Activity Widget. Users that can moderate comments will still see them."
     362msgstr ""
     363
     364#: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:58
    365365msgid "Hide Course Points"
    366366msgstr ""
    367367
    368 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:64
     368#: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:59
    369369msgid "Enable this option to hide the course points from showing in the [ld_profile] shortcode."
    370370msgstr ""
    371371
    372 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:58
     372#: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:54
    373373msgid "Course Access Settings"
    374374msgstr ""
    375375
    376 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:59
     376#: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:55
    377377msgid "Enable this option to hide the Open option from Course Access Settings"
    378378msgstr ""
    379379
     380#: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:82
     381msgid "email"
     382msgstr ""
     383
     384#: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:83
     385msgid "Outgoing email address of ProPanel emails"
     386msgstr ""
     387
    380388#: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:84
    381 msgid "email"
    382 msgstr ""
    383 
    384 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:85
    385 msgid "Outgoing email address of ProPanel emails"
    386 msgstr ""
    387 
    388 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:86
    389389msgid "Change the outgoing email address of ProPanel emails"
    390390msgstr ""
    391391
    392 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:105
     392#: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:103
    393393msgid "Enter Outgoing email"
    394394msgstr ""
    395395
    396 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:77
     396#: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:73
    397397msgid "wp_filter"
    398398msgstr ""
    399399
    400 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:78
     400#: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:74
    401401msgid "Stop use of the_content filter to display content"
    402402msgstr ""
    403403
    404 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:79
     404#: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:75
    405405msgid "Enable this option will Stop use of the_content filter to display content for LearnDash Post Type."
    406406msgstr ""
    407407
    408 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:65
     408#: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:61
    409409msgid "Quiz continue button option"
    410410msgstr ""
    411411
    412 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:66
     412#: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:62
    413413msgid "Enable this option will show Quiz continue button for all quiz if the student fails."
    414414msgstr ""
    415415
    416 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:86
     416#: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:82
    417417msgid "Lesson Quiz"
    418418msgstr ""
    419419
    420 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:87
     420#: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:83
    421421msgid "Enable this option to redirect the student to a Lesson Quiz when they complete the last Lesson Topic."
    422422msgstr ""
    423423
    424 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:65
     424#: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:61
    425425msgid "WordPress"
    426426msgstr ""
    427427
    428 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:66
     428#: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:62
    429429msgid "Elements"
    430430msgstr ""
    431431
    432 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:67
     432#: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:63
    433433msgid "Enable this option to remove all elements from WP Profile."
    434434msgstr ""
    435435
    436 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:57
     436#: includes/ld_classes/learndash-powerpack-removing-price-section.php:53
    437437msgid "price"
    438438msgstr ""
    439439
    440 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:58
    441 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:59
     440#: includes/ld_classes/learndash-powerpack-removing-price-section.php:54
     441#: includes/ld_classes/learndash-powerpack-removing-price-section.php:55
    442442msgid "Remove price section"
    443443msgstr ""
     
    455455msgstr ""
    456456
    457 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:64
     457#: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:60
    458458msgid "Sample lesson"
    459459msgstr ""
    460460
    461 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:65
     461#: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:61
    462462msgid "Only allow logged in users to access samples"
    463463msgstr ""
    464464
     465#: includes/ld_classes/learndash-powerpack-sample-lesson.php:85
     466msgid "Sample Lesson Label"
     467msgstr ""
     468
    465469#: includes/ld_classes/learndash-powerpack-sample-lesson.php:86
    466 msgid "Sample Lesson Label"
    467 msgstr ""
    468 
    469 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:87
    470470msgid "Change \"Sample Lesson\" label."
    471471msgstr ""
    472472
    473 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:106
     473#: includes/ld_classes/learndash-powerpack-sample-lesson.php:105
    474474msgid "Sample Lession Label"
    475475msgstr ""
    476476
    477 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:59
     477#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:57
    478478msgid "Show Course Progression Next Step Link for all users"
    479479msgstr ""
    480480
    481 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:60
     481#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:58
    482482msgid "Enable this option will allow all user to see Course Progression Next Step Link without completing the Lessons/Topic"
    483483msgstr ""
    484484
    485 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:67
     485#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:63
    486486msgid "Show Course Progression Next Step Link for admin"
    487487msgstr ""
    488488
    489 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:68
     489#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:64
    490490msgid "Enable this option will allow only admin to show Course Progression Next Step Link without completing the Lessons/Topic"
    491491msgstr ""
    492492
     493#: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:125
     494msgid "Take this Course button label"
     495msgstr ""
     496
    493497#: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:126
    494 msgid "Take this Course button label"
    495 msgstr ""
    496 
    497 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:127
    498498msgid "Replace the Take this Course button label for closed course"
    499499msgstr ""
    500500
    501 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:146
     501#: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:145
    502502msgid "Enter Take this Course button label"
    503503msgstr ""
    504504
    505 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:94
     505#: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:90
    506506msgid "group"
    507507msgstr ""
    508508
    509 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:95
     509#: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:91
    510510msgid "Unenroll the User"
    511511msgstr ""
    512512
    513 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:96
     513#: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:92
    514514msgid "Unenroll the User from All common Groups when the Course access is expired."
    515515msgstr ""
  • powerpack-for-learndash/tags/1.3.2/learndash-powerpack.php

    r2666102 r2811296  
    66 * Author: HonorsWP
    77 * Author URI: https://honorswp.com/
    8  * Version: 1.3.1
     8 * Version: 1.3.2
    99 * Requires PHP: 5.6
    10  * Requires at least: 5.8
     10 * Requires at least: 5.9
    1111 * Text Domain: learndash-powerpack
    1212 * Domain Path: /languages
     
    2525 * Required minimums and constants
    2626 */
    27 define( 'LD_POWERPACK_VERSION', '1.3.1' );
     27define( 'LD_POWERPACK_VERSION', '1.3.2' );
    2828define( 'LD_POWERPACK_MAIN_FILE', __FILE__ );
    2929define( 'LD_POWERPACK_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
  • powerpack-for-learndash/tags/1.3.2/readme.txt

    r2666102 r2811296  
    11=== PowerPack for LearnDash ===
    2 Contributors: honorswp, easilyamused, Jack Kitterhing
     2Contributors: honorswp, easilyamused, christophherr, Jack Kitterhing
    33Tags: learndash, education, elearning, lms, learning
    4 Requires at least: 5.0
    5 Tested up to: 5.9
     4Requires at least: 5.9
     5Tested up to: 6.1
    66Requires PHP: 5.6
    7 Stable tag: 1.3.1
     7Stable tag: 1.3.2
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1515== Description ==
    1616
    17 **PowerPack for LearnDash** plugin allows you to control various aspects of your LearnDash site without code! Powering up your LearnDash website. Included are 50 modules which are.
     17**PowerPack for LearnDash** plugin allows you to control various aspects of your LearnDash site without code! Powering up your LearnDash website. Included are 42 modules which are:
    1818
    1919* Custom content to the single course template output.
     
    8585
    8686== Screenshots ==
    87 1. 50 Modules all ready to use with the slide of a toggle.
     871. 42 Modules all ready to use with the slide of a toggle.
    88882. Easy to use module settings
    89893. Admin side view
     
    109109* Fixed fatal error
    110110
     111= 1.3.2 =
     112* Fixed PHP warnings
     113
    111114== Upgrade Notice ==
     115= 1.3.2 =
     116* Fixed PHP warnings
     117
    112118= 1.3.1 =
    113119* Fixed fatal error
  • powerpack-for-learndash/trunk/changelog.txt

    r2665925 r2811296  
    4848* Removed deprecated "Remove Video Progression Cookie on Lesson Completion"
    4949* Removed deprecated "Remove Video Progression Cookie on Topic Completion"
     50
     51= 1.3.1 =
     52* Fixed fatal error
     53
     54= 1.3.2 =
     55* Fixed PHP warnings
  • powerpack-for-learndash/trunk/includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php

    r2665925 r2811296  
    4040         * @return String The status of the comments.
    4141         */
    42         public function learndash_focus_mode_comments_func( $comment_status = 'closed', $post ) {
     42        public function learndash_focus_mode_comments_func( $comment_status, $post ) {
    4343            // Example Only allow comments on Quiz post type.
    4444            if ( 'sfwd-quiz' === $post->post_type ) {
  • powerpack-for-learndash/trunk/includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php

    r2665925 r2811296  
    3838         */
    3939        public function pre_get_comments_func( $comment_query ) {
    40             if ( is_admin() ) {
    41                 $current_screen = get_current_screen();
    42                 if ( 'dashboard' === $current_screen->id ) {
    43                     if ( ! current_user_can( 'moderate_comments' ) ) {
    44                         $post_query_args = [
    45                             'post_type'   => [ 'sfwd-assignment', 'sfwd-essays' ],
    46                             'post_status' => [ 'draft', 'publish', 'graded', 'not_graded' ],
    47                             'fields'      => 'ids',
    48                             'nopaging'    => true,
    49                         ];
     40            global $pagenow;
    5041
    51                         $post_query = new WP_Query( $post_query_args );
    52                         if ( ( $post_query instanceof WP_Query ) && ( ! empty( $post_query->posts ) ) ) {
    53                             $post__not_in = [];
     42            // $current_screen = get_current_screen();
     43            if ( is_admin() && 'index.php' === $pagenow ) {
     44                if ( ! current_user_can( 'moderate_comments' ) ) {
     45                    $post_query_args = [
     46                        'post_type'   => [ 'sfwd-assignment', 'sfwd-essays' ],
     47                        'post_status' => [ 'draft', 'publish', 'graded', 'not_graded' ],
     48                        'fields'      => 'ids',
     49                        'nopaging'    => true,
     50                    ];
    5451
    55                             if ( '' === $comment_query->query_vars['post__not_in'] ) {
    56                                 $post__not_in = $post_query->posts;
    57                             } else {
    58                                 $post__not_in = array_merge( (array) $comment_query->query_vars['post__not_in'], $post_query->posts );
    59                             }
     52                    $post_query = new WP_Query( $post_query_args );
     53                    if ( ( $post_query instanceof WP_Query ) && ( ! empty( $post_query->posts ) ) ) {
     54                        $post__not_in = [];
    6055
    61                             if ( ! empty( $post__not_in ) ) {
    62                                 $comment_query->query_vars['post__not_in'] = $post__not_in;
    63                             }
     56                        if ( '' === $comment_query->query_vars['post__not_in'] ) {
     57                            $post__not_in = $post_query->posts;
     58                        } else {
     59                            $post__not_in = array_merge( (array) $comment_query->query_vars['post__not_in'], $post_query->posts );
     60                        }
     61
     62                        if ( ! empty( $post__not_in ) ) {
     63                            $comment_query->query_vars['post__not_in'] = $post__not_in;
    6464                        }
    6565                    }
     
    7575        public function learndash_powerpack_class_details() {
    7676            $ld_type           = esc_html__( 'comment', 'learndash-powerpack' );
    77             $class_title       = esc_html__( 'Comments options for Assignments and Essay', 'learndash-powerpack' );
    78             $class_description = esc_html__( 'Enable this option will Hide comments from Assignments and Essay from showing on Dashboard Activity Widget.', 'learndash-powerpack' );
     77            $class_title       = esc_html__( 'Comment options for Assignments and Essay', 'learndash-powerpack' );
     78            $class_description = esc_html__( 'Enabling this option hides comments on Assignments and Essays from the Dashboard Activity Widget. Users that can moderate comments will still see them.', 'learndash-powerpack' );
    7979
    8080            return [
  • powerpack-for-learndash/trunk/languages/learndash-powerpack.pot

    r2665925 r2811296  
    1 # Copyright (C) 2021 HonorsWP
    2 # This file is distributed under the same license as the PowerPack for LearnDash plugin.
     1# Copyright (C) 2022 HonorsWP
     2# This file is distributed under the GNU General Public License v3.0.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: PowerPack for LearnDash 1.3.0\n"
    6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/LearnDash-PowerPack\n"
     5"Project-Id-Version: PowerPack for LearnDash 1.3.2\n"
     6"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ea-powerpack\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <LL@li.org>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2021-10-21T23:01:18+00:00\n"
     12"POT-Creation-Date: 2022-11-03T17:14:46+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.4.0\n"
     14"X-Generator: WP-CLI 2.6.0\n"
    1515"X-Domain: learndash-powerpack\n"
    1616
     
    5353msgstr ""
    5454
     55#: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:73
     56#: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:88
     57#: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:101
     58#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:58
     59#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:61
     60#: includes/ld_classes/learndash-powerpack-course-points-format-round.php:88
     61#: includes/ld_classes/learndash-powerpack-disable-course-progression.php:57
     62#: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:89
     63#: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:55
     64#: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:58
     65#: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:57
     66#: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:53
     67#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:56
     68#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:62
     69#: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:124
     70msgid "course"
     71msgstr ""
     72
    5573#: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:74
    56 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:93
    57 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:106
    58 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:62
    59 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:63
    60 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:84
    61 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:61
    62 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:85
    63 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:57
    64 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:60
    65 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:62
    66 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:57
    67 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:58
    68 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:66
    69 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:125
    70 msgid "course"
     74msgid "Custom content to the single Course template output"
    7175msgstr ""
    7276
    7377#: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:75
    74 msgid "Custom content to the single Course template output"
    75 msgstr ""
    76 
    77 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:76
    7878msgid "Enable this option to add custom content to the single Course template output after the Course Status complete."
    7979msgstr ""
    8080
    81 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:111
     81#: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:110
    8282msgid "Enter custom content text"
    8383msgstr ""
    8484
    85 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:94
     85#: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:89
    8686msgid "Allow access to previously completed course"
    8787msgstr ""
    8888
    89 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:95
     89#: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:90
    9090msgid "Enable this option to allow access to previously completed course steps after course access is removed."
    9191msgstr ""
    9292
     93#: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:58
     94#: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:57
     95#: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:85
     96#: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:57
     97#: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:60
     98msgid "quiz"
     99msgstr ""
     100
     101#: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:59
     102msgid "Unlimited Quiz Attempts"
     103msgstr ""
     104
    93105#: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:60
    94 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:59
    95 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:97
    96 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:62
    97 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:64
    98 msgid "quiz"
    99 msgstr ""
    100 
    101 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:61
    102 msgid "Unlimited Quiz Attempts"
    103 msgstr ""
    104 
    105 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:62
    106106msgid "Allow \"admin\" for unlimited quiz attempts"
    107107msgstr ""
    108108
    109 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:107
     109#: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:102
    110110msgid "Auto Complete Course Lessons and Topics"
    111111msgstr ""
    112112
    113 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:108
     113#: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:103
    114114msgid "Enable this option to Auto Complete Course Lessons and Topics."
    115115msgstr ""
    116116
    117 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:60
     117#: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:55
    118118msgid "Bypass Background Enrollment in WooCommerce"
    119119msgstr ""
    120120
    121 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:61
     121#: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:56
    122122msgid "Enable this option to Bypass Background Enrollment in WooCommerce."
    123123msgstr ""
    124124
    125 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:60
     125#: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:55
    126126#: includes/ld_classes/learndash-powerpack-restrict-access-to-certificates.php:55
    127127msgid "certificate"
    128128msgstr ""
    129129
    130 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:61
     130#: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:56
    131131msgid "Certificate shortcode link to open in new window"
    132132msgstr ""
    133133
    134 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:62
     134#: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:57
    135135msgid "Enable this option to open certificate shortcode link in new window"
    136136msgstr ""
    137137
     138#: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:84
     139#: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:67
     140#: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:76
     141msgid "comment"
     142msgstr ""
     143
     144#: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:85
     145msgid "Focus mode reply title"
     146msgstr ""
     147
    138148#: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:86
    139 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:73
    140 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:82
    141 msgid "comment"
    142 msgstr ""
    143 
    144 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:87
    145 msgid "Focus mode reply title"
    146 msgstr ""
    147 
    148 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:88
    149149msgid "Enable this option to change Focus Mode comment reply title."
    150150msgstr ""
    151151
    152 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:107
     152#: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:105
    153153msgid "Title"
    154154msgstr ""
    155155
     156#: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:82
     157msgid "stripe"
     158msgstr ""
     159
    156160#: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:83
    157 msgid "stripe"
     161msgid "Stripe Purchase Button Text"
    158162msgstr ""
    159163
    160164#: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:84
    161 msgid "Stripe Purchase Button Text"
    162 msgstr ""
    163 
    164 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:85
    165165msgid "Enable this option to change Stripe Purchase Button Text"
    166166msgstr ""
    167167
    168 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:104
     168#: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:103
    169169msgid "Button Text"
    170170msgstr ""
    171171
    172 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:63
     172#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:59
    173173msgid "Change the Price Type for all Courses"
    174174msgstr ""
    175175
    176 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:64
     176#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:60
    177177msgid "Enable this option to set the course price type to closed for all courses."
    178178msgstr ""
    179179
    180 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:64
     180#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:62
    181181msgid "Change the Price Type for only open Courses"
    182182msgstr ""
    183183
    184 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:65
     184#: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:63
    185185msgid "Enable this option to set the course price type to closed only if it is currently open."
    186186msgstr ""
    187187
    188 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:56
     188#: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:51
    189189msgid "focus_mode"
    190190msgstr ""
    191191
    192 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:57
     192#: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:52
    193193msgid "Welcome message in Focus Mode"
    194194msgstr ""
    195195
    196 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:58
     196#: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:53
    197197msgid "Enable this option to change welcome message in Focus Mode to use first name instead of the username"
    198198msgstr ""
    199199
     200#: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:81
     201#: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:93
     202msgid "button"
     203msgstr ""
     204
    200205#: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:82
    201 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:92
    202 msgid "button"
     206msgid "Changing Complete button border radius property"
    203207msgstr ""
    204208
    205209#: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:83
    206 msgid "Changing Complete button border radius property"
    207 msgstr ""
    208 
    209 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:84
    210210msgid "Enable this option to change border radius of complete button."
    211211msgstr ""
    212212
    213 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:103
     213#: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:102
    214214msgid "Enter border radius for complete button"
    215215msgstr ""
    216216
    217 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:93
     217#: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:94
    218218msgid "Course grid custom button text"
    219219msgstr ""
    220220
    221 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:94
     221#: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:95
    222222msgid "Enable this option to change course grid custom button text."
    223223msgstr ""
    224224
    225 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:114
     225#: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:115
    226226msgid "Enter Take course grid custom button text"
    227227msgstr ""
    228228
    229 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:85
     229#: includes/ld_classes/learndash-powerpack-course-points-format-round.php:89
    230230msgid "Course Points Format"
    231231msgstr ""
    232232
    233 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:86
     233#: includes/ld_classes/learndash-powerpack-course-points-format-round.php:90
    234234msgid "Enable this option to select decimal place formatting outside of the [courseinfo] shortcode."
    235235msgstr ""
    236236
    237 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:105
     237#: includes/ld_classes/learndash-powerpack-course-points-format-round.php:109
    238238msgid "Enter decimal points used, 0 or higher"
    239239msgstr ""
    240240
    241 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:62
     241#: includes/ld_classes/learndash-powerpack-disable-course-progression.php:58
    242242msgid "Course Progression"
    243243msgstr ""
    244244
    245 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:63
     245#: includes/ld_classes/learndash-powerpack-disable-course-progression.php:59
    246246msgid "Enable this option to disable Course Progression."
    247247msgstr ""
    248248
     249#: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:58
     250msgid "editor"
     251msgstr ""
     252
     253#: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:59
     254msgid "Disable Gutenberg Editor"
     255msgstr ""
     256
    249257#: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:60
    250 msgid "editor"
    251 msgstr ""
    252 
    253 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:61
    254 msgid "Disable Gutenberg Editor"
    255 msgstr ""
    256 
    257 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:62
    258258msgid "Enable this option to Disable Gutenberg Editor on any of the LearnDash custom post types."
    259259msgstr ""
    260260
     261#: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:57
     262msgid "video"
     263msgstr ""
     264
     265#: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:58
     266msgid "Video Progression"
     267msgstr ""
     268
    261269#: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:59
    262 msgid "video"
    263 msgstr ""
    264 
    265 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:60
    266 msgid "Video Progression"
    267 msgstr ""
    268 
    269 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:61
    270270msgid "Enable this option to disable video auto-start on mobile."
    271271msgstr ""
    272272
    273 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:86
     273#: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:90
    274274msgid "Custom message for a shortcode [ld_course_list]"
    275275msgstr ""
    276276
    277 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:87
     277#: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:91
    278278msgid "Display a custom message when ld_course_list shortcode returns no results."
    279279msgstr ""
    280280
    281 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:106
     281#: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:110
    282282msgid "Enter Custom message for shortcode ld_course_list"
    283283msgstr ""
    284284
    285 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:58
     285#: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:56
    286286msgid "Display course content below prerequisite message"
    287287msgstr ""
    288288
    289 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:59
     289#: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:57
    290290msgid "Enable this option to Display course content below prerequisite message."
    291291msgstr ""
    292292
    293 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:60
     293#: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:58
    294294msgid "Comments on Quiz post type"
    295295msgstr ""
    296296
    297 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:61
     297#: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:59
    298298msgid "Only allow comments on Quiz post type."
    299299msgstr ""
    300300
    301 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:61
     301#: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:59
    302302msgid "Course step in WP menu"
    303303msgstr ""
    304304
    305 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:62
     305#: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:60
    306306msgid "LearnDash enable course step in WP menu."
    307307msgstr ""
    308308
    309 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:60
     309#: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:58
    310310msgid "taxonomy"
    311311msgstr ""
    312312
    313 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:61
     313#: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:59
    314314msgid "LearnDash Enable Custom Taxonomy Terms Archive"
    315315msgstr ""
    316316
    317 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:67
    318 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:85
    319 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:63
    320 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:85
     317#: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:62
     318#: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:81
     319#: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:59
     320#: includes/ld_classes/learndash-powerpack-sample-lesson.php:84
    321321msgid "lesson"
    322322msgstr ""
    323323
    324 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:68
     324#: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:63
    325325msgid "Lesson Section"
    326326msgstr ""
    327327
    328 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:69
     328#: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:64
    329329msgid "Expand all lesson section on Focus mode"
    330330msgstr ""
    331331
    332 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:74
     332#: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:68
    333333msgid "Disable comments on LearnDash Assignment"
    334334msgstr ""
    335335
    336 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:75
     336#: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:69
    337337msgid "Enable this option disable comments on LearnDash Assignment."
    338338msgstr ""
    339339
    340 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:98
     340#: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:86
    341341msgid "HTML formatting"
    342342msgstr ""
    343343
    344 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:99
     344#: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:87
    345345msgid "Force HTML formatting on Quiz emails."
    346346msgstr ""
    347347
    348 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:63
     348#: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:58
    349349msgid "Page reload"
    350350msgstr ""
    351351
    352 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:64
     352#: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:59
    353353msgid "Enable this option to force page reload when Restart Quiz button is clicked."
    354354msgstr ""
    355355
    356 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:83
    357 msgid "Comments options for Assignments and Essay"
    358 msgstr ""
    359 
    360 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:84
    361 msgid "Enable this option will Hide comments from Assignments and Essay from showing on Dashboard Activity Widget."
    362 msgstr ""
    363 
    364 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:63
     356#: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:77
     357msgid "Comment options for Assignments and Essay"
     358msgstr ""
     359
     360#: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:78
     361msgid "Enabling this option hides comments on Assignments and Essays from the Dashboard Activity Widget. Users that can moderate comments will still see them."
     362msgstr ""
     363
     364#: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:58
    365365msgid "Hide Course Points"
    366366msgstr ""
    367367
    368 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:64
     368#: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:59
    369369msgid "Enable this option to hide the course points from showing in the [ld_profile] shortcode."
    370370msgstr ""
    371371
    372 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:58
     372#: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:54
    373373msgid "Course Access Settings"
    374374msgstr ""
    375375
    376 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:59
     376#: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:55
    377377msgid "Enable this option to hide the Open option from Course Access Settings"
    378378msgstr ""
    379379
     380#: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:82
     381msgid "email"
     382msgstr ""
     383
     384#: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:83
     385msgid "Outgoing email address of ProPanel emails"
     386msgstr ""
     387
    380388#: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:84
    381 msgid "email"
    382 msgstr ""
    383 
    384 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:85
    385 msgid "Outgoing email address of ProPanel emails"
    386 msgstr ""
    387 
    388 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:86
    389389msgid "Change the outgoing email address of ProPanel emails"
    390390msgstr ""
    391391
    392 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:105
     392#: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:103
    393393msgid "Enter Outgoing email"
    394394msgstr ""
    395395
    396 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:77
     396#: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:73
    397397msgid "wp_filter"
    398398msgstr ""
    399399
    400 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:78
     400#: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:74
    401401msgid "Stop use of the_content filter to display content"
    402402msgstr ""
    403403
    404 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:79
     404#: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:75
    405405msgid "Enable this option will Stop use of the_content filter to display content for LearnDash Post Type."
    406406msgstr ""
    407407
    408 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:65
     408#: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:61
    409409msgid "Quiz continue button option"
    410410msgstr ""
    411411
    412 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:66
     412#: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:62
    413413msgid "Enable this option will show Quiz continue button for all quiz if the student fails."
    414414msgstr ""
    415415
    416 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:86
     416#: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:82
    417417msgid "Lesson Quiz"
    418418msgstr ""
    419419
    420 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:87
     420#: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:83
    421421msgid "Enable this option to redirect the student to a Lesson Quiz when they complete the last Lesson Topic."
    422422msgstr ""
    423423
    424 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:65
     424#: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:61
    425425msgid "WordPress"
    426426msgstr ""
    427427
    428 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:66
     428#: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:62
    429429msgid "Elements"
    430430msgstr ""
    431431
    432 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:67
     432#: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:63
    433433msgid "Enable this option to remove all elements from WP Profile."
    434434msgstr ""
    435435
    436 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:57
     436#: includes/ld_classes/learndash-powerpack-removing-price-section.php:53
    437437msgid "price"
    438438msgstr ""
    439439
    440 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:58
    441 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:59
     440#: includes/ld_classes/learndash-powerpack-removing-price-section.php:54
     441#: includes/ld_classes/learndash-powerpack-removing-price-section.php:55
    442442msgid "Remove price section"
    443443msgstr ""
     
    455455msgstr ""
    456456
    457 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:64
     457#: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:60
    458458msgid "Sample lesson"
    459459msgstr ""
    460460
    461 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:65
     461#: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:61
    462462msgid "Only allow logged in users to access samples"
    463463msgstr ""
    464464
     465#: includes/ld_classes/learndash-powerpack-sample-lesson.php:85
     466msgid "Sample Lesson Label"
     467msgstr ""
     468
    465469#: includes/ld_classes/learndash-powerpack-sample-lesson.php:86
    466 msgid "Sample Lesson Label"
    467 msgstr ""
    468 
    469 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:87
    470470msgid "Change \"Sample Lesson\" label."
    471471msgstr ""
    472472
    473 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:106
     473#: includes/ld_classes/learndash-powerpack-sample-lesson.php:105
    474474msgid "Sample Lession Label"
    475475msgstr ""
    476476
    477 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:59
     477#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:57
    478478msgid "Show Course Progression Next Step Link for all users"
    479479msgstr ""
    480480
    481 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:60
     481#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:58
    482482msgid "Enable this option will allow all user to see Course Progression Next Step Link without completing the Lessons/Topic"
    483483msgstr ""
    484484
    485 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:67
     485#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:63
    486486msgid "Show Course Progression Next Step Link for admin"
    487487msgstr ""
    488488
    489 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:68
     489#: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:64
    490490msgid "Enable this option will allow only admin to show Course Progression Next Step Link without completing the Lessons/Topic"
    491491msgstr ""
    492492
     493#: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:125
     494msgid "Take this Course button label"
     495msgstr ""
     496
    493497#: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:126
    494 msgid "Take this Course button label"
    495 msgstr ""
    496 
    497 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:127
    498498msgid "Replace the Take this Course button label for closed course"
    499499msgstr ""
    500500
    501 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:146
     501#: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:145
    502502msgid "Enter Take this Course button label"
    503503msgstr ""
    504504
    505 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:94
     505#: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:90
    506506msgid "group"
    507507msgstr ""
    508508
    509 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:95
     509#: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:91
    510510msgid "Unenroll the User"
    511511msgstr ""
    512512
    513 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:96
     513#: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:92
    514514msgid "Unenroll the User from All common Groups when the Course access is expired."
    515515msgstr ""
  • powerpack-for-learndash/trunk/learndash-powerpack.php

    r2666102 r2811296  
    66 * Author: HonorsWP
    77 * Author URI: https://honorswp.com/
    8  * Version: 1.3.1
     8 * Version: 1.3.2
    99 * Requires PHP: 5.6
    10  * Requires at least: 5.8
     10 * Requires at least: 5.9
    1111 * Text Domain: learndash-powerpack
    1212 * Domain Path: /languages
     
    2525 * Required minimums and constants
    2626 */
    27 define( 'LD_POWERPACK_VERSION', '1.3.1' );
     27define( 'LD_POWERPACK_VERSION', '1.3.2' );
    2828define( 'LD_POWERPACK_MAIN_FILE', __FILE__ );
    2929define( 'LD_POWERPACK_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
  • powerpack-for-learndash/trunk/readme.txt

    r2666102 r2811296  
    11=== PowerPack for LearnDash ===
    2 Contributors: honorswp, easilyamused, Jack Kitterhing
     2Contributors: honorswp, easilyamused, christophherr, Jack Kitterhing
    33Tags: learndash, education, elearning, lms, learning
    4 Requires at least: 5.0
    5 Tested up to: 5.9
     4Requires at least: 5.9
     5Tested up to: 6.1
    66Requires PHP: 5.6
    7 Stable tag: 1.3.1
     7Stable tag: 1.3.2
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1515== Description ==
    1616
    17 **PowerPack for LearnDash** plugin allows you to control various aspects of your LearnDash site without code! Powering up your LearnDash website. Included are 50 modules which are.
     17**PowerPack for LearnDash** plugin allows you to control various aspects of your LearnDash site without code! Powering up your LearnDash website. Included are 42 modules which are:
    1818
    1919* Custom content to the single course template output.
     
    8585
    8686== Screenshots ==
    87 1. 50 Modules all ready to use with the slide of a toggle.
     871. 42 Modules all ready to use with the slide of a toggle.
    88882. Easy to use module settings
    89893. Admin side view
     
    109109* Fixed fatal error
    110110
     111= 1.3.2 =
     112* Fixed PHP warnings
     113
    111114== Upgrade Notice ==
     115= 1.3.2 =
     116* Fixed PHP warnings
     117
    112118= 1.3.1 =
    113119* Fixed fatal error
Note: See TracChangeset for help on using the changeset viewer.