• How do I set up a user’s account to only be able to see…

    e-commerce –> Products

    The scenario is that I would like a staff member to login into the site, only be able to the e-commerce option and then the products option.

    Can this be done.

    Thanks in advance for your responses.

    Kris

Viewing 1 replies (of 1 total)
  • 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 ??

Viewing 1 replies (of 1 total)
  • The topic ‘How to modify user rights?’ is closed to new replies.