Skip to main content
Search
Showing results for post

This action just after a discount is removed from the shopping cart. do_action( ‘edd_post_remove_cart_discount’, $discount_id );

Continue Reading

This action runs just after a payment note is deleted. do_action( ‘edd_post_delete_payment_note’, $note_id, $payment_id );

Continue Reading

This action just after the status of a discount code is changed. do_action( ‘edd_post_update_discount_status’, $discount_id, $new_status, $old_status );

Continue Reading

This action runs after a discount code is updated. It receives two parameters, $discount_details and $id. $discount_details is an array containing all fields for the discount, such as name, amount, type, etc. do_action( ‘edd_post_update_discount’, $discount_details, $id );

Continue Reading

This action just after a discount code is deleted. It receives one parameters: `$discount_id`. do_action( ‘edd_post_delete_discount’, $discount_id );

Continue Reading

This action runs just after a log entry is recorded. do_action( ‘edd_post_insert_log’, $log_id, $log_data, $log_meta );

Continue Reading