Custom Cart Expiration

/* * Sets the cart expiration to 48 hours */ function pw_edd_set_cart_expiration( $seconds ) { return 172800; // 48 hours in seconds } add_filter( ‘wp_session_expiration’,’pw_edd_set_cart_expiration’, 999990 );Continue reading

Do On Complete

function pw_edd_do_on_complete_purchase( $payment_id = 0 ) { // Execute your code here } add_action( ‘edd_complete_purchase’, ‘pw_edd_do_on_complete_purchase’ );Continue reading

Remove Download Links

function sumobi_edd_receipt_show_download_files() { return false; } add_filter( ‘edd_receipt_show_download_files’, ‘sumobi_edd_receipt_show_download_files’ );Continue reading

Show Discount Field

/** * Unhook default EDD discount field */ remove_action( ‘edd_checkout_form_top’, ‘edd_discount_field’, -1 ); /** * Show discount field by default * If you want a button, simply add Apply discount after the input field. * Because the discount is applied…Continue reading

Required Fields

/* * Modify the required fields for checkout * * Fields are identified by the input fields “name” attribute. * * This example shows how to make the last name field, which has a name attribute of “edd_last”, required */…Continue reading

Custom Payment Icon

function pw_edd_payment_icon( $icons = array() ) { $icons[‘url/to/your/image/icon.png’] = ‘Name of the Payment Method’; return $icons; } add_filter( ‘edd_accepted_payment_icons’, ‘pw_edd_payment_icon’ );Continue reading

Remove Last Name at Checkout

function pw_edd_remove_last_name_field() { remove_action( ‘edd_purchase_form_after_user_info’, ‘edd_user_info_fields’ ); remove_action( ‘edd_register_fields_before’, ‘edd_user_info_fields’ ); } add_action( ‘init’, ‘pw_edd_remove_last_name_field’ ); function pw_edd_user_info_fields() { if ( is_user_logged_in() ) : $user_data = get_userdata( get_current_user_id() ); endif; ?> *Continue reading