enrolled
3 years ago
add-to-cart-edd.php
4 years ago
add-to-cart-woocommerce.php
3 years ago
continue-lesson.php
4 years ago
course-benefits.php
4 years ago
course-content.php
4 years ago
course-entry-box.php
3 years ago
course-requirements.php
4 years ago
course-target-audience.php
4 years ago
course-topics.php
3 years ago
instructors.php
3 years ago
lead-info.php
3 years ago
material-includes.php
4 years ago
q_and_a_turned_off.php
4 years ago
reviews-loop.php
3 years ago
reviews.php
3 years ago
social_share.php
4 years ago
tags.php
3 years ago
wc-price-html.php
4 years ago
add-to-cart-edd.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package TutorLMS/Templates |
| 4 | * @version 1.4.3 |
| 5 | */ |
| 6 | |
| 7 | $product_id = tutor_utils()->get_course_product_id(); |
| 8 | $download = new EDD_Download( $product_id ); |
| 9 | |
| 10 | if ($download->ID) { |
| 11 | echo edd_get_purchase_link( array( 'download_id' => $download->ID ) ); |
| 12 | } else { |
| 13 | ?> |
| 14 | <p class="tutor-alert-warning"> |
| 15 | <?php _e('Please make sure that your EDD product exists and valid for this course', 'tutor'); ?> |
| 16 | </p> |
| 17 | <?php |
| 18 | } |