Forum Replies Created

Viewing 15 posts - 301 through 315 (of 2,506 total)
  • Author
    Posts
  • Vladimir
    Keymaster

    Hi Jon,

    I will publish the updated version this month.

    Vladimir
    Keymaster

    Hi Jon,

    There is no such hook currently. You can just comment the line, which initiates the related code:
    wp-content/plugins/user-role-editor-pro/pro/includes/classes/user-role-editor-pro.php, line # 35 ( // $this->init_updater(); ) :

    
        protected function __construct() {
            $this->lib = URE_Lib_Pro::get_instance('user_role_editor');
            
            add_action('ure_on_activation', array($this, 'execute_once'));
            parent::__construct();                                        
    
            add_action('plugins_loaded', array($this, 'load_addons'));                        
            $this->allow_unfiltered_html(); 
            
    //        $this->init_updater();
                    
        }
        // end of __construct()
    
    in reply to: Need help hiding a section. #7589
    Vladimir
    Keymaster

    Did you try the “Admin menu blocking” add-on?

    in reply to: Woocommerce Customer #7585
    Vladimir
    Keymaster

    Hi Dave,

    This is the WooCommerce code which creates the ‘customer’ role:

    
    		// Customer role.
    		add_role(
    			'customer',
    			'Customer',
    			array(
    				'read' => true,
    			)
    		);
    

    As you see it contains the single ‘read’ user capability. Does your copy contains the same ‘read’ capability?

    A possible problem would be related to other plugin or theme code and/or options which prevents login with role different than the ‘customer’. Try to deactivate all plugins and activate WordPress default 2021 theme. Will it change this? If Yes, then you can isolate a source of the problem activating plugins back one by one with a new login test.

    Vladimir
    Keymaster

    I suppose it was a temporal networking issue. If you try to open this URL in a browser you will get the valid JSON data in response.

    Vladimir
    Keymaster

    Hi Jon,

    I reproduced the bug. Thanks for this report. I will work on the fix to include into the next update.

    in reply to: impact on USP Pro (Frontend Posting) #7577
    Vladimir
    Keymaster

    Check URE Pro settings, Add-ons tab:
    if “Activate “Create” capability for posts/pages/custom post types” option is turned ON.
    If Yes, then you have to grant to your role the ‘create_%’, capability for “USP Forms” custom post type. ‘%’ here is the custom post type ID.
    “Add New” menu item is not available without ‘create_%’ capability if mentioned option is turned ON.

    Vladimir
    Keymaster

    GraphQL plugin uses ‘manage_options’ user capability to protect all its admin menu items.

    You can grant ‘manage_options’ to your role, then block unneeded menu items using Admin menu blocking add-on.

    in reply to: WOOCOMMERCE PRODUCT FEED PRO for #7572
    Vladimir
    Keymaster

    Hi,

    This plugin uses ‘manage_options’ user capability to protect its menu/submenu items.

    in reply to: Gravity Forms Add Ons Permissions Missing #7569
    Vladimir
    Keymaster

    Hi,

    If it’s applicable, send admin login credentials to support [at-sign] role-editor.com
    I will look on the issue on site.

    in reply to: Admin Menu redirects to dashboard #7565
    Vladimir
    Keymaster

    Read carefully the “Block not selected” part of the documentation article.

    in reply to: Gravity Forms Add Ons Permissions Missing #7563
    Vladimir
    Keymaster

    “Gravity Forms Add-Ons” section is provided by Gravity Forms itself via GFAddOn (includes/addon/class-gf-addon.php) class.
    My test showed that this group is filled by caps as expected. I may suppose that some active add-on can break the data structures used for this. Try to deactivate temporary all GF addons and activate them back one by one with test repeated to check if this is true assumption and isolate a conflict.

    in reply to: permissions settings for woocommerce and others #7561
    Vladimir
    Keymaster

    Admin notification for 3: I don’t have a solution on hands. In theory custom code hooked to the post status change (e.g. transition_post_status) from ‘draft’ to ‘pending’ may resolve this task.

    in reply to: permissions settings for woocommerce and others #7559
    Vladimir
    Keymaster

    1, 2 – It’s possible to setup via “Edit restrictions add-on“. Activate it, then open “Edit post” dialog for a role and select “Own data only”.

    3 – You had to use as a base role for the starting point the contributor role, not the author. Revoke from a role these capabilities: ‘publish_posts’, ‘publish_products’, ‘edit_published_posts’, ‘edit_published_products’, ‘delete_published_posts’, ‘delete_published_products’.

    4. You can not control with URE what fields are shown at the front-end product page.

    in reply to: When URE is enabled WpUltimo throws an error #7550
    Vladimir
    Keymaster

    Is WpUltimo alailable at wordpress.org/plugins or is it commercial product. I need access to its copy to check the issue.

    Can you share the full stack of from PHP. It should show from where remove_user_from_block() function is called and what code send to it WP_Error object instead of integer value in $user_id variable.

Viewing 15 posts - 301 through 315 (of 2,506 total)