Skip to content

Snippet: Remove Sections from Easy Digital Downloads Product Pages

add_filter( 'wpex_download_single_blocks', function( $blocks ) {
    unset( $blocks['meta'] );  // Remove meta
    unset( $blocks['share'] ); // Remove social share
    return $blocks;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top