Skip to main content

Space(s) Slug

Hi all, is it possible to change the "spaces" slug to something else eg, "groups"?

Space(s) Slug

Artur Abakarov

Gideon, hi, check out the manual at the link.

Add Custom Links to the Space Men

add_filter('fluent_community/space_header_links', function ($links, $space) {

    // $space->membership will be null if the user is not a member of the space

    $links[] = [
        'title' => 'Custom Link',
        'url' => 'https://example.com'
    ];
    return $links;
}, 10, 2);

\

Gideon Banks

Artur AbakarovΒ - Thank you!