I’ve installed the premium plugin, but I have to disable the “High-Performance order storage” from WooCommerce settings to enable it. Is there a way to keep this critical feature on?
]]>Does this support Woo Subscriptions? I did a test but it doesnt look like subscriptions show up and therefore members cant manage their subscriptions.
]]>we use Buddyboss theme with Learndash and after recent update we have a Fatal error:
2024/04/29 10:37:30 [error] 2448123#2448123: *6592026 FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught Error: Call to undefined function bp_members_get_user_url() in /wp-content/plugins/wc4bp/class/core/wc4bp-redirect.php:34 6 /home/runcloud/” while reading upstream, client: 172.70.254.26, server: , request: “GET /news-feed/ HTTP/2.0”, upstream: “fastcgi://unix:/var/run/titansafetycoursesStaging.sock:”, host: ““, referrer: “https:///wp-login.php?redirect_to=https%3A%2F%2F%2Fwp-admin%2F&reauth=1″ 5 /wp-includes/link-template.php(409): apply_filters() 4 /wp-includes/plugin.php(205): WP_Hook->apply_filters() 3 /wp-includes/class-wp-hook.php(326): wc4bp_redirect->wc4bp_page_link_router() 2 /wp-content/plugins/wc4bp/class/core/wc4bp-redirect.php(241): wc4bp_redirect->redirect_link() 1 /wp-content/plugins/wc4bp/class/core/wc4bp-redirect.php(152): wc4bp_redirect->convert_url() 0 /wp-content/plugins/wc4bp/class/core/wc4bp-redirect.php(217): wc4bp_redirect::get_base_url()
]]>My client buddyboss website just went down due to this plugin developing a fatal error (only when logging into website). I’m assuming this is because of the plugin update 14 hours ago? Anyone?
]]>Hi, is it possible disable BuddyBoss notification that the user has bought something? I think it is related to this plugin and It violates the GDPR, thank you
]]>IT`S URGENT NEED
I request you to lunch other version of this plugin which are compatible with new version of buddypress (12.0.1) , because this plugin has deprecate version and its creat criticle error
Hi, I pay for the subscription addon, and I experimenting differents kinds of errors, in the account tab named “shop”, generally the customer have a “ERROR TO MANY REDIRECTS”, and the link to their subscriptions is not available for their,generally obtain 404 webpage, and the developers of the plugin don’t answer anything about that!
]]>Just wanted to let you know that with the latest update 3.4.17, your plugin seems to have blocked the Paypal smart button from appearing in the Woocommerce checkout when users were signed in to our website. Every paypal payment failed for returning users. Once I deactivated the BuddyPress Integration for WooCommerce, the Paypal button worked again. I won’t be using the plugin anymore, even though it was nice to have all WC information included on our user dashboards in buddyboss. thanks anyways.
]]>I just installed the plugin and every single setting says it is a pro feature. This is not what the screenshots look like.
]]>The coupon input is missing / does not appear on the checkout or cart panels – we are using BuddyPress Theme with the Pro version of BuddyPress.
Let me know what other information you need.
Thank you!
]]>Your plugin causes admin side menu CSS conflicts and adds a background color to the admin bar… why?
Images:
]]>Ciao, come faccio per aiutare nella traduzione di questo plugin in italiano?
]]>Hello,
I am having an issue with my website. when a user is logged in and uses add to cart button, it should get to the Cart page but the problem is that when logged in user click add to cart and then view the cart then it redirects to the shop tab under BuddyPress profile. is there any way through which this issue can be sorted and redirection can be restricted?
Hopping for a solution super soon
thank you
Hi, I installed the plugin and tested by downloading the file under the “Download” tab which created from the plugin. The issue is that when I go to “Order” under Woocommerce to see download record, it doesn’t show up as if I never download anything VS if I click on download link from “Thank you page” or ” Woocommerce email”, it show download reports (E.g. how many time I have download the file and other details).
I’m not sure if it is any setting I missed or plugin bug issue. Your advice will be much appreciated.
Thank you
]]>What is the difference between WC4BP -> Subscriptions and WC4BP -> Groups?
thx.
]]>Hi,
I tested this plugin and it worked really well. 2 of your add-ons are in my wishlist now.
But when I check this page, I have a conncern:
https://themekraft.com/wordpress-products/buddypress-woocommerce-subscriptions-integration/
What dependencies mean?
For example, to make WooBuddy Subscriptions Integration work, do I need to install WC vendors?
]]>Having your plugin activated on my site causes the user login page to fail approximately 50 percent of the time.
Behaviour 50 percent of the time is that the user enters their username and password and the user is logged in, or if they entered the password wrong, they are told the password is wrong.
the other 50% of the time, the user enters credentials and clicks “Log In” and the page is just refreshed and nothing happens. The user is NOT logged in, or told their password is wrong, and has to enter their credentials again.
I made a video of this happening. Disabling the plugin seems to cure it immediately.
Please could you fix this?
]]>Hello,
How to remove the buddypress sidebar only on the Woocommerce subpages ? (Checkout, Cart…)
I am plugin developer I am using your plugin thank you for your best product.. I Have created plugin for buddyboss or buddypress custom notification your plugin have conflict
with sending notification
Let me explain you
file location wc4bp\class\wc4bp-notifications.php (line number 28)
Here the function
add_filter( 'bp_notifications_get_notifications_for_user', 'wc4bp_format_purchased_notifications', 10, 5 );
function wc4bp_format_purchased_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
if ( 'send_purchase_notification' === $action ) {
if( ! empty( $item_id ) ){
$order = wc_get_order( $item_id );
$names = array();
$message = __( 'The user %s has bought %s','wc4bp' );
foreach( $order->get_items() as $item_id => $item ){
$names[] = '<a href="' . $item->get_product()->get_permalink() . '">' . $item->get_product()->get_name() . '</a>';
$user_link = bp_core_get_userlink( $order->get_customer_id() );
}
$notification = sprintf( $message,$user_link, implode( ', ',$names ) );
}
}
return $notification;
}
observation : debug undefine notification variable when notification not found you need to return under the your action if condition another main point when I fired same filter so anther filter not working because you haven’t return $action after end function I modify your function below
add_filter( 'bp_notifications_get_notifications_for_user', 'wc4bp_format_purchased_notifications', 10, 5 );
function wc4bp_format_purchased_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
if ( 'send_purchase_notification' === $action ) {
if( ! empty( $item_id ) ){
$order = wc_get_order( $item_id );
$names = array();
$message = __( 'The user %s has bought %s','wc4bp' );
foreach( $order->get_items() as $item_id => $item ){
$names[] = '<a href="' . $item->get_product()->get_permalink() . '">' . $item->get_product()->get_name() . '</a>';
$user_link = bp_core_get_userlink( $order->get_customer_id() );
}
$notification = sprintf( $message,$user_link, implode( ', ',$names ) );
}
return $notification;
}
return $action;
}
Please make these correction on your next update please here you can check buddyboss-plateform plugin also followed same instruction
function bbp_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
// New reply notifications
if ( 'bbp_new_reply' === $action ) {
$topic_id = bbp_get_reply_topic_id( $item_id );
$topic_title = bbp_get_topic_title( $topic_id );
$topic_link = wp_nonce_url(
add_query_arg(
array(
'action' => 'bbp_mark_read',
'topic_id' => $topic_id,
'reply_id' => $item_id,
),
bbp_get_reply_url( $item_id )
),
'bbp_mark_topic_' . $topic_id
);
$title_attr = __( 'Discussion Replies', 'buddyboss' );
if ( (int) $total_items > 1 ) {
$text = sprintf( __( 'You have %d new replies', 'buddyboss' ), (int) $total_items );
$filter = 'bbp_multiple_new_subscription_notification';
} else {
if ( ! empty( $secondary_item_id ) ) {
$text = sprintf( __( 'You have %d new reply to %2$s from %3$s', 'buddyboss' ), (int) $total_items, $topic_title, bp_core_get_user_displayname( $secondary_item_id ) );
} else {
$text = sprintf( __( 'You have %1$d new reply to %2$s', 'buddyboss' ), (int) $total_items, $topic_title );
}
$filter = 'bbp_single_new_subscription_notification';
}
// WordPress Toolbar
if ( 'string' === $format ) {
$return = apply_filters( $filter, '<a href="' . esc_url( $topic_link ) . '" title="' . esc_attr( $title_attr ) . '">' . esc_html( $text ) . '</a>', (int) $total_items, $text, $topic_link );
// Deprecated BuddyBar
} else {
$return = apply_filters(
$filter,
array(
'text' => $text,
'link' => $topic_link,
),
$topic_link,
(int) $total_items,
$text,
$topic_title
);
}
/**
* @todo add title/description
*
* @since BuddyBoss 1.0.0
*/
do_action( 'bbp_format_buddypress_notifications', $action, $item_id, $secondary_item_id, $total_items );
return $return;
}
if ( 'bbp_new_at_mention' === $action ) {
$topic_id = bbp_get_reply_topic_id( $item_id );
if ( empty( $topic_id ) ) {
$topic_id = $item_id;
}
$topic_title = bbp_get_topic_title( $topic_id );
$topic_link = wp_nonce_url(
add_query_arg(
array(
'action' => 'bbp_mark_read',
'topic_id' => $topic_id,
'reply_id' => $item_id,
),
bbp_get_reply_url( $item_id )
),
'bbp_mark_topic_' . $topic_id
);
$title_attr = __( 'Discussion Mentions', 'buddyboss' );
if ( (int) $total_items > 1 ) {
$text = sprintf( __( 'You have %d new mentions', 'buddyboss' ), (int) $total_items );
$filter = 'bbp_multiple_new_subscription_notification';
} else {
if ( ! empty( $secondary_item_id ) ) {
$text = sprintf( __( '%3$s mentioned you in %2$s', 'buddyboss' ), (int) $total_items, $topic_title, bp_core_get_user_displayname( $secondary_item_id ) );
} else {
$text = sprintf( __( 'You have %1$d new mention to %2$s', 'buddyboss' ), (int) $total_items, $topic_title );
}
$filter = 'bbp_single_new_subscription_notification';
}
// WordPress Toolbar
if ( 'string' === $format ) {
$return = apply_filters( $filter, '<a href="' . esc_url( $topic_link ) . '" title="' . esc_attr( $title_attr ) . '">' . esc_html( $text ) . '</a>', (int) $total_items, $text, $topic_link );
// Deprecated BuddyBar
} else {
$return = apply_filters(
$filter,
array(
'text' => $text,
'link' => $topic_link,
),
$topic_link,
(int) $total_items,
$text,
$topic_title
);
}
/**
* @todo add title/description
*
* @since BuddyBoss 1.0.0
*/
do_action( 'bbp_format_buddypress_notifications', $action, $item_id, $secondary_item_id, $total_items );
return $return;
}
return $action;
}
add_filter( 'bp_notifications_get_notifications_for_user', 'bbp_format_buddypress_notifications', 10, 5 )
]]>
Hi – I’m testing a new woocommerce variable product which includes 3 variations. The variations are 2 different Learndash courses plus a third variation which includes both of the LD courses. The site also uses buddyboss theme/platform for discussion groups, so I’m using the WC Buddypress integration as well. Payments go through and email confirmation messages are received as normal, but this error appears on the confirmation page on the website SOMETIMES (not always):
Warning: array_key_exists() expects parameter 2 to be array, bool given in /home/customer/www/spiritualtransformationcourses.com/public_html/wp-content/plugins/wc4bp/class/wc4bp-notifications.php on line 54
so the error is occurring in the wc 4 buddypress plugin on line 54. but why is it happening and how do I fix this??
]]>Hi,
After 3.3.16 update, item name not show in minicart.
Thanks
Hello. I’m wondering if the paid version of this plugin would or could allow me to display the “linked” group of a product as a tab in the product page.
thanks
]]>Bought Pro as I was mislead to believe this plugin will allow me to display an authors products on their profile page from a referral on another site. But upon playing with features such as disabling shop tab, which it didn’t. Then tried adding a page to the profile tab, which it didn’t. Bought it and had it for less than 10 mins and what I need to work, doesn’t.
]]>Hello how are you?
I am using WPLMS to sell courses, and it uses BuddyPress and Woocommerce.
However, I need to integrate Buddypress fields with Woocommerce.
Does your plugin help me with this?
I would like to make field validations such as the CPF, and e-mail.
It is possible ?
Many Thanks
]]>I have created 4 profile fields under users and they are being displayed during checkout.
I have spent about 2 days trying to use javascript and some functions in the functions.php file but am unable to to pre-populate these 4 fields?
What am i doing wrong?
Where can i default these values for the 4 fields?
I am also using the wc4bp plugin.
These additional fields do not show up under the billing or shipping section.
How can i reference them?
There is no setting i can find in the wordpress to default these values .
Please help.
Hi,
is it possible to turn off the activity posting after a user purchased a product?
This is what is said in the plugin description, but I haven’t found how to deactivate this:
Always stay informed with the activity stream! All activities like reviews written by customers or purchases made by your customers are posted to the activity stream.
Thanks,
Tobias
This vendor got the plugin listed in the buddyboss platform “works with” index, but it sure seems not to work.
Installed plugin and on activation just got a blank admin page with the message “Sorry, you are not allowed to access this page.”
Installed WP troubleshooter and disabled everything but woocommerce and buddyboss platform, still doesn’t work. But sidebar menu item for the plugin did appear momentarily. But clicking it delivered the same blank admin error page, and the sidebar disappeared!
I’ve tried this on a couple of installs, too.
]]>I just installed the free version and I am having a hard time seeing what, if anything it does? It looks like nearly every feature is marked “pro”…so what’s even the point of the free version, other than to promote the pro version? Usually, there are actually features for us to benefit from…I see one tab that looks like it has free features, but I am not understanding them…can someone help me understand?
Even on this page: https://themekraft.com/products/woocommerce-buddypress-integration/ there is nothing listed at all under “starter”…sooooo….. ???
]]>Hi there
We are setting up a BP website, but we are also using WC Subscriptions, so when someone subscribes, they need to be able to start using WC Product Vendors.
Can this plus make their account type, a WooCommerce shop manager, to sell in this way?
Simon
]]>How do I disable the admin notice that asks me to install buddypress? I already have buddyboss platform installed.
]]>