Search Results for 'buddypress'
-
AuthorSearch Results
-
October 5, 2009 at 10:10 pm #53897
In reply to: BuddyPress 1.1.1
abcde666
Participantgreat, thanks a lot also to the patch-submitters from the Community !
Will there be an announcement about BP 1.1.1 at the Blog of this page ?
October 5, 2009 at 8:47 pm #53893Andy Peatling
KeymasterRead this: https://codex.buddypress.org/developer-discussions/buddypress-forum/
Specifically the last section.
October 5, 2009 at 8:20 pm #53891In reply to: BuddyPress 1.1 and Forums
Paul Wong-Gibbs
Keymastertravellection, this topic has been marked as resolved. People won’t read it. If you haven’t already, make a new post.
October 5, 2009 at 8:16 pm #53890In reply to: Problems with dots im Member-URLs (in BP 1.1)
Paul Wong-Gibbs
KeymasterUpgrade to BP 1.1.1 and see https://trac.buddypress.org/ticket/1135#comment:6
October 5, 2009 at 8:05 pm #53889In reply to: Make your own custom BuddyPress page
John James Jacoby
KeymasterIt probably needs to be in the functions.php of the parent theme, and the template file itself should also probably be in the parent theme as well. I haven’t tested it any other way as I haven’t needed that particular kind of setup.
October 5, 2009 at 7:46 pm #53888In reply to: BuddyPress 1.1.1
outolumo
ParticipantAnnounces the immediate availability of…
*first to thank you*
October 5, 2009 at 6:59 pm #53886In reply to: Make your own custom BuddyPress page
bpisimone
ParticipantPutting it in plugins/bp-custom.php has not helped either. All I ever get is page not found.
define('BP_ABOUT_SLUG', 'about');
function bp_show_about_page() {
global $bp, $current_blog;
if ( $bp->current_component == BP_ABOUT_SLUG && $bp->current_action == '' ) {
// The first variable here must match the name of your template file below
bp_core_load_template( '/_inc/pages/about', true );
}
}
add_action( 'wp', 'bp_show_about_page', 2 );the file is located in _inc/pages/about.php
Can anyone see anything else?
October 5, 2009 at 5:57 pm #53884In reply to: Sign up page problem with 1.1
4779461
InactiveFollow the instructions on upgrading, pay close attention to the part about using a non-buddypress theme, because there were some changes made to the integration. I had the same problem and this page helped me out, I just need to tweek some stuff because it looks funny, but the essential function is all back. https://codex.buddypress.org/how-to-guides/upgrading-a-buddypress-1-0-theme-for-buddypress-1-1/
October 5, 2009 at 5:07 pm #53879In reply to: Make your own custom BuddyPress page
Paul Wong-Gibbs
KeymasterTry putting that into a file /plugins/bp-custom.php.
October 5, 2009 at 5:03 pm #53878In reply to: Blogs List
Paul Wong-Gibbs
KeymasterAlso, before trying that, deactivate *All* of your plugins other than BuddyPress. It may be a conflict somewhere.
October 5, 2009 at 4:38 pm #53876In reply to: BuddyPress Multilingual
abcde666
Participantwow – cool stuff to see somebody working on Multi-Language-plugin….this is what I would definitely need for my website.
is there a chance to switch into another language on the fly ?
Lets say being at the english-members-page, then clicking on “german”, would forward to the german-members-page (I would not need this feature though).
Thanks a lot for working on this !
October 5, 2009 at 4:36 pm #53875In reply to: Blogs List
Kailas
Participant@DJPaul: Thanks. Here is the info you want:
1. Which version of WPMU are you running?
2.8.4
2. Did you install WPMU as a directory or subdomain install?
As a directory (mywebsite.com/blogs)
3. If a directory install, is it in root or in a subdirectory?
Sub directory (mywebsite.com/blogs)
4. Did you upgraded from a previous version of WPMU? If so, from which version?
2.6 -> 2.7 -> 2.8.4
5. Was WPMU functioning properly before installing/upgrading BuddyPress?
Yes
6. Which version of BuddyPress (BP) are you running?
BP 1.1
7. Did you upgraded from a previous version of BP? If so, from which version?
I removed previous version 1.0.x and did fresh install of 1.1. Steps I followed:
– (Forgot to disable BP plugin and Profile field setup)
– Removed wp-content/bp-themes
– Removed wp-content/plugins/buddypress
– Uploaded BP 1.1 to wp-content/plugins
– Copied BP themes to wp-content/themes
– Activated BP plugin
– Set bp-default theme for root blog
8. Do you have any plugins other than BuddyPress installed and activated?
Yes many of them including Akismet, SI-Captcha, Profile Field Setup, etc
9. Are you using the standard BuddyPress themes or customized themes?
Standard: bp-default
10. Have you modified the core files in any way?
No
11. Do you have any custom functions in bp-custom.php?
No
12. If running bbPress, which version?
No
13. Please provide a list of any errors in your server’s log files.
None
Thanks
October 5, 2009 at 3:46 pm #53873In reply to: BuddyPress 1.1 and Forums
travellection
ParticipantI would like to ask if I can use simple press instead of bbpress? if so how would I be able to configure it?
Thanks?
October 5, 2009 at 3:34 pm #53870In reply to: Make your own custom BuddyPress page
chewbaker
ParticipantHey Guys, I still can’t get this to work? I am on bp ver 1.1
Maybe things got changed in the update that would effect the way this works? I really need to have custom pages for this to work for my site. Again, to recap, here is what I have done:
put the below code into : (wordpress mu and buddy press are installed into subfolder)
mysite/subfolder/wp-content/themes/bp-sn-parent/functions.php and created a page in the same directory called dashboard.php
CODE:
// creates custom page
define('BP_DASHBOARD_SLUG', 'dashboard');
function bp_show_dashboard_page() {
global $bp, $current_blog;
if ( $bp->current_component == BP_DASHBOARD_SLUG && $bp->current_action == '' ){
// The first variable here must match the name of your template file below
bp_core_load_template( 'dashboard', true );
} }
add_action( 'wp', 'bp_show_dashboard_page', 2 );
//
end custom page
URGENT: Need to figure this out!!!!
October 5, 2009 at 3:05 pm #53867In reply to: Trouble Upgrading?
Damon Cook
ParticipantMan my head is swirling from browsing the Forums for the right thread. I was trying to be good about not re-posting a similar topic/issue, but I give up. Hopefully this is the right spot?
I’ve upgraded my site. All was well, but the bp default theme admin bar keeps re-directing to the homepage. I try to see my profile and it sends me to the homepage. I’ve noticed that Buddypress.org is doing the same. I try to click on my name and it takes me to the Buddypress.org front page. Quite discouraging. suggestions?
I’ve tried the following, which I thought might help:
– cleared my browser cache
– turned off all site plugins, activate only BP
– it is not related to bp-themes location. I’ve read all of the threads on the proper placement and the bp-default theme is displaying fine
Please advise.
October 5, 2009 at 12:19 pm #53859In reply to: No output from the loop on BP1.1 admin blog
stwc
ParticipantResolved by changing permalink structure. Very strange, must be a bug, but I’ll take any win at this stage!
October 5, 2009 at 10:19 am #53854In reply to: wp-sigup.php and /register
4772092
InactiveThe solution reported by Graeme is correct, but did not solve my problem.
After changing the code in “login.php” I get this error:
Catchable fatal error: Object of class WP_Error could not be converted to string in / public_html / BuddyPress / wp-includes / WPMU-functions.php on line 107
October 5, 2009 at 8:28 am #53848In reply to: BP-FBConnect – usernames with foreign characters
Paul Wong-Gibbs
KeymasterAs much as I can tell, being one of those English-speaking imperialists to which you refer, WordPress has a good range of i18n stuff if developers use the right functions. If you think WordPress and BuddyPress seriously lack in these areas, then please by all means start a specific discussion thread on each product’s forums or file trac tickets/bug reports/patches.
Back on topic, I think socialpreneur’s on the money with this.
October 5, 2009 at 8:26 am #53847In reply to: Forums and Profile Fields
Paul Wong-Gibbs
KeymasterSounds like your MySQL database connection details aren’t proper. However, if the rest of your WPMU site works…
Was your previous bbpress install in a seperate database? (i.e. not in the same one as wpmu/buddypress)
October 5, 2009 at 8:25 am #53846In reply to: Blogs List
Paul Wong-Gibbs
KeymasterWorks for me, but we need more details to help you: https://buddypress.org/forums/topic/when-asking-for-support
October 5, 2009 at 8:22 am #53845In reply to: Installing BP1.1 but keeping WP Theme For Root Blog
Paul Wong-Gibbs
KeymasterOctober 5, 2009 at 8:21 am #53843In reply to: Can't find forum install function in 1.1
Paul Wong-Gibbs
KeymasterHad a quick look and it looks as though it should be there (“Forums Setup” under the BuddyPress menu).
October 5, 2009 at 4:40 am #53835In reply to: BuddyPress v 1.1
alexduvot
ParticipantOkay that seem to work
i uploaded the new themes, activated then in the site admin in MU
then i changeed to default BP 1.1 template in Appearance
then i activated the buddpress plugin
something is causing the error even with the default wpmu theme
so if someone simply installs wpmu then goto plugins and try to install budpress that way, they in trouble.
October 5, 2009 at 4:30 am #53834In reply to: BuddyPress v 1.1
alexduvot
ParticipantI got
Plugin could not be activated because it triggered a fatal error.
after fresh install
following steps in the installation
doing install from plugin addnew buddpress1.1
i’m going to try to upload the themes 1st then activate.
October 5, 2009 at 3:28 am #53833In reply to: BuddyPress v 1.1
alexduvot
ParticipantI am going to try a fresh install
of wordpress mu , the buddypress
starting over fresh
-
AuthorSearch Results