ld-coupon-functions.php
19.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
<?php
/**
* Coupon functions
*
* @since 4.1.0
*
* @package LearnDash\Coupons
*/
use LearnDash\Core\Models\Product;
use LearnDash\Core\Models\Transaction;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
const LEARNDASH_COUPON_META_KEY_CODE = 'code';
const LEARNDASH_COUPON_META_KEY_TYPE = 'type';
const LEARNDASH_COUPON_META_KEY_AMOUNT = 'amount';
const LEARNDASH_COUPON_META_KEY_REDEMPTIONS = 'redemptions';
const LEARNDASH_COUPON_META_KEY_START_DATE = 'start_date';
const LEARNDASH_COUPON_META_KEY_END_DATE = 'end_date';
const LEARNDASH_COUPON_META_KEY_PREFIX_APPLY_TO_ALL = 'apply_to_all_';
const LEARNDASH_TRANSACTION_COUPON_META_KEY = 'coupon';
const LEARNDASH_COUPON_TYPE_FLAT = 'flat';
const LEARNDASH_COUPON_TYPE_PERCENTAGE = 'percentage';
const LEARNDASH_COUPON_ASSOCIATED_FIELDS = array( 'courses', 'groups' );
/**
* Checks if a coupon is valid.
*
* @since 4.1.0
*
* @param string $coupon_code Coupon code.
* @param int $post_id Course/Group ID.
*
* @return array{is_valid: bool, error: string}
*/
function learndash_check_coupon_is_valid( string $coupon_code, int $post_id ): array {
$errors = array(
'invalid' => __( 'Coupon is invalid.', 'learndash' ),
'expired' => __( 'Coupon has expired.', 'learndash' ),
'usage_limit' => __( 'Coupon max redemption limit reached.', 'learndash' ),
);
$course_post_type = LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::COURSE );
$group_post_type = LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::GROUP );
// Check if params are empty.
if ( empty( $coupon_code ) || empty( $post_id ) ) {
return array(
'is_valid' => false,
'error' => $errors['invalid'],
);
}
// Check if post type is valid.
$post_type = get_post_type( $post_id );
$valid_post_types = array( $course_post_type, $group_post_type );
if ( ! in_array( $post_type, $valid_post_types, true ) ) {
return array(
'is_valid' => false,
'error' => $errors['invalid'],
);
}
// Check if a coupon exists.
$coupon = learndash_get_coupon_by_code( $coupon_code );
if ( is_null( $coupon ) ) {
return array(
'is_valid' => false,
'error' => $errors['invalid'],
);
}
$coupon_settings = learndash_get_setting( $coupon );
// Check if the passed course/group is allowed.
$post_type_field_key_hash = array(
$course_post_type => 'courses',
$group_post_type => 'groups',
);
$post_type_field_key = $post_type_field_key_hash[ $post_type ];
if ( 'on' !== $coupon_settings[ LEARNDASH_COUPON_META_KEY_PREFIX_APPLY_TO_ALL . $post_type_field_key ] ) {
$valid_post_ids = $coupon_settings[ $post_type_field_key ];
if ( empty( $valid_post_ids ) || ! in_array( $post_id, $valid_post_ids, true ) ) {
return array(
'is_valid' => false,
'error' => $errors['invalid'],
);
}
}
// Check redemptions limit if needed.
if (
$coupon_settings['max_redemptions'] > 0 &&
$coupon_settings[ LEARNDASH_COUPON_META_KEY_REDEMPTIONS ] >= $coupon_settings['max_redemptions']
) {
return array(
'is_valid' => false,
'error' => $errors['usage_limit'],
);
}
// Check dates if needed.
$current_time = time();
$start_date = (int) $coupon_settings[ LEARNDASH_COUPON_META_KEY_START_DATE ];
$end_date = (int) $coupon_settings[ LEARNDASH_COUPON_META_KEY_END_DATE ];
if ( $start_date > 0 && $current_time < $start_date ) {
return array(
'is_valid' => false,
'error' => $errors['invalid'],
);
}
if ( $end_date > 0 && $current_time >= $end_date ) {
return array(
'is_valid' => false,
'error' => $errors['expired'],
);
}
return array(
'is_valid' => true,
'error' => '',
);
}
/**
* Returns a new price.
*
* @since 4.1.0
*
* @param int $coupon_id Coupon ID.
* @param float $price Price.
*
* @return float
*/
function learndash_calculate_coupon_discounted_price( int $coupon_id, float $price ): float {
$coupon = get_post( $coupon_id );
if ( is_null( $coupon ) ) {
return $price;
}
$coupon_settings = learndash_get_setting( $coupon );
if ( empty( $coupon_settings ) ) {
return $price;
}
$coupon_type = $coupon_settings[ LEARNDASH_COUPON_META_KEY_TYPE ];
$amount = (float) $coupon_settings[ LEARNDASH_COUPON_META_KEY_AMOUNT ];
if ( LEARNDASH_COUPON_TYPE_PERCENTAGE === $coupon_type ) {
$price = $price - ( $price / 100 * $amount );
} elseif ( LEARNDASH_COUPON_TYPE_FLAT === $coupon_type ) {
$price = $price - $amount;
}
if ( learndash_is_zero_decimal_currency( learndash_get_currency_code() ) ) {
$price = ceil( $price );
}
if ( $price < 0 ) {
$price = 0;
}
return round( $price, 2 );
}
/**
* Finds a coupon post by a coupon code.
*
* @since 4.1.0
*
* @param string $coupon_code Coupon Code.
*
* @return WP_Post|null
*/
function learndash_get_coupon_by_code( string $coupon_code ): ?WP_Post {
if ( empty( $coupon_code ) ) {
return null;
}
$query_args = array(
'post_type' => LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::COUPON ),
'posts_per_page' => - 1,
'post_status' => 'publish',
// phpcs:ignore
'meta_query' => array(
array(
'key' => LEARNDASH_COUPON_META_KEY_CODE,
'value' => $coupon_code,
'compare' => '=',
),
),
);
$query = new WP_Query( $query_args );
return empty( $query->posts ) ? null : $query->posts[0];
}
/**
* Checks if active coupons exist.
*
* @since 4.1.0
*
* @return bool
*/
function learndash_active_coupons_exist(): bool {
$coupon_post_type = LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::COUPON );
if ( 0 === wp_count_posts( strval( $coupon_post_type ) )->publish ) {
return false;
}
$current_time = time();
$meta_query_groups = array(
array(
'relation' => 'AND',
array(
'key' => LEARNDASH_COUPON_META_KEY_START_DATE,
'compare' => '<=',
'value' => $current_time,
'type' => 'NUMERIC',
),
array(
'key' => LEARNDASH_COUPON_META_KEY_END_DATE,
'compare' => '>',
'value' => $current_time,
'type' => 'NUMERIC',
),
),
array(
'relation' => 'AND',
array(
'key' => LEARNDASH_COUPON_META_KEY_START_DATE,
'compare' => '<=',
'value' => $current_time,
'type' => 'NUMERIC',
),
array(
'key' => LEARNDASH_COUPON_META_KEY_END_DATE,
'compare' => '=',
'value' => 0,
'type' => 'NUMERIC',
),
),
);
foreach ( $meta_query_groups as $meta_query ) {
$query_args = array(
'post_type' => $coupon_post_type,
'posts_per_page' => 1,
'post_status' => 'publish',
'fields' => 'ids',
'meta_query' => $meta_query,
);
$query = new WP_Query( $query_args );
if ( $query->post_count > 0 ) {
return true;
}
}
return false;
}
/**
* Increments redemptions meta of a coupon.
*
* @since 4.1.0
*
* @param int $coupon_id Coupon Post ID.
* @param int $post_id Course/Group ID.
* @param int $user_id User ID.
*
* @return void
*/
function learndash_increment_coupon_redemptions( int $coupon_id, int $post_id, int $user_id ): void {
learndash_detach_coupon( $post_id, $user_id );
if ( is_null( get_post( $coupon_id ) ) ) {
return;
}
$redemptions = (int) learndash_get_setting(
$coupon_id,
LEARNDASH_COUPON_META_KEY_REDEMPTIONS
);
learndash_update_setting(
$coupon_id,
LEARNDASH_COUPON_META_KEY_REDEMPTIONS,
$redemptions + 1
);
}
/**
* Attaches a coupon to a course/group.
*
* @since 4.1.0
*
* @param int $post_id Course/Group ID.
* @param int $coupon_id Coupon Post ID.
* @param float $price Full price.
* @param float $discounted_price Price by a coupon.
*
* @return void
*/
function learndash_attach_coupon( int $post_id, int $coupon_id, float $price, float $discounted_price ): void {
if ( ! is_user_logged_in() ) {
return;
}
$coupon_settings = learndash_get_setting( $coupon_id );
try {
$coupon_dto = Learndash_Coupon_DTO::create(
array(
'currency' => learndash_get_currency_code(),
'price' => $price,
'discount' => $price - $discounted_price,
'discounted_price' => $discounted_price,
'coupon_id' => $coupon_id,
LEARNDASH_COUPON_META_KEY_CODE => $coupon_settings[ LEARNDASH_COUPON_META_KEY_CODE ],
LEARNDASH_COUPON_META_KEY_TYPE => $coupon_settings[ LEARNDASH_COUPON_META_KEY_TYPE ],
LEARNDASH_COUPON_META_KEY_AMOUNT => $coupon_settings[ LEARNDASH_COUPON_META_KEY_AMOUNT ],
)
);
} catch ( Learndash_DTO_Validation_Exception $e ) {
return;
}
set_transient(
learndash_map_coupon_transient_key( $post_id, get_current_user_id() ),
$coupon_dto->to_array(),
DAY_IN_SECONDS
);
}
/**
* Detaches a coupon from a course/group.
*
* @since 4.1.0
*
* @param int $post_id Course/Group ID.
* @param int $user_id User ID.
*
* @return void
*/
function learndash_detach_coupon( int $post_id, int $user_id ): void {
delete_transient(
learndash_map_coupon_transient_key( $post_id, $user_id )
);
}
/**
* Get an attached coupon data of a course/group.
*
* @since 4.1.0
*
* @param int $post_id Course/Group ID.
* @param int $user_id User ID.
*
* @return Learndash_Coupon_DTO|null
*/
function learndash_get_attached_coupon_data( int $post_id, int $user_id ): ?Learndash_Coupon_DTO {
$attached_coupon_data = get_transient(
learndash_map_coupon_transient_key( $post_id, $user_id )
);
if ( false === $attached_coupon_data ) {
return null;
}
try {
return Learndash_Coupon_DTO::create( (array) $attached_coupon_data );
} catch ( Learndash_DTO_Validation_Exception $e ) {
return null;
}
}
/**
* Check if a course/group has an attached coupon.
*
* @since 4.1.0
*
* @param int $post_id Course/Group ID.
* @param int $user_id User ID.
*
* @return bool
*/
function learndash_post_has_attached_coupon( int $post_id, int $user_id ): bool {
$attached_coupon_data = get_transient(
learndash_map_coupon_transient_key( $post_id, $user_id )
);
return false !== $attached_coupon_data;
}
/**
* Maps a coupon transient key.
*
* @since 4.1.0
*
* @param int $post_id Post ID.
* @param int $user_id User ID.
*
* @return string
*/
function learndash_map_coupon_transient_key( int $post_id, int $user_id ): string {
return "ld_coupon_for_post_{$post_id}_by_user_{$user_id}";
}
/**
* Syncs associated metas of a coupon.
*
* @since 4.1.0
*
* @param int $post_id Coupon Post ID.
* @param string $field Field Name (courses|groups).
* @param array $ids IDs.
*
* @return void
*/
function learndash_sync_coupon_associated_metas( int $post_id, string $field, array $ids ): void {
if ( ! in_array( $field, LEARNDASH_COUPON_ASSOCIATED_FIELDS, true ) ) {
return;
}
$meta_prefix = "{$field}_";
/**
* Existing associated IDs.
*
* @var array<string> $existing_ids
*/
$existing_ids = (array) learndash_get_setting( $post_id, $field );
// Delete associated metas that we no longer need.
if ( ! empty( $existing_ids ) ) {
foreach ( array_diff( $existing_ids, $ids ) as $id ) {
delete_post_meta( $post_id, "{$meta_prefix}{$id}" );
}
}
// Add associated metas we need.
foreach ( $ids as $id ) {
update_post_meta( $post_id, "{$meta_prefix}{$id}", $id );
}
}
/**
* Handles a coupon applying action made via AJAX request on LD Register page.
*
* @since 4.1.0
*
* @return void
*/
function learndash_apply_coupon(): void {
if (
empty( $_POST['nonce'] ) ||
! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['nonce'] ) ), 'learndash-coupon-nonce' ) ||
empty( $_POST['post_id'] ) ||
! is_user_logged_in() ) {
wp_send_json_error(
array(
'message' => __( 'Invalid request.', 'learndash' ),
)
);
}
if ( empty( $_POST['coupon_code'] ) ) {
wp_send_json_error(
array(
'message' => __( 'Please enter the coupon code.', 'learndash' ),
)
);
}
$product = Product::find( (int) $_POST['post_id'] );
if ( ! $product ) {
wp_send_json_error(
array(
'message' => __( 'Product not found.', 'learndash' ),
)
);
}
// Check if the coupon code is valid.
$coupon_code = sanitize_text_field( wp_unslash( $_POST['coupon_code'] ) );
$coupon_validation_result = learndash_check_coupon_is_valid( $coupon_code, $product->get_id() );
if ( ! $coupon_validation_result['is_valid'] ) {
wp_send_json_error(
array(
'message' => $coupon_validation_result['error'],
)
);
}
// Check if we are processing the "subscribe" pricing.
if ( $product->is_price_type_subscribe() ) {
wp_send_json_error(
array(
'message' => __( 'Subscriptions are not supported for now.', 'learndash' ),
)
);
}
// Process an action.
try {
$product_pricing = $product->get_pricing();
} catch ( Learndash_DTO_Validation_Exception $e ) {
wp_send_json_error(
array(
'message' => __( 'Something went wrong.', 'learndash' ),
)
);
}
$coupon = learndash_get_coupon_by_code( $coupon_code );
$discounted_price = learndash_calculate_coupon_discounted_price( $coupon->ID, $product_pricing->price );
$discount = ( $product_pricing->price - $discounted_price ) * -1;
$price = $discounted_price;
if ( ! learndash_is_zero_decimal_currency( learndash_get_currency_code() ) ) {
$price = intval( $price * 100 );
}
learndash_attach_coupon( $product->get_id(), $coupon->ID, $product_pricing->price, $discounted_price );
wp_send_json_success(
array(
'coupon_code' => $coupon_code,
'discount' => esc_html(
learndash_get_price_formatted( $discount )
),
'total' => array(
'value' => $discounted_price,
'stripe_value' => $price,
'formatted' => esc_html(
learndash_get_price_formatted( $discounted_price )
),
),
'message' => __( 'Coupon applied.', 'learndash' ),
)
);
}
/**
* Handles a coupon removing action made via AJAX request on LD Register page.
*
* @since 4.1.0
*
* @return void
*/
function learndash_remove_coupon(): void {
if (
empty( $_POST['nonce'] ) ||
! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['nonce'] ) ), 'learndash-coupon-nonce' ) ||
empty( $_POST['post_id'] ) ||
! is_user_logged_in() ) {
wp_send_json_error(
array(
'message' => __( 'Invalid request.', 'learndash' ),
)
);
}
// Check if we are processing a course/group.
$product = Product::find( (int) $_POST['post_id'] );
if ( ! $product ) {
wp_send_json_error(
array(
'message' => __( 'Invalid product.', 'learndash' ),
)
);
}
// Detach the coupon.
learndash_detach_coupon( $product->get_id(), get_current_user_id() );
// Calculate the price.
try {
$product_pricing = $product->get_pricing();
} catch ( Learndash_DTO_Validation_Exception $e ) {
wp_send_json_error(
array(
'message' => __( 'Something went wrong.', 'learndash' ),
)
);
}
wp_send_json_success(
array(
'total' => array(
'value' => number_format( $product_pricing->price, 2, '.', '' ),
'stripe_value' => learndash_is_zero_decimal_currency( $product_pricing->currency )
? $product_pricing->price
: intval( $product_pricing->price * 100 ),
'formatted' => esc_html(
learndash_get_price_formatted( $product_pricing->price )
),
),
'message' => __( 'Coupon removed.', 'learndash' ),
)
);
}
/**
* Increments coupon's redemptions and saves a coupon to transaction's meta.
*
* @since 4.1.0
*
* @param int $transaction_id Transaction ID.
*
* @return void
*/
function learndash_process_coupon_after_transaction( int $transaction_id ): void {
$transaction = Transaction::find( $transaction_id );
if ( ! $transaction ) {
return;
}
$product = $transaction->get_product();
$user = $transaction->get_user();
if ( ! $product || 0 === $user->ID ) {
return;
}
if ( ! learndash_post_has_attached_coupon( $product->get_id(), $user->ID ) ) {
return;
}
$coupon_data = learndash_get_attached_coupon_data( $product->get_id(), $user->ID );
if ( ! $coupon_data ) {
return;
}
try {
update_post_meta(
$transaction_id,
LEARNDASH_TRANSACTION_COUPON_META_KEY,
Learndash_Transaction_Coupon_DTO::create( $coupon_data->to_array() )->to_array()
);
update_post_meta(
$transaction_id,
Transaction::$meta_key_pricing_info,
Learndash_Pricing_DTO::create( $coupon_data->to_array() )->to_array()
);
} catch ( Learndash_DTO_Validation_Exception $e ) {
return;
}
// Maybe we'll need to filter transactions by a coupon code.
update_post_meta(
$transaction_id,
LEARNDASH_TRANSACTION_COUPON_META_KEY . '_code',
$coupon_data->code
);
learndash_increment_coupon_redemptions( $coupon_data->coupon_id, $product->get_id(), $user->ID );
}
/**
* Modifies course/group price if a coupon is attached.
*
* @since 4.1.0
*
* @param float $price Course/Group Price.
* @param int $post_id Course/Group ID.
* @param int|null $user_id User ID.
*
* @return float
*/
function learndash_get_price_by_coupon( float $price, int $post_id, ?int $user_id ): float {
if ( is_null( $user_id ) || 0 === $user_id ) {
return $price;
}
if ( ! learndash_post_has_attached_coupon( $post_id, $user_id ) ) {
return $price;
}
$attached_coupon_data = learndash_get_attached_coupon_data( $post_id, $user_id );
if ( ! $attached_coupon_data ) {
return $price;
}
return $attached_coupon_data->discounted_price;
}
/**
* Enrolls a user if the price by coupon is 0.
*
* @since 4.1.0
*
* @return void
*/
function learndash_enroll_with_zero_price(): void {
if (
empty( $_POST['nonce'] ) ||
! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['nonce'] ) ), 'learndash-coupon-nonce' ) ||
empty( (int) $_POST['post_id'] ) ||
! is_user_logged_in()
) {
wp_send_json_error(
array(
'message' => __( 'Invalid request.', 'learndash' ),
)
);
}
// Check if we are processing a course/group.
$product = Product::find( (int) $_POST['post_id'] );
if ( ! $product ) {
wp_send_json_error(
array(
'message' => __( 'Product not found.', 'learndash' ),
)
);
}
if ( ! $product->can_be_purchased() ) {
wp_send_json_error(
array(
'message' => __( 'Product can not be purchased.', 'learndash' ),
)
);
}
// Check if the price by coupon is 0.
try {
$product_pricing = $product->get_pricing();
} catch ( Learndash_DTO_Validation_Exception $e ) {
wp_send_json_error(
array(
'message' => __( 'Something went wrong.', 'learndash' ),
)
);
}
$user = wp_get_current_user();
$price = learndash_get_price_by_coupon( $product_pricing->price, $product->get_id(), $user->ID );
if ( $price > 0 ) {
wp_send_json_error(
array(
'message' => __( 'You have to pay for access.', 'learndash' ),
)
);
}
// Attach a coupon.
$coupon_data = learndash_get_attached_coupon_data( $product->get_id(), $user->ID );
if ( empty( $coupon_data ) ) {
wp_send_json_error(
array(
'message' => __( 'Something went wrong.', 'learndash' ),
)
);
}
learndash_attach_coupon( $product->get_id(), $coupon_data->coupon_id, $product_pricing->price, 0 );
// Create a transaction.
$transaction_id = learndash_transaction_create(
array(
Transaction::$meta_key_is_free => true,
),
$product->get_post(),
$user
);
$transaction = Transaction::find( $transaction_id );
if ( ! $transaction ) {
wp_send_json_error(
array(
'message' => __( 'Something went wrong.', 'learndash' ),
)
);
}
// Enroll.
$product->enroll( $user );
// Redirect.
wp_send_json_success(
array(
'redirect_url' => Learndash_Unknown_Gateway::get_url_success(
array( $product )
),
)
);
}
if ( ! function_exists( 'learndash_coupons_init' ) ) {
/**
* Add filters and actions for the coupon functionality.
*
* @since 4.5.0
*
* @return void
*/
function learndash_coupons_init() {
add_action( 'wp_ajax_learndash_apply_coupon', 'learndash_apply_coupon' );
add_action( 'wp_ajax_learndash_remove_coupon', 'learndash_remove_coupon' );
add_action( 'wp_ajax_learndash_enroll_with_zero_price', 'learndash_enroll_with_zero_price' );
add_action( 'learndash_transaction_created', 'learndash_process_coupon_after_transaction' );
add_filter( 'learndash_get_price_by_coupon', 'learndash_get_price_by_coupon', 10, 3 );
}
}