Create an Album
add_filter('bp_get_template_part', 'force_custom_buddypress_template', 10, 3); function force_custom_buddypress_template($templates, $slug, $name) { $custom_path = get_stylesheet_directory() . '/buddypress/' . implode('-', array_filter([$slug, $name])) . '.php'; if (file_exists($custom_path)) { return [$custom_path]; } return $templates; }
Go up