• Resolved ptrkx

    (@ptrkx)


    Hey together, is there an option to hide downloads for users that are not logged in ? Downloads should be only visible for logged in users.

    Thank you

    Best regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @ptrkx,

    Thank you for reaching out to us!
    Unfortunately Download Monitor does not have such an option yet, I’m sorry.
    There is an open ticket with our development team regarding this enhancement and it is on our roadmap.

    Please let me know if you have any other questions.

    Warmly,

    Beatrice.

    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.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Hide Downloads for users’ is closed to new replies.