-
55 |
56 |
57 |
58 |
- 59 | 60 | 61 | 62 | 63 | 64 | 72 | 73 | 85 | 86 | 87 | 88 | 89 |
├── assets ├── js │ └── bp-custom.js ├── css │ └── bp-custom.css └── sass │ ├── views │ ├── blogs │ │ ├── index.scss │ │ └── _blogs.scss │ ├── forums │ │ ├── index.scss │ │ └── _forums.scss │ ├── members │ │ ├── index.scss │ │ ├── _members.scss │ │ └── single │ │ │ ├── _members-single.scss │ │ │ ├── forums │ │ │ └── _members-single-forums.scss │ │ │ ├── groups │ │ │ └── _members-single-groups.scss │ │ │ ├── friends │ │ │ └── _members-single-friends.scss │ │ │ ├── messages │ │ │ └── _members-single-messages.scss │ │ │ ├── profile │ │ │ └── _members-single-profile.scss │ │ │ ├── settings │ │ │ └── _members-single-settings.scss │ │ │ ├── notifications │ │ │ └── _members-single-notifications.scss │ │ │ └── index.scss │ ├── groups │ │ ├── index.scss │ │ ├── _groups.scss │ │ └── single │ │ │ └── _groups-single.scss │ ├── activity │ │ ├── index.scss │ │ ├── _activity.scss │ │ └── single │ │ │ └── _activity-single.scss │ └── index.scss │ ├── utilities │ ├── mixins │ │ ├── index.scss │ │ └── _media-queries.scss │ ├── index.scss │ └── variables │ │ ├── index.scss │ │ ├── _breakpoints.scss │ │ └── _grid-settings.scss │ ├── index.scss │ └── bp-custom.scss ├── inc ├── bp-custom-actions.php ├── bp-custom-filters.php ├── bp-custom-widgets.php ├── bp-custom-template-tags.php └── bp-custom.php ├── .gitignore ├── templates ├── buddypress │ ├── members │ │ ├── single │ │ │ ├── forums │ │ │ │ └── topics.php │ │ │ ├── notifications.php │ │ │ ├── profile │ │ │ │ ├── change-cover-image.php │ │ │ │ ├── profile-loop.php │ │ │ │ ├── profile-wp.php │ │ │ │ ├── change-avatar.php │ │ │ │ └── edit.php │ │ │ ├── notifications │ │ │ │ ├── feedback-no-notifications.php │ │ │ │ ├── read.php │ │ │ │ ├── unread.php │ │ │ │ └── notifications-loop.php │ │ │ ├── settings.php │ │ │ ├── plugins.php │ │ │ ├── profile.php │ │ │ ├── forums.php │ │ │ ├── settings │ │ │ │ ├── notifications.php │ │ │ │ ├── capabilities.php │ │ │ │ ├── delete-account.php │ │ │ │ ├── profile.php │ │ │ │ └── general.php │ │ │ ├── blogs.php │ │ │ ├── activity.php │ │ │ ├── friends.php │ │ │ ├── groups.php │ │ │ ├── messages.php │ │ │ ├── messages │ │ │ │ ├── compose.php │ │ │ │ ├── message.php │ │ │ │ ├── notices-loop.php │ │ │ │ ├── single.php │ │ │ │ └── messages-loop.php │ │ │ ├── groups │ │ │ │ └── invites.php │ │ │ ├── member-header.php │ │ │ ├── cover-image-header.php │ │ │ ├── home.php │ │ │ └── friends │ │ │ │ └── requests.php │ │ ├── activate.php │ │ ├── members-loop.php │ │ └── index.php │ ├── groups │ │ ├── single │ │ │ ├── plugins.php │ │ │ ├── request-membership.php │ │ │ ├── send-invites.php │ │ │ ├── activity.php │ │ │ ├── requests-loop.php │ │ │ ├── group-header.php │ │ │ ├── members.php │ │ │ ├── invites-loop.php │ │ │ ├── cover-image-header.php │ │ │ ├── home.php │ │ │ ├── forum │ │ │ │ ├── edit.php │ │ │ │ └── topic.php │ │ │ └── forum.php │ │ ├── groups-loop.php │ │ └── index.php │ ├── activity │ │ ├── single │ │ │ └── home.php │ │ ├── activity-loop.php │ │ ├── comment.php │ │ ├── post-form.php │ │ ├── entry.php │ │ └── index.php │ ├── assets │ │ └── _attachments │ │ │ ├── avatars │ │ │ ├── crop.php │ │ │ ├── camera.php │ │ │ └── index.php │ │ │ ├── cover-images │ │ │ └── index.php │ │ │ └── uploader.php │ ├── blogs │ │ ├── create.php │ │ ├── blogs-loop.php │ │ └── index.php │ └── forums │ │ ├── forums-loop.php │ │ └── index.php └── js │ ├── password-verify.min.js │ └── password-verify.js ├── bower.json ├── package.json ├── README.md ├── Gruntfile.js ├── example.php └── loader.php /assets/js/bp-custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/bp-custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/sass/views/blogs/index.scss: -------------------------------------------------------------------------------- 1 | @import "blogs"; -------------------------------------------------------------------------------- /assets/sass/views/forums/index.scss: -------------------------------------------------------------------------------- 1 | @import "forums"; -------------------------------------------------------------------------------- /assets/sass/utilities/mixins/index.scss: -------------------------------------------------------------------------------- 1 | @import "media-queries"; -------------------------------------------------------------------------------- /inc/bp-custom-actions.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/sass/views/members/index.scss: -------------------------------------------------------------------------------- 1 | @import "members"; 2 | @import "single/index"; -------------------------------------------------------------------------------- /inc/bp-custom-template-tags.php: -------------------------------------------------------------------------------- 1 | 15 | 16 | 24 | 25 | 'cover_image', 14 | 'settings' => array( 15 | 'components' => array( 'xprofile', 'groups' ), 16 | 'width' => 940, 17 | 'height' => 225, 18 | 'callback' => 'clp_cover_image', 19 | 'theme_handle' => 'bp-legacy-css', 20 | ), 21 | ) ); 22 | 23 | 24 | } 25 | add_action( 'bp_after_setup_theme', 'wds_clp_register_feature' ); 26 | 27 | 28 | // Example of function to customize the display of the cover image 29 | function clp_cover_image( $params = array() ) { 30 | } -------------------------------------------------------------------------------- /templates/buddypress/activity/single/home.php: -------------------------------------------------------------------------------- 1 | 10 |
log in with the username and password you provided when you signed up.', 'buddypress' ), wp_login_url( bp_get_root_domain() ) ); ?>
44 | 45 | 46 | 47 | 48 | 49 | 50 | 60 | 61 | 62 | 63 | 71 | 72 |32 | 33 |
34 | 35 | 43 | 44 | 58 |Gravatar associated with your account email we will use that, or you can upload an image from your computer.', 'buddypress' ); ?>
25 | 26 | 70 | 71 | 78 | 79 | 80 | 81 |Gravatar using the same email address as you used to register with this site.', 'buddypress' ); ?>
82 | 83 | 84 | 85 | 93 | -------------------------------------------------------------------------------- /templates/buddypress/members/members-loop.php: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | "> 45 |
46 | 47 | 55 | 56 | 57 | 58 | 59 | 60 | 68 | 69 | 77 | 78 | 138 | 139 | 147 | 148 | 149 | 150 | 158 | 159 || 53 | | 54 | | 55 | 56 | row holding the | tags. 60 | * 61 | * @since 1.2.4 62 | */ 63 | do_action( 'bp_directory_forums_extra_cell_head' ); ?> 64 | 65 | |
|---|---|---|---|
| 74 | 75 | 76 | 77 | 78 | 79 | 80 | 100 | | 101 |102 | 103 | | 104 |105 | 106 | 112 | | 113 | 114 | row holding thetags. 118 | * 119 | * @since 1.1.0 120 | */ 121 | do_action( 'bp_directory_forums_extra_cell' ); ?> 122 | 123 | |
create a new group? Once you have joined or created the group you can post your topic in that group's forum.", 'buddypress' ), trailingslashit( bp_get_groups_directory_permalink() . 'create' ) ); ?>
217 | 218 |