View api.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Remove init rest routes | |
remove_action( 'rest_api_init', 'create_initial_rest_routes', 0 ); | |
// Remove oembed rest routes | |
function remove_json_api () { | |
// Remove the REST API lines from the HTML Header | |
remove_action( 'wp_head', 'rest_output_link_wp_head', 10 ); | |
remove_action( 'wp_head', 'wp_oembed_add_discovery_links', 10 ); |
View gist:0cea91fd3b8cf36ed0a3629392c2ffad
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pat_filter_notifications_get_registered_components( $component_names = array() ) { | |
if ( ! is_array( $component_names ) ) { | |
$component_names = array(); | |
} | |
array_push( $component_names, 'events' ); | |
return $component_names; |
View custom-notification.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// this is to add a fake component to BuddyPress. A registered component is needed to add notifications | |
function custom_filter_notifications_get_registered_components( $component_names = array() ) { | |
// Force $component_names to be an array | |
if ( ! is_array( $component_names ) ) { | |
$component_names = array(); | |
} | |
// Add 'custom' component to registered components array |
View BuddyPress > Nouveau > Add Count to Group Tab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Using the Nouveau template pack | |
// Add a count bubble on a custom tab on a user profile is straightforward | |
$count = get_the_count_profile( $group_id ); | |
$class = ( 0 === $count ) ? 'no-count' : 'count'; | |
$name = sprintf( __( 'Events <span class="%s">%s</span>', 'bp-simple-events' ), esc_attr( $class ), number_format_i18n( $count ) ); | |
View docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: wordpress |
View gist:b73343e9c9a6509d2bbc47de80c881c1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Paste in your theme functions.php or in bp-custom.php. | |
* Load the site in a browser | |
* Remove from your theme functions.php or bp-custom.php. | |
*/ | |
function buddypress_add_last_activity() { | |
$members = get_users( 'fields=ID' ); | |
// $members = get_users( 'fields=ID&role=subscriber' ); |
View gist:0e6a1a5ca91ddf256b70fc77799a018b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add_members_directory_tab_nouveau( $nav_items ) { | |
$nav_items['custom'] = array( | |
'component' => 'members', | |
'slug' => 'custom', | |
'li_class' => array('custom no-ajax'), | |
'link' => trailingslashit( bp_get_members_directory_permalink() . 'custom' ), | |
'text' => __( 'Custom', 'buddypress' ), | |
'count' => false, | |
'position' => 15.8, |
View tidy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
be specific re php version: sudo apt-get install php7.0-tidy | |
vagrant@vvv:~$ sudo apt-get install php-tidy | |
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
The following extra packages will be installed: | |
libtidy5 php7.1-common php7.1-tidy | |
The following NEW packages will be installed: | |
libtidy5 php-tidy php7.1-common php7.1-tidy |
View list_groups_on_members_loop.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function shanebp_user_groups(){ | |
$group_ids = groups_get_user_groups( bp_get_member_user_id() ); | |
foreach( $group_ids["groups"] as $id ) { | |
$group = groups_get_group( array( 'group_id' => $id ) ); | |
echo '<a href=' . trailingslashit( bp_get_groups_directory_permalink() . $group->slug . '/' ) . '>' . $group->name . '<a/><br>'; |
View xprofile-pending-users.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// add the custom column header | |
function philopress_modify_user_columns($column_headers) { | |
$column_headers['extended'] = 'Meta Fields'; | |
return $column_headers; | |
} | |
add_action('manage_users_page_bp-signups_columns','philopress_modify_user_columns'); |
NewerOlder