Search Results for 'buddypress'
-
AuthorSearch Results
-
November 24, 2008 at 3:40 pm #33954
In reply to: BP is broke using IE7 (r571)
gogoplata
ParticipantThis is a known issue and an official fix is in the works, but in the meantime here’s a solution to improve the bar in IE7:
November 24, 2008 at 3:31 pm #33950In reply to: Updates on BuddyPress Release Status
gogoplata
ParticipantThanks for the update Andy. Looking forward to the upcoming features.
November 24, 2008 at 3:27 pm #33949In reply to: Updates on BuddyPress Release Status
thezohan10
MemberAndy, are the ie6 and ie7 issues gonna be fixed for the first beta release of the components?
Thanks,
Z
November 24, 2008 at 7:06 am #33947In reply to: picture and media not showing
kunefr
MemberIt is. The only plugin i’m using is the one for buddypress

By example, the Recent Blog Post is doing it .
November 23, 2008 at 8:19 am #33938In reply to: RTL – Loading alternate CSS for plugins
Yoav Farhi
ParticipantGreat.
Another small change that may be useful in the future:
In the Home theme, the ID’s for the columns are “right-column, center-column,left-column”,
Since the design may change (not only in RTL themes), you might want to rename theses to “column1, column2, column3”. More semantic.
Edit: created ticket #182.
November 23, 2008 at 5:30 am #33936In reply to: Group invites
creede
ParticipantTicket is here –> https://trac.buddypress.org/ticket/180
Glad I’m not the only one.
November 23, 2008 at 12:11 am #33932In reply to: I´m curious!
db2008
MemberI’m with you ‘ricwes’! I can’t wait to implement BuddyPress into my website!!! This is really exciting. I can’t wait to see how it develops.
I’m preparing a proposal for my company to use WordPress for blogging too.
November 22, 2008 at 9:43 pm #33931In reply to: Translating BuddyPress
Slava Abakumov
ModeratorOk, and what if you’ll try to manipulate with Definelang function in wp-config? Try change it everywhere (in wp-config and even in translated BP po and mo files to xx-XX.po/mo or XX-xx.po/mo). The same changes to all at once, I mean. It helped me some weeks ago.
November 22, 2008 at 7:56 pm #33929In reply to: /blogs/?random-blog redirects then WP redirects
Andy Peatling
KeymasterI think I’ve fixed it.
When using the BuddyPress function bp_core_do_catch_uri() via the ‘template_redirect’ action, there needs to be a remove_action() on redirect_canonical() to stop the BuddyPress redirection and WordPress redirection conflicting.
Basically adding a remove action on line 158 of bp-core-catchuri.php seems to work:
remove_action( ‘template_redirect’, ‘redirect_canonical’ );
add_action( ‘template_redirect’, ‘bp_core_do_catch_uri’ );
This seems to fix the problem of conflicting page names/group names.
November 22, 2008 at 7:08 pm #33928In reply to: /blogs/?random-blog redirects then WP redirects
Andy Peatling
KeymasterBuddyPress is doing its own thing.
Take a look at bp-core/bp-catch-uri.php
The URL is split up into variables and used within plugins. This is obviously interfering with some of the WordPress URL’s. I’m going to take a look at this and see if there is a solution to put pages on a exclude list.
November 22, 2008 at 2:41 pm #33925In reply to: Group invites
Deadpan110
MemberWhich ticket is it? can you paste a link?
But – Confirmed.
I had the same problem sending an invite using Revision 570 – the main blog’s admin email address received it but the invited person did not.
I’m not entirely sure on the 1st revision I installed when I discovered BuddyPress, but that seemed to fail sending invites entirely.
November 22, 2008 at 1:28 pm #33924In reply to: /blogs/?random-blog redirects then WP redirects
Deadpan110
MemberI have been doing a little more digging into this problem and the same bug effects:
- domain.com/blogs/*
- domain.com/groups/*
- domain.com/members/*
For instance, you have a post on your main blog called ‘testing BuddyPress’, and someone creates a group called ‘test’ – each time you try to access that group, WordPress will magically use its rewrite rules class and send you to the post entry.
To start with, I thought it may have been a WordPress bug, but no… its WordPress’ default behavior.
It seems that currently BuddyPress is doing its own URL rewriting and then WordPress takes over to convert domain.com/anything/you/like/except/THIS to find ‘THIS‘ as a possible candidate for a place to be.
I have no experience using the correct methods of plugging into the WordPress rewrite rules structure and I am still getting familiar with the ins and outs of BuddyPress – but I hope to keep people posted on my findings.
Firstly, https://codex.wordpress.org/Function_Reference/WP_Rewrite makes it sound simple to utilise the correct and preferred WordPress ways of doing things correctly.
Secondly, If this is the case – it is a good job this has been spotted early because I have a feeling that fixing BuddyPress to use the above would require some core changes.
For anyone interested in the way WordPress looks at its URL’s, paste the following into the <body> of your test theme’s header.php
<pre>
<?php global $wp_rewrite;
print_r($wp_rewrite);
?>
</pre>'The important part to look at is
[rules] => Arraythat has no mention of blogs, groups or members.Anyways…
I will continue getting to grips with BuddyPress internals and reporting my findings…
I hope this has helped someone getting closer to fixing!
November 21, 2008 at 11:08 pm #33920In reply to: Can’t change language & old members not showing up
advinci
ParticipantI got the language working. I changed the name of the WPMU language file from et.mo to et_ET.mo to match BP’s language file which had the name buddypress-et_ET.mo. Also changed it in wp-config. I’m not sure if BP’s language file had to have this name, but the German version was buddypress-de_DE.mo, so I made it like this.
So now it’s working but with minor problems. For example the plural format for time is wrong. It adds an s in the end of hours and minutes. But in Estonian there are different plural forms for different words… So I have no idea what to do with that.
November 21, 2008 at 5:31 pm #33914In reply to: Translating BuddyPress
verekoer
MemberThanks, slaFFik but this was already done, I think that problem is something else…
November 21, 2008 at 4:48 pm #33911In reply to: Translating BuddyPress
Slava Abakumov
ModeratorAlso you should do the same language changes in “Site Admin” – “Options” page
November 21, 2008 at 4:46 pm #33910In reply to: Translating BuddyPress
Slava Abakumov
ModeratorYou should put buddypress-xx.po and buddypress-xx.mo files into that folder and change your lang in the Dashboard > Settings.
Than open your wp-config.php file and change wplang variable to xx. Nothing else sould be done. I did exactly what I wrote and everything is ok.
November 21, 2008 at 3:57 pm #33909In reply to: Translating BuddyPress
verekoer
MemberI put translated .po and .mo files into wp-content/mu-plugins/bp-languages. In the Dashboard > Settings I changed the language but seems that .mo and .po file is not working…
November 21, 2008 at 3:25 pm #33907In reply to: Translating BuddyPress
Slava Abakumov
ModeratorAgree with Dudboi – POT file is needed.
I’m in a process of translating into Russian.
November 21, 2008 at 2:35 pm #33903In reply to: The News section
Alessandro Fazzi
ParticipantI can confirm the same as gogoplata… with one diff: I have buddypress home theme not on my main blog. I’ve changed in the code the ID of the blog in some php files and voilà .
Are all of you running the theme on blog with ID=1?
November 21, 2008 at 8:30 am #33898In reply to: Recommended Hosting for BuddyPress site?
gpo1
ParticipantWhat about igchosting.in, does it work well with BP?
November 21, 2008 at 5:37 am #33892In reply to: How do you put login/sign-up on admin bar
Deadpan110
MemberOK, I have submitted a better patch to allow complete customisation of the admin bar using add_action() WordPress hooks.
It also has log in and register and is available from https://trac.buddypress.org/ticket/174
Please Note, this patch will possibly not work if used on top of the previous patch, so make sure you have the original core files installed first.
November 20, 2008 at 8:46 pm #33885In reply to: Fatal error in line 243?
gogoplata
ParticipantAre you using the latest files from the trunk?:
https://trac.buddypress.org/browser/trunk
Any modifications?
November 20, 2008 at 8:38 pm #33884In reply to: I´m curious!
ricwes
ParticipantNothing special, just curious if someone is sitting on a intresting idea

Hate that I can´t be more of help because I don´t know how php! Wish I could help in some way…
All you who are developing Buddypress are my new idols!
November 20, 2008 at 8:26 pm #33881In reply to: Existing Theme, Buddypress Features
gogoplata
ParticipantIt’s basically as simple as copying the code and CSS from the buddypress-home file into your theme and tweaking it to match your site.
November 20, 2008 at 8:22 pm #33879gogoplata
ParticipantThe trunk version is available here:
https://trac.buddypress.org/browser/trunk
At the bottom of that page is a link to download all the files in .zip format. Give that a try on your site and you should have better luck with getting it to work.
-
AuthorSearch Results