Search Results for 'buddypress'
-
Search Results
-
Hi Im trying to add 2 sidebard in the members/single/messages.php file. The first sidebar inserted just before the switch ( bp_current_action() ) :code works like a gem but adding a second sidebar after the php doesnt work. WordPress does not want to show up the side bar not even the </div>? This is a problem because i am trying to create left and right sidebars for my buddypress pages.
Topic: meta_filter and sort
Hi,
I am having trouble with a meta_filter in my groups-loop. Here is a gist with the filter function and its hook registration.
https://gist.github.com/moui72/cc1a32a39630a67596610cdadb84893a
It works as expected, except I would like the results to be sortable via the default order options as well as custom ones, but currently the sorting action resets my meta query.
The sorting I mean is via this thingy:
<label for="groups-order-by"><?php _e( 'Order By:', 'buddypress' ); ?></label> <select id="groups-order-by"> <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option> <option value="popular"><?php _e( 'Most Members', 'buddypress' ); ?></option> <option value="newest"><?php _e( 'Newly Created', 'buddypress' ); ?></option> <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option> <?php do_action( 'bp_groups_directory_order_options' ); ?> </select>The event handler for the above select is being added to the select object by some js, and I am not sure if that is due to buddypress or the parent theme (CBOX-theme) that I am using, but in any case it is sending an AJAX request to buddypress. As stated, these requests clear my meta_query.
I am currently using a simple GET form action to apply my filters, so I am guessing what I need to do is to loop my filters in as an AJAX request instead. Will that fix my issue?
Topic: page display with 3 columns
So I’ve added buddypress to our church website. I am having a difficult time in figuring out how to get the buddypress widgets to remain on all the buddypress pages so that each time a member accesses a different part of it, the column won’t display the default settings. Ours is setup to a 3 column page. I even tried setting it up as a full column with a sidebar and it just does not stick to the other pages. Any ideas how I can have all the buddypress pages display the widgets on the sidebars?
Hello,
I am using the BuddyBoss Theme OneSocial Marketplace. I required a ‘monthly’ paid membership option so I decided to use Paid Memberships Pro (I have chosen the Plus level of PMPro).
OneSocial uses BuddyPress for the community portion of the site.So how I would like the site to work is… Users choose a “membership level” via PMPro which manages their monthly subscriptions but they use BuddyPress Profile and Tools for their “community interactions”…
How do I push the User’s account to their BuddyPress Profile and NOT their PMPro profile??
thank you!
Topic: Buddypress + HyperDB
I’m trying to get HyperDB to work width Buddypress.
I’m trying to move bp_activity, bp_activity_meta, bp_notifications, notifications_meta, xprofile_data, xprofile_fields, bp_xprofile_groups, bp_xprofile_meta into there own ‘Buddypress’ database. But it does not work.
I’m getting this error: Undefined variable: server
Here is my current config:
$wpdb->add_database(array( 'host' => DB_HOST, 'user' => DB_USER, 'password' => DB_PASSWORD, 'name' => 'DATABASE-NAME', 'write' => 1, 'dataset' => 'bpress', ));else if(preg_match("/bp_activity/", $wpdb->table)){ return 'bpress'; }Witch preg_match should I use?
Anyone that is using HyperDB with Byddypress?
This problem has been there for a long time and will prevail in future too.
Cause for my problem
I have been using some 40 plugins in my site. There were few to change its extended profile field properties. E.g.- BuddyPress Xprofile Custom Fields Type
- Conditional Profile Fields for BuddyPress
- Advanced XProfile Fields for BuddyPress
Many plugins mean the site performance is low. So, I had to deactivate all the plugins and reactivate one by one. But I reactivated the plugins that I thought important. I did not activate Advanced XProfile Fields for BuddyPress plugin. There had been one field (birthday) type which is only available in that plugin. I had configured it as a ‘Required’ field. In the absence of the plugin Birthday field does not appear in the registration page. Therefore, whenever you press the Complete Sign Up button page reloads. So, removal of the field solves the issue.
Hello,
I have been quite happy with customizing buddypress, bbpress.
I have found 2 issues you need to know.
1. I am using less file and removed original css files.
/** Remove original bp css **/ function dequeue_buddypress() { wp_dequeue_style('bp-legacy-css'); wp_dequeue_style('bbp-default'); } add_action('wp_enqueue_scripts', 'dequeue_buddypress');However, I found that it also doesn’t get “cover image in single members, single groups”.
I have added it in a theme. I added all original css code into less file and have been working on customization.Is there any better way to remove original css and use my own less (css) file without losin cover image?
Is there anything more I lose if I remove the original css files?2. How can I get group member amount only NUMBERS.
bp_group_member_count()It gets with xx “members”. But I just need numbers of the group. I use it in groups-loop.php
Thank you,
Topic: User cannot access dashboard
I have a site with BuddyPress. We are experiencing issues with a user being able to get to the dashboard. She is able to log in but when she tries to go to the dashboard or any links on the admin bar it just keeps her in a loop on the welcome page. She has tried logging in from multiple different machines, different locations, and different browsers. I have her clear her cache and cookies and history and I clear the application pool. Any assistance would be great.
Hello everyone,
Currently im using Bp Portfolio plugin and on my activity stream, when subscribers update on their latest portfolio didn’t show up on the stream. (Only for admin role it works fine)
So, i added custom post type for the portfolio on custom.php, here are the code:
add_post_type_support( ‘bb_project’, ‘buddypress-activity’ ); function customize_page_tracking_args() {
// Check if the Activity component is active before using it.
if ( ! bp_is_active( ‘activity’ ) ) { return; }bp_activity_set_post_type_tracking_args(
‘page’, array( ‘action_id’ => ‘new_blog_page’,
‘bp_activity_admin_filter’ => __( ‘Published a new page’, ‘boss’ ),
‘bp_activity_front_filter’ => __( ‘Pages’, ‘boss’ ),
‘contexts’ => array( ‘activity’, ‘member’ ), ‘activity_comment’ => true,
‘bp_activity_new_post’ => __( ‘%1$s posted a new page‘, ‘boss’ ), ‘bp_activity_new_post_ms’ => __( ‘%1$s posted a new page, on the site %3$s’, ‘boss’ ), ‘position’ => 100, ) ); }add_action( ‘bp_init’, ‘customize_page_tracking_args’ );
It works however it didn’t display the featured image for the portfolio. Maybe im missing some code here plus im not really good at php.
Is there any help for me to fix this?
WordPress 4.7.5
BuddyPress 2.8.2
ExamfiloLegitimate users are unable to register at the site as no mail is sent for verification link. But spammers who may not complete sign up ?get verification and registered.How can this happen? Notifications and contact forms work nicely. Is it different email set ups in buddypress causing this issue?
But wordpress (after deactivating buddypress) alone can send the verification mail.
I tried with WP-SMTP mail plugin change. Tried to configure host environment. But failed. Can someone analyze?
Thank you in advance.WordPress 4.7.5
BuddyPress 2.8.2
Examfilo
Pressing the ‘Complete Sign Up. button does not send the email to the registering user after correct completion of the registration form. Instead it shows the completed form with empty password fields.
All went smoothly with more than 25 plugins. To troubleshoot I deactivated all plugins including buddypress and checked with wordpress registration. It worked. But activation of buddypress resulted the same problem.
I have tried with most in the forums discussed earlier, but failed up to now. Emails from contact forms work. WP-Mail-SMTP and BuddyPress are the activated plugins at the moment.
I think since this issue has been common with buddypress for long period, I will be helped by you guys. Thanks in advance.Hi I would much rather have setting page, notifcation page and message pages as a javascript popup in the header. Is there a way I could do this not to bothered about ajax as that stuff is a little confusing for me at the moemnt? For example, I know that I could use the messages loop to display messages but how can I have a compose message form and reply form aswell?
Also is there a loop that I can use to display settings?
Could I in theory just copy and paste everything from single/settings.php and put it in the header of my site by calling it or something?
Help would be great as there isnt any info online about this and this would allow me to break a bit more free out of the conventional buddypress layout.
Thank you.