Search Results for 'buddypress'
-
AuthorSearch Results
-
November 7, 2013 at 10:06 pm #173942
In reply to: Group activity is missing
shanebp
ModeratorTo over ride the BP template files for single Groups:
Copy this folder
plugins\buddypress\bp-templates\bp-legacy\buddypress\groups\single\Into your theme folder – make sure you use the same folder structure.
So when done, it should look like this:your-theme\buddypress\groups\single\
Then you can edit the files in the ‘single’ folder and maybe solve your problem.
November 7, 2013 at 7:40 pm #173938In reply to: iBuddy theme options
Miladtgh
ParticipantHi I want to keep “BuddyPress Sliding Login Panel” over the ibuddy header but I can’t. I can do this with another buddypress theme but I can’t do this with ibuddy.
November 7, 2013 at 6:29 pm #173935Bluecatz
ParticipantHi @mercime,
Just following up to see if you’ve had any luck determining what’s causing this problem as several more people seem to be experiencing it as well. Please let us know.
Thanks,
MichaelNovember 7, 2013 at 6:02 pm #173934In reply to: Integrated Buddypress into Theme, Now Styling Issues
noizeburger
Participanthi chobson,
could you please provide a url?
November 7, 2013 at 1:56 pm #173918Boone Gorges
KeymasterThere are probably a couple things happening:
1. There is a hardcoded check to
is_super_admin()inbp_core_process_spammer_status(). That check would fail during a cron job. BuddyPress should probably separate out the business logic of this function from the permissions checks. This would be appropriate for an enhancement ticket.2. Certain parts of BuddyPress are only loaded at some times. If you’re going to modify BP’s behavior, or use functions from BP, you need to make sure you’re waiting for BP to be loaded before doing so. It’s possible that load order works differently during cron than during regular page loads, so it’s extra important to pay attention to these rules. In short, anything that needs to hook to a BuddyPress action, or use BuddyPress functions, should be in files that are loaded at
'bp_include'or later. (See https://codex.buddypress.org/plugindev/checking-buddypress-is-active/). I’m glancing at wangguard-admin.php, and it looks like there are quite a few places where you’re attempting to do BP stuff in the main plugin file – try breaking it out into a separate, BP-specific file, which is loaded in the manner described in that link.If you can, you might also try turning up your error reporting level on your test installation, making sure that it’s going to your Apache error log or wp-content/debug.log. It could be that something’s happening that’s causing a non-fatal error, and your php.ini settings are too low for it to be showing up. wp-cron can be sensitive to that sort of thing.
November 7, 2013 at 8:57 am #173912In reply to: Activation email
Henry
MemberWelcome pack by Paul Gibbs will allow you to customise the text in all emails that get sent out via BuddyPress
https://wordpress.org/plugins/welcome-pack/With reference to the emails not getting through to users, perhaps try reverting to the default theme, deactivate all plugins (aside from BP) and see if the problem is still happening.
November 6, 2013 at 4:33 pm #173900In reply to: Remove "All Members" tab in Activity?
modemlooper
ModeratorHi @djouonanglandry,
Thanks for wanting to help users find solutions to enhance or fix their BuddyPress sites but I must ask that you not reply to users topics with requests for payment in exchange for your services.
This forum is volunteer based, the users here help each other out as BuddyPress is open source and free to use. Volunteer support is a way for the users to give back to the project.
You can however reply to paid support requests:
https://buddypress.org/support/forum/bp-jobs-board
http://jobs.wordpress.netOr try one of the many freelance sites.
November 6, 2013 at 4:12 pm #173898modemlooper
ModeratorNovember 6, 2013 at 2:04 pm #173896aces
ParticipantNovember 6, 2013 at 1:35 pm #173895raymond8
ParticipantThanks for your answer @modemlooper
I tried this but didn’t succeed yet :I enabled WordPress Network on site1 :
Site 1 configs are :
WordPress address (URL) for the site1 is : http://mydomain.com/site1
And the site adress (URL) : http://mydomain.comI added site2 to « my sites »
I can enable Buddypress on network but with the template of site1 (the main site) not site2
Is there a way to enable Buddypress on network from site2 ?And then I did a test by installing the WordPress network on site2, http://mydomain.com/site2 but then I can only add sites to http://mydomain.com/site2/…
Am I missing something ?
Thank you November 5, 2013 at 5:30 pm #173865In reply to: @-mentions in comments and blog post text
Henry
MemberThanks for helping to test @mercime
Trac ticket:
https://buddypress.trac.wordpress.org/ticket/5230November 5, 2013 at 5:01 pm #173862In reply to: No all-in-one event calendar plug-in for Buddypress?
sethshoultes
ParticipantHi Marc,
I think you have outlined a great feature set here. However, I think this is probably falling on deaf ears, here.
I am the co-founder of Event Espresso. We spent several thousand dollars to build a working integration with Buddypress a couple of years ago. Unfortunately for us, they rewrote the entire Buddypress system shortly after we released the integration to our beta testers and our integration stopped working. Since that happened, we have not had the resources to build another integration with Buddypress.
We may look into building another integration someday, once we are done rewriting our own system, but we will need more customers to vote on it and maybe even willing to crowd fund this particular integration. If you are interested in an integration with Buddypress and Event Espresso, please let us know in the Event Espresso support forums.
November 5, 2013 at 4:57 pm #173861In reply to: Private Message button only appears sometimes
Paul Wong-Gibbs
KeymasterHi @welshdemo
The theme’s fine. The problem is actually caused by a bug in our widgets (you’re using the Members list and the “Who’s online?” widgets). We’re tracking the bug here https://buddypress.trac.wordpress.org/ticket/5170 and currently aiming to fix it by the 2.0 release, which is probably 4 months away. If we get a fix before then, we’ll put it into a 1.9.x small release.
A workaround is to make sure that no BuddyPress widgets are rendered before the main content of the page. i.e. try moving the widgets to the right-hand column, or a widget area at the bottom of the page, or just removing the widgets.
November 5, 2013 at 4:52 pm #173860@mercime
Participant@jconti Thank YOU for an awesome plugin and for being proactive in spam prevention for BuddyPress. Two thumbs up 🙂
November 5, 2013 at 1:48 pm #173837In reply to: Avatar-less
aces
Participantwordpress/buddypress uses the template file ( ie footer.php ) in the child theme directory if it exists, otherwise it uses the parent’s file.
*.php files are simple text files and normally everything means something. Most things have opening and closing tags which you need to be aware of, but in general, what you put in the child theme’s file will then be used…
functions.php and style.css are loaded after the parent theme’s versions.
The only file a child theme needs is a style.css which will overwrite rules in the parent’s css
November 5, 2013 at 1:19 pm #173835In reply to: Avatar-less
aces
ParticipantActually I was trying to keep it simple and I don’t know what theme you are using.
Copy footer.php from the parent theme directory to your new child theme direcory and change that line to what you want.
If you are using bp-default then that line is https://buddypress.trac.wordpress.org/browser/tags/1.8.1/bp-themes/bp-default/footer.php#L15 – just replace the text between the paragraph tags with a simple text line
( or even the whole line as the <p> </p> tags arent’t critical but help with styling )
November 5, 2013 at 12:11 pm #173833Jose Conti
ParticipantNovember 5, 2013 at 10:44 am #173829In reply to: [Resolved] how can Modify Registration Form ?
obewong
ParticipantI think the page you are looking for is :
\plugins\buddypress\bp-templates\bp-legacy\buddypress\members\register.php
line 22.
hope this helps.
I agree, modifying a core file is bad, a template file is a little better 🙂
Just gotta remember to keep those back ups!
November 5, 2013 at 9:37 am #173825In reply to: [Resolved] Filter for notifications slug
Paul Wong-Gibbs
KeymasterNo, it’s hardcoded in a bunch of places, sorry. Looking to improve this in BuddyPress 2.0, but the effort might not be fully finished until some release after that one.
November 5, 2013 at 9:36 am #173824In reply to: bbPress to Activity import
Paul Wong-Gibbs
KeymasterIt sounds like you’ve run the importer that comes with bbPress 2. If BuddyPress and Activity were set up and working prior to you running that data import/migration, I would expect the Activity stream to be populated. If this isn’t the case, perhaps it is a bug. Might be worth a quick look on bbpress.org’s forums to see if the question has been asked before.
I’m not aware of any scripts or plugins that backfill the data for you.
November 5, 2013 at 9:34 am #173823In reply to: Member stats error
Paul Wong-Gibbs
KeymasterIt’s a problem with the buddypress-member-profile-stats plugin. That plugin hasn’t been updated since 2011-11-5, so I’m not particularly surprised there are problems. You’re probably best to try to find an alternative plugin to use.
November 5, 2013 at 6:42 am #173819willandmae
ParticipantWell I Believe I have left my site open long enough for anyone who needs to see the error in real time have the time to explore. I do know someone came online once and checked it out so I hope it was you @mercime … The test account is closed for now. As you can see there are ample other sites here as well that can share too. I hope someone can Help fix this problem… Thanks…
November 5, 2013 at 2:25 am #173816willandmae
Participant@bluecatz Thank you so Much for that. Just trying to help them and us to a fix. It is happening to quite a few folks. I so happen to like the default theme.
Thanks again!
November 5, 2013 at 2:23 am #173815In reply to: Avatar-less
aces
ParticipantThe main point of a child theme is that you can upgrade the parent theme and still keep your edits.
To create a child theme of bp default you need to create a new directory ie: /wp-content/themes/bp-child/
In that directory you need to create a style.css simple text file with a header at the top of the file ie:
/* Theme Name: A BP Child Thene Theme URI: http://buddypress.org Description: A Buddypress child theme. Version: 0.1 Author: Me Author URI: http://example.com Template: bp-default Tags: buddypress */The Template: bit is important. The /* and the */ ‘comment out’ what is between them so the browser doesn’t try to interpret as css.
After the header comes the style rules and properties such as were quoted above.
To follow through with an example from your other question using the bp-default theme.
First you need to copy footer.php from /wp-content/plugins/buddypress/bp-themes/bp-default/ into the /bp-child/ theme directory.
In that file should be the following line 15:
<p><?php printf( __( 'Proudly powered by <a href="%1$s">WordPress</a> and <a href="%2$s">BuddyPress</a>.', 'buddypress' ), 'http://wordpress.org', 'http://buddypress.org' ); ?></p>Replace that line with something like:
<p>© <?php echo date('Y'); ?><a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <?php bloginfo( 'name' ); ?></a>. </p>Put what you want between the paragraph tags ( <p> and </p> ) – it could just be simple text. Use a text editor not a word-processor…
Then preview the bp-child theme and the footer text should have been changed.
I would suggest backing up your files and database before attempting to edit files….
further info:
https://codex.buddypress.org/themes/building-a-buddypress-child-theme/
https://codex.wordpress.org/Function_Reference/get_bloginfoNovember 5, 2013 at 1:29 am #173811Bluecatz
Participant@Willamdmae, sorry, I missed that part. I have two sites, a production and a test site, both of which this is happening on. On the test site, I only have BuddyPress, the Chat and memberships plugins running, so I doubt that it’s being caused by any other plugins.
-
AuthorSearch Results