Change WordPress user roles and capabilities Forums Bug Reports URE conflict with Gravity Forms

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #5119
    netinfoplc
    Participant

    Hi,

    I have installed the latest version of URE (4.47.3) and Gravity Forms (2.3.3).

    I am installing the Mailchimp addon for gravity forms, and that section will not be visible in the GF Settings while URE is activated. So i cannot configure Mailchimp. I must say that this happened with other extensions/addons of GF in the past. When i de activate URE, the extensions are visible just fine.

    Please advice.

    Thank you

    #5120
    Vladimir
    Keymaster

    Hi,

    I suppose that Mailchimp add-on for GF detects active role editor plugin and requires some special user capability the same way, as GF itself does.
    I can check that for you in case you share with me .zip of Mailchimp add-on for GF (via DropBox or similar): support [at-sign] role-editor.com

    #5121
    netinfoplc
    Participant

    Hi,

    Thanks for the reply,

    Here is the link to the plugin: … [REMOVED]

    #5122
    Vladimir
    Keymaster

    Mailchimp add-on defines own user capabilities:
    – gravityforms_mailchimp;
    – gravityforms_mailchimp_uninstall.

    These capabilities were created automatically, but not granted to ‘administrator’ role. Go to ‘Users->User Role Editor’, select ‘administrator’ role and grant them to it.

    
    /**
    	 * Defines the capabilities needed for the Mailchimp Add-On
    	 *
    	 * @since  3.0
    	 * @access protected
    	 * @var    array $_capabilities The capabilities needed for the Add-On
    	 */
    	protected $_capabilities = array( 'gravityforms_mailchimp', 'gravityforms_mailchimp_uninstall' );
    
    	/**
    	 * Defines the capability needed to access the Add-On settings page.
    	 *
    	 * @since  3.0
    	 * @access protected
    	 * @var    string $_capabilities_settings_page The capability needed to access the Add-On settings page.
    	 */
    	protected $_capabilities_settings_page = 'gravityforms_mailchimp';
    
    	/**
    	 * Defines the capability needed to access the Add-On form settings page.
    	 *
    	 * @since  3.0
    	 * @access protected
    	 * @var    string $_capabilities_form_settings The capability needed to access the Add-On form settings page.
    	 */
    	protected $_capabilities_form_settings = 'gravityforms_mailchimp';
    
    	/**
    	 * Defines the capability needed to uninstall the Add-On.
    	 *
    	 * @since  3.0
    	 * @access protected
    	 * @var    string $_capabilities_uninstall The capability needed to uninstall the Add-On.
    	 */
    	protected $_capabilities_uninstall = 'gravityforms_mailchimp_uninstall';
    
    #5123
    netinfoplc
    Participant

    Hi,

    Excellent! That did the trick!

    Thank you

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.