• Resolved billakosgr

    (@billakosgr)


    Can you please add one more rule type? I want to content control the creation of a doc page powered by BuddyPress Docs plugin. You have every other rule type for that plugin except this specific creation page.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Kim L

    (@kimmyx)

    Hi @billakosgr,

    Feel free to submit your feature request here and have others vote for it: https://contentcontrolplugin.com/feature-requests/

    Hope this helps! Let us know if you have more questions. ??

    Thread Starter billakosgr

    (@billakosgr)

    Thanks!

    Plugin Author Daniel Iser

    (@danieliser)

    @billakosgr – Quick follow up, we don’t actually “have every rule” in the sense that we made them all on purpose. We simply built logic that auto generates rules for any registered & public post type or taxonomy.

    So either their docs are not using the built in custom post type systems, or they have them marked as private. Otherwise they would already just appear like your other content types do.

    Some plugins do have content outside the normal content stuff, but we tend to put those rules into our pro offering as they require us to manually maintain them.

    You can try forcing then enabled.

    add_filter('content_control/get_options', function ( $options ) {
    $options['includePrivatePostTypes'] = true;

    return $options;
    } );
Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.