Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/09/2024 10:55:43 AM (12 months ago)
Author:
imath
Message:

BP Standalone Block Themes: adapt Groups template hierarchy

  • Adds a members/single/index.html root template to the BP Standalone Theme hierarchy to be used by BP Standalone Block Themes in respect of WP Block Themes templating logic.
  • Adds a groups/single/index.html root template to the BP Standalone Theme hierarchy to be used by BP Standalone Block Themes in respect of WP Block Themes templating logic.

See #9118
See https://github.com/buddypress/buddypress/pull/249
See https://github.com/buddypress/buddyvibes/pull/7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/actions/create.php

    r13449 r13762  
    1313 * @since 1.2.0
    1414 *
    15  * @return bool
     15 * @return void
    1616 */
    1717function groups_action_create_group() {
     
    1919    // If we're not at domain.org/groups/create/ then return false.
    2020    if ( ! bp_is_groups_component() || ! bp_is_current_action( 'create' ) ) {
    21         return false;
     21        return;
    2222    }
    2323
    2424    if ( ! is_user_logged_in() ) {
    25         return false;
     25        return;
    2626    }
    2727
Note: See TracChangeset for help on using the changeset viewer.