Search Results for 'buddypress'
-
AuthorSearch Results
-
May 30, 2009 at 9:21 pm #46351
In reply to: Users cannot access dashboard or write blogs
Paul Wong-Gibbs
KeymasterHi. Basics: What version of WPMU and BuddyPress are you using?
Also: What version of MySQL is your server running please? Also, I have heard BlueHost supports only subdirectory installs as it doesn’t support wildcard subdomains, so can you confirm you’re trying the subdirectory install?
If that last question makes no sense, try removing your WPMU / BP install and databases and try reuploading/reinstalling manually, not using SimpleScripts. A search on this forum has revelead at least one person saying that their problems on BlueHost went away after they did a manual install.
May 30, 2009 at 8:24 pm #46349In reply to: Users cannot access dashboard or write blogs
mratanas
ParticipantI just reinstalled BuddyPress. Someone mentioned I needed to remove the “www” from the installation, so I am trying this again.
May 30, 2009 at 6:58 pm #46346In reply to: Strange URLs in Site Wide Activity
May 30, 2009 at 5:05 pm #46343In reply to: Alphabetize Groups and Members?
Burt Adsit
ParticipantYou are not doing anything wrong. Stop trying to do it right.

Groups only comes in these flavors: active, newest, popular, random
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-site-groups-loop/
May 30, 2009 at 3:55 pm #46339In reply to: Creating links to profile pages
Scotm
ParticipantI’m using that plugin as well and I’ve asked that same question here on the forum with no success. However, whether you’re using that sidebar plugin or not, I’m still having trouble getting a clear answer on how to replace WP code linking to the author in your custom theme to the profile page in Buddypress.
In other words, how do I change <?php the_author_posts_link(); ?> from my custom home theme to <‘author’s buddypress profile link’> in order to reach that author’s profile page?
Thx
May 30, 2009 at 1:56 pm #46336In reply to: Alphabetize Groups and Members?
Burt Adsit
ParticipantThe default sort order for directories is ‘active’. It dispays the most recently active first in the directory. You can change that by using a different sort order in your theme. See the docs for the loops here:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/
In the default theme, the loop for members is controlled by /bpmember/directories/members/members-loop.php in the function:
bp_has_site_members( ‘type=active&per_page=10’ )
Changing type=active to type=alphabetical should get you there.
May 30, 2009 at 1:48 pm #46335In reply to: Leave Group
Burt Adsit
ParticipantQuestions without all the needed information such as bp, wpmu version numbers, a link to your site, get ignored.
My car won’t start. Why won’t my car start? Lack of information leads people, who are willing to help, to move on to somebody who is providing enough information to actually help them.
These are some pointers to help get you started.
May 30, 2009 at 10:49 am #46334In reply to: Forum Integration without Groups
Arturo
Participantgo in BuddyPress -> Component Setup -> bbpress forum and check “disable”.
May 30, 2009 at 10:36 am #46331In reply to: Change standard button into own graphic button ?
gaetanbuddypress
ParticipantMaybe have a look in this file, lines 586 (more or less):
/wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php
May 30, 2009 at 10:07 am #46330In reply to: incorrect links in sitewide activity
May 30, 2009 at 9:25 am #4632921green
ParticipantHey Erich,
i know a developer who is able to achieve this. They wrote me a private message on the german buddypress forum as a reply to my post:
Maybe we could work somehow together to get something suitable for both of us. If you are interested in the developer write me a PM and i sent you the details (you can write in german if you want).
May 30, 2009 at 8:10 am #46326In reply to: Fatal Error Upon Activation
Paul Wong-Gibbs
KeymasterYou are using WordPress instead of WordPress MU. BuddyPress requires WordPress MU currently.
May 30, 2009 at 7:15 am #46324In reply to: Styles not working on Member and Group pages.
KitWit
ParticipantJason–
Do you mean that your home page style isn’t showing up in the members and groups pages, i.e., you are still seeing the “Social Networking” logo and the orange, rather than your green theme? That you want those pages to match your home page theme?
If that’s what you’re concerned about, you have to change your CSS in a different place for those areas. They aren’t controlled by the same CSS that manages the main page of your Buddypress installation.
Your CSS for the groups and member pages are in the wp-content/bpthemes/bpmember folder. Your logo (logo.gif) is in the bpmember/images folder.
Make your changes there just as you did with your base.css for your bphome theme and you should be good to go.
May 30, 2009 at 2:13 am #46322Jeff Sayre
ParticipantBurt-
Very nice indeed! I’ll put this in the unofficial Skeleton Component v1.3.
May 30, 2009 at 12:24 am #46316Burt Adsit
ParticipantFor jeffsayre:
// Check for bp being loaded, if not try and load it
// Insures that bp is loaded before this plugin
if (!function_exists('bp_core_setup_globals')){
if ( file_exists( WP_PLUGIN_DIR . '/buddypress/bp-loader.php' ) ){
require_once( WP_PLUGIN_DIR . '/buddypress/bp-loader.php' );
}
else{
echo "BuddyPress is not installed!";
return;
}
}This seems to work Jeff. Just doing bp-core.php doesn’t. The loader is the one we need.
May 29, 2009 at 10:41 pm #46315abcde666
ParticipantHi 21green,
I am looking for exactly the same thing.
Is there a developer out there who is able to achieve this ?
If yes, please contact me.
e-mail: supersky@chello.at
May 29, 2009 at 7:20 pm #46311In reply to: fyi: WP-reCAPTCHA works fine with BuddyPress
Arturo
Participanti’ve instaled wp-recaptcha with the instruction in readme file but the error messages aren’t shown… any idea to resolve this problem? thanks
May 29, 2009 at 4:52 pm #46308In reply to: Black Avatars
Paul Wong-Gibbs
KeymasterSo as per the bit of error msg you posted (possibly unrelated to the blank avatar icon I think but anyway):
[Wed May 27 11:52:40 2009] [error] [client 66.249.71.151] File does not exist: /home/thehsm/public_html/wp-content/plugins/membership-site-memberwing/function.require-once
That is a) a garbled filename/file path and b) not part of BuddyPress. I suggest talking to the author of that plugin to try to find out what’s going on. There appears to be some specific instructions in that plugin’s readme.txt about where to locate the memberwing.php file.
May 29, 2009 at 2:42 pm #46301In reply to: Changing Profile Field Order
peterverkooijen
ParticipantThanks for the clear answer John James Jacoby.
I vote and added a long comment. The registration process is the heart of the system imho. I really hope it gets upgraded to a more mature standard before even thinking about adding lots more ‘cool’ features and ‘widgetizing everything’.
A more mature, flexible and extendable registration system would dramatically broaden the possible uses of Buddypress.
May 29, 2009 at 2:19 pm #46298In reply to: problem with hoard hunter plugin
Jeff Sayre
ParticipantDennyhalim-
I just took a quick visit to the Hoard Hunter plugin page. This is what is says about:
Hoard Hunter is an online treasure map game designed and developed for people who would like an easy (and fun) method of fund raising online. The system comprises of a custom plugin and integrated theme. The Hoard Hunter site is powered by WordPress MU (though the system will also run on standard WordPress) and uses a number of WordPress plugins to provide additional functionality.
My First thought is that I would not even attempt to use this with BuddyPress. This looks like a complicated plugin that relies on many other plugins and its own custom theme to do some complex stuff. It is ripe with problems waiting to happen.
Also, it is not clear if this plugin suite, as it really should be considered, works with WPMU 2.7.1. You need to contact the developer and ask. There does not seem to be an activity on that plugin’s thread for almost 6 months and the images do not load on the website. This is never a good sign.
As is stated above, Hoard Hunter is a “system [comprised] of a custom plugin and integrated theme” and it relies on “a number of WordPress plugins to provide additional functionality”. You are dealing with a potentially large mess here in figuring out what is going on.
As John and I both suggested, you need to deactivate the Hoard Hunter plugin and all other plugins that Hoard Hunter is using. Furthermore, you need to switch back to the default BuddyPress themes. In other words, to troubleshoot this issue, you need to strip down your install to the lowest common denominator and see if the problem goes away.
So, just using the BuddyPress plugins and no other WPMU plugins, and just using the standard, default BP themes, does the problem go away. If so, you then start working your way backwards, adding a plugin at a time until either everything works or you find the problem.
It could also be an issue with Hoard Hunter’s “integrated theme”.
I hope this is just a development install and not an ongoing WPMU community to which your trying to add BP. If it is an ongoing community, perhaps you should stick with what you have and forget using BP.
If you wish to continue troubleshooting, and you have important data to protect, please make sure you know what you are doing, that you are comfortable with troubleshooting this issue. You’ll need to make backups of your database, your themes, upload directories, plugins–in other words everything. Why? Because there are no guarantees.
May 29, 2009 at 1:33 pm #46293In reply to: Which BBPress version
Arturo
Participantthe latest version of bbPress is required so (RC-1).
if you have MU+BP up and running see this doc https://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt is the instruction to install and integrate bbPress in MU and BP.
May 29, 2009 at 12:59 pm #46289In reply to: Blog Avatar/Images
Jeff Sayre
ParticipantAs far as I know, currently this is not possible. It is more a WPMU issue than a BuddyPress issue.
However, there is a future enhancement ticket in trac to provide this functionality via BP. I do not think it has high priority on Andy’s list, but you never know!
Until then, you could look into using this premium plugin.
May 29, 2009 at 12:54 pm #46288In reply to: Friends link, plus
Windhamdavid
Participant1.. make sure the template file for your member theme contains /friends/index.php and everything is kosher there.. and then make sure that you don’t have another page/post named friends, and you don’t have a url rewrite rule for friends in your. htaccess file.
2. the avatar upload is most likely due to misconfig of the GD Library.
try here – https://buddypress.org/forums/topic.php?id=2454
3. default for the home page? did you change the theme? can you put up a link?
May 29, 2009 at 11:54 am #46286In reply to: BuddyPress Showoff: Post your links
andrewtrench
ParticipantAlpha version of a social network for African journalists/writers/bloggers/ etc. Using buddypress theme which is really great and clean with minor tweaks. Is this the first buddypress site in Africa?
May 29, 2009 at 11:45 am #46285Windhamdavid
Participantno.. you don’t want to paste it into a text widget..
You would use it as a custom loop in your theme.
But, that code does Not work (for me right now)
<?php if ( bp_has_topics() ) : ?> is always giving null…
and I’ve tried three or four incarnations of a custom loop based on the buddypress/forums/bp-forums-templatetags.php I had previously used sam’s bbpress live plugin successfully (same code)? I will return to this issue on monday unless some brilliant mind steps up to the plate over the weekend.
-
AuthorSearch Results