Hi,
i dont understand really your question, but if you want :
– to let members to acces in some area of your admin pannel just use some plugin as Adminimize or Role Manager.
– to let members to only see some of your “private” Contents (for exemple to show to the custumer Sold/price, image, link, text…) just try to insert this code in the area you want:
contents only appears up when the admin/user is logged in.
< ?php
if (current_user_can('level_10')){ /*if user is an admin, then make the correct link*/ ?>
your content - price - link her...
< ?php } /* end of if statement */ ?>
level_10 it’s for the admin only, so if you want to set different prices for each member category, you need only to change the User Levels range from 0 to 10 ( https://codex.www.ads-software.com/User_Levels )
This technics used a lot in the e-commerce website who provide diferent prices for diferent custumers.
Hop i help you, and understand my english ??