Home / Admin / Remove Price
Duplicate Snippet

Embed Snippet on Your Site

Remove Price

Removes the price from all add to cart buttons

Code Preview
php
<?php
function pw_edd_remove_price( $args ) {
	
	$args['price'] = 'no';
	return $args;
}
add_filter( 'edd_purchase_link_defaults', 'pw_edd_remove_price' );

Comments

Add a Comment