Need help with restricted page for users

It sounds like you want a membership site that restricts content to certain membership levels. There are several membership plugins available for WordPress and several reviews of the options. One site what has several articles on membership plugins is: chrislema.com

Masking external links with internal link for member-only

You will want to add the hook function in your functions.php file: $user = wp_get_current_user(); if($user->exists) { add_filter(‘public_link_root’, function() { return ‘example.com’; } ); } Then whenever you are working with a URL in any of your template files, you can allow the URL to be modified by your customer filter public_link_root. The filter will … Read more

Plugin Recommendation for selling one page content [closed]

I would use a membership plugin such as: WPMU Dev Membership – http://premium.wpmudev.org/project/membership Wishlist Member – http://member.wishlistproducts.com/ I’ve personally used both and they work great. With these plugins, you would setup a membership level specifically for each page content you wish to sell. You can do one-time or recurring payments for your content as well.