Remove Free Text
function pw_edd_remove_free( $form, $args ) { $form = str_replace( ‘Free – Purchase’, ‘Purchase’ , $form ); return $form; } add_filter( ‘edd_purchase_download_form’, ‘pw_edd_remove_free’, 10, 2 );Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
function pw_edd_remove_free( $form, $args ) { $form = str_replace( ‘Free – Purchase’, ‘Purchase’ , $form ); return $form; } add_filter( ‘edd_purchase_download_form’, ‘pw_edd_remove_free’, 10, 2 );Continue reading
function pw_edd_comments() { add_post_type_support( ‘download’, ‘comments’ ); } add_action( ‘init’, ‘pw_edd_comments’, 999 );Continue reading
function sumobi_download_post_type_args( $download_args ) { $download_args[‘exclude_from_search’] = true; return $download_args; } add_filter( ‘edd_download_post_type_args’, ‘sumobi_download_post_type_args’ );Continue reading
add_filter( ‘edd_product_notes’, ‘__return_false’ );Continue reading
/** * Change the word “Check” to “Wire Transfer” on the checkout page and settings pages. * * @since 1.0 * @return array */ function custom_change_checks_to_wire( $gateways ){ $gateways[‘checks’] = array( ‘admin_label’ => ‘Wire Transfer’, ‘checkout_label’ => __( ‘Wire Transfer’,…Continue reading
if ( class_exists( ‘EDD_Points_Renderer’ ) ) { global $edd_points_render; remove_action( ‘edd_before_download_content’, array( $edd_points_render, ‘edd_points_message_content’ ), 10 ); add_action( ‘edd_after_download_content’, array( $edd_points_render, ‘edd_points_message_content’ ), 0 ); }Continue reading
function edd_c_reverse_receivers( $receivers, $payment_id ) { $receivers = explode( “\n”, $receivers ); $receivers = implode( “\n”, array_reverse( $receivers ) ); return $receivers; } add_filter( ‘epap_adaptive_receivers’, ‘edd_c_reverse_receivers’, 10, 2 );Continue reading
/** * This function demonstrates how to automatically display a field of content with the meta key ‘my_prefix_restricted_content’ (submitted * through FES) to the content of the Product in question while wrapped in the edd_restrict shortcode. * Note: you can…Continue reading
function custom_fes_login_redirect( $response, $userdata ) { $response[‘redirect_to’] = ‘http://google.com/’; return $response; } add_filter( ‘fes_login_form_success_redirect’, ‘custom_fes_login_redirect’, 10, 2 );Continue reading
function jp_maybe_fix_canonical() { if ( get_query_var( ‘vendor’ ) ) { remove_action( ‘wp_head’, ‘rel_canonical’ ); add_action( ‘wp_head’, ‘jp_fix_canonical’ ); } } add_action( ‘template_redirect’, ‘jp_maybe_fix_canonical’ ); function jp_fix_canonical() { $link = home_url( ‘vendor/’ ); if ( $vendor = get_query_var( ‘vendor’ ) )…Continue reading