• Our client purchased the theme Green Planet.
    We’re working on a integration with CiviCRM.

    Ultimate Member for WP looks to hit all the requirements, on it’s free version (for setup – likely will be upgrading afterwards for some advanced features wants).

    However we can not adjust the forms, such as Register, because of a conflict with ‘CMSMasters Content Composer’.It is that plugin because all others were disabled and singled out to this one. Once disabled, form creation/editing works -but site design is gone. Once enabled, it doesn’t even go past a white page.

    So disabling isn’t a choice here.

    Is there any way around this on Ultimate Member?
    So we can set up the register forms?

    The area in question is Ultimate Members > Forms > and try to view existing or create a new one.
    Their theme is Green Planet, from https://cmsmasters.net/.

    This is the only compatibility issue we’re seeing.
    It is holding up progress on the site development.

    We’ve also reached out to the theme’s developer, but if this won’t work we’ll have to move on to a different membership plugin.

    Thanks,
    Dust

Viewing 2 replies - 1 through 2 (of 2 total)
  • Seems to be a problem with the post type “um_form”.
    I changed cmsmaster-content-composer.php to avoid breaking with ultimate member:

    
    // from line 84:
    if (
        ($pagenow == 'post-new.php' && !isset($_GET['post_type'])) ||
        ($pagenow == 'post-new.php' && isset($_GET['post_type']) && $_GET['post_type'] != 'cmsmasters_font' && $_GET['post_type'] != 'yith_popup' && $_GET['post_type'] != 'product') ||
        ($pagenow == 'post.php' && isset($_GET['post']) && get_post_type($_GET['post']) != 'attachment' && get_post_type($_GET['post']) != 'cmsmasters_font' && get_post_type($_GET['post']) != 'yith_popup' && get_post_type($_GET['post']) != 'product' && get_post_type($_GET['post']) != 'um_form')  /* added: && get_post_type($_GET['post']) != 'um_form' to avoid breaking with ultimate member */
    ) {
        require_once(CMSMASTERS_CONTENT_COMPOSER_PATH . 'gutenberg/gutenberg.php');
    
        add_action('edit_form_after_title', array($this, 'add_gutenberg_button'), 11);
    }
    

    Not tested yet fully but hopefully this does it!

    • This reply was modified 5 years, 9 months ago by abimelex.
    Thread Starter creede2

    (@creede2)

    Hello @abimelex that’s awesome, if it works! They decided to go with Buddypress but I’ll try that out and see too and let you know!

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Ultimate Member is NOT compatible to CMSMasters Content Composer -Breaks areas’ is closed to new replies.