Skip to content Skip to main menu
User Role Editor
Menu
  • Home
  • Prices
  • Download
  • Testimonials
  • Forums
  • Blog
  • ChangeLog
  • Documentation
  • Login
Home › Topic › WooCommerce – My account -page restrict access to tabs

Change WordPress user roles and capabilities › Forums › Restrict or Permit access inside WordPress – how to › WooCommerce – My account -page restrict access to tabs

Tagged: WooCommerce - My account -page

  • This topic has 7 replies, 2 voices, and was last updated 5 years, 9 months ago by Vladimir.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • 30/09/2016 at 12:47 #2812
    UranusOy
    Participant

    Hi,

    I was wondering how could I get user role based restrictions to Woocommerces my account -page.

    I have couple of roles that will have access to “my account” -page. First is “Employer” witch has access to “Dashboard, Orders, Addresses, Account Details, Logout” -tabs on “My Account” -page.

    Second one is “Candidate” and I want to restrict candidates access on Woocommerces “My Account” -page to “Account Details” and “Logout”

    30/09/2016 at 14:53 #2816
    Vladimir
    Keymaster

    Hi,

    Try to install this code as a “must use” plugin. Replace ‘subscriber’ role inside to you own role ID, e.g. ‘candidate’:

    
    add_filter('woocommerce_account_menu_items', 'filter_wc_my_account_menu');
    add_action('template_redirect', 'redirect_for_blocked_wc_pages');
    
    function filter_wc_my_account_menu($items) {
        if (!current_user_can('subscriber')) {
            return $items;
        }
        if (isset($items['dashboard'])) {
            unset($items['dashboard']);
        }
        if (isset($items['orders'])) {
            unset($items['orders']);
        }
        if (isset($items['downloads'])) {
            unset($items['downloads']);
        }
        if (isset($items['edit-address'])) {
            unset($items['edit-address']);
        }
        if (isset($items['payment-methods'])) {
            unset($items['payment-methods']);
        }
    
        return $items;
    }
    
    function check_end_point_url($end_point, $current_url) {
        $blocked_url = wc_get_endpoint_url($end_point);
        if ($current_url==$blocked_url) {
            $my_account_url = wc_get_endpoint_url('woo-account-page');
            wp_redirect($my_account_url);
            die;
        }
    }
    
    function redirect_for_blocked_wc_pages() {
        global $wp;
        
        if (!current_user_can('subscriber')) {
            return;
        }
            
        $current_url = trailingslashit(home_url($wp->request));        
        $blocked_end_points = array('dashboard', 'orders', 'downloads', 'edit-address', 'payment-methods');
        foreach($blocked_end_points as $bep) {
            check_end_point_url($bep, $current_url);
        }
        
    }
    
    03/10/2016 at 12:43 #2829
    UranusOy
    Participant

    Almost perfect.

    Only thing is that the dashboard is still the first page when you open “My Account” page so you will see all dashboard content. It would be preferable to show “Account Details” pages as default page “My Account” -page instead of “Dashboard”. This would be for “Candidates” of course.

    Thank you so much for your time and effort
    Great product and great service

    03/10/2016 at 16:08 #2835
    Vladimir
    Keymaster

    Thanks for the feedback. I will look if it’s possible to change the default page for “My Account”.

    04/10/2016 at 04:57 #2836
    UranusOy
    Participant

    Thank you,

    This is very much appreciated.

    04/10/2016 at 11:24 #2838
    Vladimir
    Keymaster

    Try this variant. I removed the “Account Details” from the left menu items too, as it’s the only available my account endpoint and it’s not sense to place the link on the same page.

    
    add_filter('woocommerce_account_menu_items', 'filter_wc_my_account_menu');
    add_action('template_redirect', 'redirect_for_blocked_wc_pages');
    
    function filter_wc_my_account_menu($items) {
        if (!current_user_can('subscriber')) {
            return $items;
        }
        if (isset($items['dashboard'])) {
            unset($items['dashboard']);
        }
        if (isset($items['orders'])) {
            unset($items['orders']);
        }
        if (isset($items['downloads'])) {
            unset($items['downloads']);
        }
        if (isset($items['edit-address'])) {
            unset($items['edit-address']);
        }
        if (isset($items['edit-account'])) {
            unset($items['edit-account']);
        }
        if (isset($items['payment-methods'])) {
            unset($items['payment-methods']);
        }
    
        return $items;
    }
    
    function redirect_from_blocked_url() {
        $my_account_url = wc_get_endpoint_url('edit-account');
        wp_redirect($my_account_url);
        die;    
    }
    
    function check_end_point_url($end_point, $current_url) {
        $blocked_url = wc_get_endpoint_url($end_point);
        if ($current_url==$blocked_url) {
            redirect_from_blocked_url();
        }
    }
    
    function redirect_for_blocked_wc_pages() {
        global $wp, $wp_query;
               
        if (!current_user_can('subscriber')) {
            return;
        }
        
        if (is_account_page() && !is_wc_endpoint_url()) {
            // block Woo My Account Dashboard;
            redirect_from_blocked_url();
        }
                
        $current_url = trailingslashit(home_url($wp->request));
        $blocked_end_points = array('dashboard', 'orders', 'downloads', 'edit-address', 'payment-methods');
        foreach($blocked_end_points as $bep) {
            check_end_point_url($bep, $current_url);
        }
        
    }
    
    04/10/2016 at 11:52 #2839
    UranusOy
    Participant

    It works perfectly.

    Thank you so much for your help.

    Great plugin and great support.

    and for anyone else reading this post I would definitely recommend this plugin.

    05/10/2016 at 02:20 #2844
    Vladimir
    Keymaster

    Thanks for the feedback.

  • Author
    Posts
Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.
Log In

Recent Topics

  • Cannot edit LearnDash Course Permalinks
  • I have enabled all options for a CPT but my user cannot add a new one
  • Main category is deleted each time a specific role updates a post.
  • Restrict files in Media Library to Subscriber role or higher
  • Cannot edit LearnDash Course Permalinks
  • “Administrator” role missing under multisite’s subsite’s Users menu item
  • Can’t add categories to post
  • Need to create a Read Only User
  • How to restrict specific settings within a wordpress plugin
  • Membership plan

Recent Replies

  • Gracie Vaughn on Gravity Forms Restrictions No Longer Working 22 hours, 44 minutes ago
  • Vladimir on I have enabled all options for a CPT but my user cannot add a new one 4 days, 5 hours ago
  • highprrrr on I have enabled all options for a CPT but my user cannot add a new one 4 days, 20 hours ago
  • epss on Gravity Forms Restrictions No Longer Working 6 days, 18 hours ago
  • TomJaycocks on Can’t add categories to post 6 days, 18 hours ago
  • Vladimir on Main category is deleted each time a specific role updates a post. 6 days, 22 hours ago
  • James Smith on Gravity Forms Restrictions No Longer Working 6 days, 23 hours ago
  • Mike on Restrict files in Media Library to Subscriber role or higher 1 week ago
  • Vladimir on Restrict files in Media Library to Subscriber role or higher 1 week ago
  • Vladimir on Can’t add categories to post 1 week ago
  • Contact Us
  • Privacy Policy
  • Terms of use (EULA)
© 2010 - 2022 Artellect Limited. Units A-C, 25/F., Seabright Plaza, No. 9-23 Shell Street, North Point, Hong Kong. Contact: hd@role-editor.com
Share