Search Results for 'buddypress'
-
Search Results
-
Hi,
I have a WooCommerce store with buddypress to give users profiles, social networking capabilities and also bbPress forums. I want to create a subdomain that will have special content for a subscription, separate from the main store. Is it possible to have the buddypress profiles work for both the main site and subdomain with WooCommerce? I am not sure the best way to set this up so users can shop from both stores with 1 account. I assume I need 2 installations of wordpress/woocommerce/buddypress to make it work???
Topic: Members not Showing in List
I know this has been asked and resolved before, but none of the solutions have worked for me. When I look at the members page – either while logged in as admin, or logged in as a different registered user – the members page is not finding any members.
I’ve tried adding the php that changes the ‘last activity date’ to the functions.php file, then the bb-custom.php file. Neither changed a thing.
Is there anything else I should try? The Buddypress plugin came as part of a theme I purchased. Their support suggested I try to disable plugins, then enable the bp plugins to see if they work. Is this a correct way to go? It seems like a lot of people have this same issue, so I’m hoping the fix is something simple.
Thanks.
LauraTopic: An error of type E_ERROR
BP v4.3.0
PHP v7.3
churchladychronicles.comError message: Uncaught InvalidArgumentException: Passed variable is not an array or object in /wp-content/plugins/buddypress/bp-activity/bp-activity-template.php:2271
(Stack Trace is available if required)I am trying to set a custom homepage for my BB website but it shows members page even if I have set a different homepage.
Please help
http://3.18.60.79/members/ is my development website.
Hi all
I am trying to display a flag on the profile header for the user’s nationality.
A few years ago I was building a site with BuddyPress and had this working, so not sure what I’m doing wrong this time.
<div id="item-header-content"> <?php if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() ) : ?> <img src="/img/nationality/<?php bp_member_profile_data( 'field=nationality' ); ?>.png" title="<?php bp_member_profile_data( 'field=nationality' ); ?>">Can anyone help with this?
Many thanks
As a Web Designer, am currently building a social networking site for a client of mine and we were initially using Buddypress..
However along the line, we discover the profile photo part seems like an issue as people would have to crop their photo (which is a pain) before it works
Any code on how to skip the cropping photo part?
I’m running latest wordpress and buddypress version, if an user try to register and set an invalid field (username already token, email already in the database ecc.) obviously registration fail, but users are not notifyed about what’s wrong. I don’t understand what is wrong.
Hello,
I’m currently working on a website. And i wanted to create an (outside) messaging system in WordPress. The fact is we need to let the user send email to other domain. And we also need a delay system to send the mails, with a calendar for exemple !
We were looking for a solution on the web since 3 weeks, and we can’t manage to find anything. This is why we are looking for your help.Thanks !
Hello,
why does wordpress and buddypress got that complicated registration process. username, name, email…!?
Totally out of time.
OK, I created a real cool registration form with USER META Pro plugin.
It only asks for a WP nickname, email and password.
With that plugin I set the nickname, the user_login and the buddypress name.
All works fine. users are registred and can login in…and all is working, accept that activation link that is fired during the classic buddypress registration and the insert in that buddypress member table.How does that work, is there a HOOK, I can fire after my registration is done?
Like, take the user_ID, email address and name and send the activation link.
does anyone has a solution or a suggestion for this?
Thanks,
DenisHey team,
Having a problem getting any comments from a user on a custom post type to show up on the activity stream. Currently using the mylisting theme with buddypress integration. I have site tracking enabled and have double checked that I can see comments on the listing in the admin section.
I also found this snippet which enabled a new Activity feed action when ever anyone creates a new listing but does not pick up on any comments:
<?php function job_listing_activity_args() { if ( ! bp_is_active( 'activity' ) ) { return; } add_post_type_support( 'job_listing', 'buddypress-activity' ); bp_activity_set_post_type_tracking_args( 'job_listing', array( 'component_id' => 'activity', 'action_id' => 'new_job_listing', 'bp_activity_admin_filter' => __( 'Published a new Report', 'text-domain' ), 'bp_activity_front_filter' => __( 'Reports', 'text-domain' ), 'contexts' => array( 'activity', 'member' ), 'activity_comment' => true, 'bp_activity_new_post' => __( '%1$s posted a new Report: <a href="%2$s">[Job]</a> aproximately', 'text-domain' ), 'bp_activity_new_post_ms' => __( '%1$s posted a new Report: <a href="%2$s">[Job]</a>, on the site %3$s', 'text-domain' ), 'position' => 100, ) ); } add_action( 'init', 'job_listing_activity_args' ); function job_listing_include_post_type_title( $action, $activity ) { if ( empty( $activity->id ) ) { return $action; } if ( 'new_job_listing' != $activity->type ) { return $action; } preg_match_all( '/<a.*?>([^>]*)<\/a>/', $action, $matches ); if ( empty( $matches[1][1] ) || '[Job]' != $matches[1][1] ) { return $action; } $post_type_title = bp_activity_get_meta( $activity->id, 'post_title' ); if ( empty( $post_type_title ) ) { switch_to_blog( $activity->item_id ); $post_type_title = get_post_field( 'post_title', $activity->secondary_item_id ); // We have a title save it in activity meta to avoid switching blogs too much if ( ! empty( $post_type_title ) ) { bp_activity_update_meta( $activity->id, 'post_title', $post_type_title ); } restore_current_blog(); } return str_replace( $matches[1][1], esc_html( $post_type_title ), $action ); } add_filter( 'bp_activity_custom_post_type_post_action', 'job_listing_include_post_type_title', 10, 2 );Would greatly appreciate any help, I’m brand new to buddypress and so far have been really impressed with how powerful it can be, but just running into a bit of a brick wall here.
Thanks in advance,
B
Topic: New user mailpoet issue
Hi, I have set an automated welcome email through mailpoet for when a new user is created as a subscriber. Email sends fine when I manually add user. When user adds themselves mailpoet doesn’t recognise and I have been informed that this is a buddypress issue. Please could this be resolved as I need these automated emails to go when new account is created.
I need users to receive a notification when someone comments on their WORDPRESS BLOG POST, not their wall post.
Is there a way to do this?
It seems to me the buddypress notification is only for wall posts.
Is there a way to add BuddyPress type comments – use of @username, like, add image etc to a regular wordpress blog post (ie not in the activity stream).