Hi, I wrote a piece of code just for this:
function hide_download_buttons_for_guests($content) {
if (!is_user_logged_in()) {
$pattern = get_shortcode_regex([‘download’]);
$content = preg_replace(‘/’ . $pattern . ‘/s’, ”, $content);
}
return $content;
}
add_filter(‘the_content’, ‘hide_download_buttons_for_guests’);
Just copy and paste this into your functions.php and see the magic.