• I want to be able to allow downloads of streaming music to registered members on my website similar to https://www.rockitpro.com.

    For example, I want to put a message such as “Click Here To Register And Download This Audio”

    Once the visitor is logged in, I want the message to be replaced by a “Download Audio” button. It probably is something very simple but I am brand new to WordPress.

    Also, I want users to be able to purchase rights to the music. Any suggestions on that?

Viewing 3 replies - 1 through 3 (of 3 total)
  • To see if a user is logged in, you can use this:

    <?php
    
    if(is_user_logged_in()) :
    
    // Do something for logged in users
    
    else :
    
    // Do something for users not logged in
    
    endif;
    
    ?>

    If you’re adding this within a post or page, you might want to get a plugin like PHP Exec.

    Thread Starter abnotic

    (@abnotic)

    Umm, I don’t know a thing about PHP… that’s why I’m using WordPress in the first place. Isn’t there a simple plugin that will allow me to hide content until a user is logged in?

    I used Easypaypal and Page Restrict…is working really well.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Setting Up Member Only Downloads’ is closed to new replies.