-
Ricochet replied to the question Inbox issue sends message to many users in the forum BuddyBoss Inbox 8 years, 8 months ago
@davejay Yes, you could put it in the functions.php file of your child theme, or in the bp-custom.php file in your plugins folder. If you’re not aware, you can create a file called bp-custom.php and put it in your plugins folder and it will be used only if buddypress is active. You can put any buddypress-related code in it. Useful for keeping…[Read more]
-
Ricochet replied to the question Inbox issue sends message to many users in the forum BuddyBoss Inbox 8 years, 8 months ago
This works for us. It does two things: 1. search all users not just friends 2. clear input field after you select from autosuggest list.
I’ll put it here in case it helps anyone else. No promises, though!
if(function_exists("bp_is_messages_component")) {
[Read more]
define( 'BP_MESSAGES_AUTOCOMPLETE_ALL', false );
$current_url =… -
Ricochet replied to the question Inbox issue sends message to many users in the forum BuddyBoss Inbox 8 years, 8 months ago
This works for us. I’ll put it here in case it helps anyone else. No promises!
if(function_exists("bp_is_messages_component")) {
define( 'BP_MESSAGES_AUTOCOMPLETE_ALL', false );
$current_url = bp_get_requested_url();if (strpos($current_url, 'compose') > 0) {
// Include the autocomplete JS for composing a message.…[Read more]
-
Ricochet replied to the question Inbox issue sends message to many users in the forum BuddyBoss Inbox 8 years, 10 months ago
Despite this being an issue with Buddypress itself, can BuddyBoss address it? It’s a major issue and there’s been zero activity on that buddypress ticket… We might have to wait a very long time for them.
-
Ricochet replied to the question Change "Blog" to "Posts" in menu/slug in the forum BuddyPress User Blog 8 years, 10 months ago
thank you!
-
Ricochet replied to the question Change "Blog" to "Posts" in menu/slug in the forum BuddyPress User Blog 8 years, 11 months ago
-
Ricochet started the question Change "Blog" to "Posts" in menu/slug in the forum BuddyPress User Blog 8 years, 11 months ago
I want to change the name of the profile menu items and the slugs from “Blog” to “Posts.”
What function can I hook into in order to do that?
-
Ricochet replied to the question Boss & S2Member Shortcodes in the forum Boss. theme 9 years ago
I ended up re-downloading both the s2Member plugin and s2Member-pro add-on from s2Member and reinstalled them. It now works. 🙂
-
Ricochet replied to the question Boss & S2Member Shortcodes in the forum Boss. theme 9 years ago
I’m still looking for a solution to this. Can’t make the switch to the new theme if new members can’t pay for memberships… :-/
-
Ricochet's profile was updated 9 years, 1 month ago
-
Ricochet replied to the question Boss & S2Member Shortcodes in the forum Boss. theme 9 years, 1 month ago
@vapvarun thank you! Very much appreciated.
-
Ricochet replied to the question Boss & S2Member Shortcodes in the forum Boss. theme 9 years, 1 month ago
Hi, @vapvarun,
The
[s2If]
shortcode works fine. It’s the[s2Member-Pro-PayPal-Form]
shortcodes that don’t work. We are moving to Boss theme from another theme, so I know that this is a theme conflict because the shortcode works with the other theme.@jeanpierre I’m actually using the shortcode in a custom template, not in the visual or text tab…[Read more]
-
Ricochet replied to the question Boss & S2Member Shortcodes in the forum Boss. theme 9 years, 1 month ago
@tjchester I am having this same problem.
@ignitionmktgny did you solve this?
I’m using a custom page template and the
[s2Member-Pro-PayPal-Form]
shortcodes are not rendering. However, I don’t think it has anything to do with the template, since I got the same result when I tried putting the shortcodes into theedit page
page in the wp-admin…[Read more] -
Ricochet replied to the question Debug Error in the forum Boss. theme 9 years, 1 month ago
Thank you.
-
Ricochet replied to the question Conflict with Global Search plugin in the forum Boss. theme 9 years, 1 month ago
OK, thank you.
-
Ricochet started the question Conflict with Global Search plugin in the forum Boss. theme 9 years, 1 month ago
I was going to create a new topic in BuddyPress Global Search support forum…but I don’t think there is one. Sorry if this is the wrong place for this comment.
I am getting this notice and warning when BuddyPress Global Search Plugin is activated. (I deactivated all plugins then reactivated one at a time until the notice and…[Read more]
-
Ricochet replied to the question $query->set( 'meta_query', $metaquery); breaks BuddyPanel in the forum Boss. theme 9 years, 1 month ago
This was apparently being caused by a conflict with another custom function. Problem solved.
-
Ricochet replied to the question Debug Error in the forum Boss. theme 9 years, 1 month ago
I am getting this notice on the backend with latest version of Boss. installed yesterday. (Boss Child Theme 2.0.4)
-
Ricochet started the question $query->set( 'meta_query', $metaquery); breaks BuddyPanel in the forum Boss. theme 9 years, 1 month ago
I’m attempting to alter the main_query with
add_action('pre_get_posts', 'ricochet_main_feed_query', 1 );
function ricochet_main_feed_query($query) {
if ($query->is_main_query() && is_front_page()) {
$metaquery = [['key' => 'promote',
'value' => 1,
'compare' => '=',
]];
$query->set( 'meta_query',…[Read more] -
Ricochet replied to the question Restrict Reply by Email to WP User Roles and/or BuddyBoss Member Types in the forum BuddyBoss Reply by Email 9 years, 2 months ago
I’d also like to know if this is possible. We use s2Member and have three member roles. If it were possible, we’d probably restrict Reply by Email to the top two tiers, making it an incentive for members to upgrade.
- Load More