Search Results for 'buddypress'
-
Search Results
-
Hi,
We are trying to find a solution for our intranet site. Using Buddypress and bbpress for accounts and general discussions, we are new to Buddypress.
There are several locations of the organisation all with a couple of members. who communicatie and manage project via the intranet. We added groups for each location and assigned the members of each location to their group. The idea is to have them send messages to the group, and they will see this in the notifications. But we didn’t see any notifications and after a tiny bit of research we found out there is no such thing included already in Buddypress. So after some more research we found this tutorial > https://webdevstudios.com/2015/10/06/buddypress-adding-custom-notifications/ which shows us how to add a custom notification, upon post comments.This provided code seems to be split up in 3 sections, and if I understand it correctly, we should only have to edit the middle section to make this work for our problem.
As said, we are new to Buddypress, but also to coding for plugins/themes.
How can we change this code to suit our needs?In the comments on that post a answer to a similar question is provided: “youd need to hook into the correct filter instead of wp_insert_comment”. What is this correct filter and were do I find it?
Kind regards,
Martijn
Hi,
is there anyone who can recommend plugin or way to:1, allow buddypress users to post chapters (somehow link their related blogs)
2, User can’t upload the image – however, can select the one from library
3, allow buddypress users to follow certain blog posts – so, when it’s edited or commented they receive notification?
Thank you π
I recently decided to completely restart my site, so I uninstalled wordpress and re-installed it. I installed buddypress and enabled the activity component. The page buddypress rendered is blank. It just says ‘Activity’ on-top. No activity is listed, even when activity is posted. I am trying to find the ‘Site-wide activity’ functions.
Buddypress only renders two pages when I install it. “Activity” and “Members”. I am running only the lastest version of buddypress and wordpress.
Anybody know what the issue could be :/ I searched long and hard before posting.
Topic: Free Theme almost ready
I’ve created a theme for WordPress + BuddyPress (almost ready) and will be hosting on Github soon for people to download.
Is there anyone here who would be interested to use this?
Initially I thought there was a need for a free BuddyPress theme but so far the amount of interest has been quite minimal.
Anyway, check it out http://buddycore.com/ you can register and you could help shape the first release of the theme if you are interested.
Thanks http://buddycore.com/register
I should add that you can upload your own logo and change the colours in this theme to match your community.
As far as I am aware, I only made one change to BuddyPress yesterday and that was creating a bp-custom.php file and adding:
<?php add_action( 'bp_complete_signup', 'buddydev_redirect_after_signup' ); function buddydev_redirect_after_signup() { $page = 'thanks-for-joining';//your page slug bp_core_redirect( site_url( $page ) ); } ?>So that it redirects users to a new page after signing up – this works beautifully.
However, since then I have stopped receiving new user notification emails. This was something I was receiving by default when new users finished activating their accounts. Does anyone know why this has stopped or how to re-activate it? Failing that, is there a way to see how many new users there are each day?
Hello all,
I have an additional subnav under settings that I created with the slug “accountdetails”
I am trying to change the default nav from general to this with no luck. I have tried adding the code below to both bp-functions and functions.php. Neither has worked. Is there anything that I’m missing?
function change_settings_subnav() { $bp = buddypress(); $args = array( 'parent_slug' => $bp->settings->slug, 'subnav_slug' => $bp->settings->slug . '/accountdetails/' ); bp_core_new_nav_default($args); } add_action('bp_setup_nav', 'change_settings_subnav', 5);Topic: 2nd Registration form
Hi,
I need to add buddypress 2nd registration form but without email or password. just username may be, with some custom fields.
Example: Teacher register from main register plugin and add students ( using 2nd register form) to the database, students also will have profiles with these data.
Is this something possible, buddypress can do? Any plugins?
Thanks!