Search Results for 'buddypress'
-
AuthorSearch Results
-
November 7, 2009 at 6:37 pm #56150
In reply to: wp-sigup.php and /register
abcde666
Participantthis has been fixed, the page still looks kinda ugly though:
November 7, 2009 at 6:28 pm #56149In reply to: Themes or Styles for Member Pages in BP 1.1.2
John James Jacoby
KeymasterI would recommend making your own parent/child theme and use the bp-sn-parent as your guide.
To truly get the mileage you want out of your BuddyPress powered website, you will want to customize it fully. The parent/child setup is designed to let the parent theme be the “core” theme, and let child themes change the core design. You could also just make your own child theme and use bp-sn-parent as the parent, and then use your own custom CSS to make it look however you’d like.
November 7, 2009 at 6:20 pm #56148In reply to: surprising avatar behavior
John James Jacoby
Keymastergeorgef101, do you still have the bp-themes folder located in wp-content? If so, BuddyPress will think you’re using the old theme style and look for the 1.0 avatars. If not, make sure your folder permissions are set (I put mine to 777 to make sure it works, but you may want to do 755 depending) and then run the code above. It should rename all of your avatars accordingly and put them where they belong. Once that’s done, you shouldn’t need to delete or change anything.
November 7, 2009 at 6:14 pm #56146In reply to: Make your own custom BuddyPress page
Lriggle
Participant21CDB’s code works fine with my theme. I’d like my custom page to be in a sub-folder instead of in my root directory, though.
define('CS_INTUITION_SLUG', 'intuition');
function show_intuition_page()
{
bp_core_add_root_component(CS_INTUITION_SLUG);
}
add_action( 'plugins_loaded', 'show_intuition_page', 2 );
function bp_show_intuition_page() {
global $bp, $current_blog;
if ( $bp->current_component == CS_INTUITION_SLUG && $bp->current_action == '' )
{
// The first variable here must match the name of your template file below
bp_core_load_template( 'intuition', true );
}
}
add_action( 'wp', 'bp_show_intuition_page', 2 );When I remove the intuition.php file from my root directory, and make an intuition directory with an index.php in it, it doesn’t seem to work (I get 404’s). If I try and change what the value of the slug and the template are as well, I still get 404’s.
Ideas?
November 7, 2009 at 5:50 pm #56143In reply to: How to display avatars in normal theme at 125px?
Xevo
ParticipantI’d be interested in different sizes of avatars in buddypress, personally I don’t like or use gravatars, so don’t have a problem with that.
Besides, in the Netherlands nobody actually uses gravatar, since everyone uses Hyves (famous dutch social network) to blog and do other stuff.
November 7, 2009 at 1:58 pm #56135In reply to: New Plugin – BuddyPress Links – Beta Support
MrMaz
ParticipantProps to SlaFFik for pointing out a nasty bug which was breaking wire posts. The fix is in trunk, but until I have time to tag a new version here is the fix.
In bp-links.php change line 1546 from:
require_once ( BP_LINKS_PLUGIN_NAME . ‘/bp-links-notifications.php’ );
to
require_once ( BP_LINKS_PLUGIN_DIR . ‘/bp-links-notifications.php’ );
November 7, 2009 at 12:10 pm #56133In reply to: New Users Not Creating
Xevo
ParticipantAdd this to your functions.php. It’s written by Detective.
function rk_signup_redirect() {
if (strpos($_SERVER['REQUEST_URI'], 'wp-signup.php') !== false ) {
$url = 'http://domain.ext/register';
wp_redirect($url);
exit;
}
}
add_action('init', 'rk_signup_redirect');Change $url = ‘http://domain.ext/register’; into your own domain.
This’ll automatically redirect from the old signup page to the new buddypress signup page.
November 7, 2009 at 11:31 am #56131Sven Lehnert
ParticipantThanks allot @ all,
It helps me to make my decision.
I will wait until the end of the day
For a moment it looks like a tasty meal.
And I want to eat it without thinking.
I’m so hungry of a Media Gallery for buddypress

tomorrow will be big
November 7, 2009 at 11:15 am #56130In reply to: How to display avatars in normal theme at 125px?
Sven Lehnert
ParticipantIn the moment, I do what Andy has offered above.
Members:
<?php echo bp_core_fetch_avatar(
'item_id=' . get_the_author_id() . '&type=full&width=100&height=100' ) ?>Groups:
<?php echo bp_core_fetch_avatar( 'item_id=' . bp_get_the_site_group_id()
. '&object=group&type=full&width=100&height=100' ) ?>Just I think this is the same as doing it in the css.
I like to know how to change the original size at the moment when its created.
But I don’t want to define these with custom values in wp-config.php.
I’m looking for a solution to have control of the Avatar size in custom components.
for example: In the bp-events Plugin, I would like to change the Avatar format to a Flyer format.
Most of the Event Flyer, people want to upload, do not feed the Avatar size from Buddypress.
So they just get a cuted piece of there flayer.
I relay would like to change this.
November 7, 2009 at 6:48 am #56126In reply to: Using the Buddybar outside of WordPress
Xevo
ParticipantYou can make custom pages inside of buddypress.
https://buddypress.org/forums/topic/make-your-own-custom-buddypress-page
November 7, 2009 at 3:38 am #56125In reply to: How to display avatars in normal theme at 125px?
MrMaz
ParticipantBuddyPress creates two images for avatars. 150×150 and 50×50. Any other sizes you see are scaled by CSS.
If you really know what you are doing, you can define these with custom values in wp-config.php to change the real sizes of the files that are created, but I am not sure of any side effect that may occur.
define( ‘BP_AVATAR_THUMB_WIDTH’, 50 );
define( ‘BP_AVATAR_THUMB_HEIGHT’, 50 );
define( ‘BP_AVATAR_FULL_WIDTH’, 150 );
define( ‘BP_AVATAR_FULL_HEIGHT’, 150 );
If you are going to do this make sure you test extensively on a sandbox install first!
November 6, 2009 at 11:08 pm #56118In reply to: X-Profile Fields
r-a-y
KeymasterI don’t see this as well in BP 1.1+.
This was extremely useful!
But, I’m guessing if you already have these profile fields setup when you upgrade, these fields should still exist.
It’s only if you decide to create new x-profile fields that you won’t be able to use the CSV option.
—
EDIT: Added an enhancement ticket in Trac:
November 6, 2009 at 11:08 pm #56117In reply to: New Plugin – BuddyPress Links – Beta Support
Jean-Pierre Michaud
Participantje suis TREEEES patient Chouf1, je suggère mon nom si “par hasard” la disponibilité du traducteur officiel était compromise dûe à un événement impromptu… hey hey
btw MrMaz, i added your engine finally, with all its usage.
November 6, 2009 at 10:50 pm #56116In reply to: New Plugin – BuddyPress Links – Beta Support
November 6, 2009 at 10:16 pm #56112In reply to: buddypress causing apache2 segfault
Dennyhalim.com
Participanttried disabled bp
remove the whole buddypress,
re-install it.
all original, un-edited files.
default theme.
still segfault.
November 6, 2009 at 9:56 pm #56110jschires
ParticipantWhere do you get your ID to enable this plugin? Am I just totally missing this?
November 6, 2009 at 9:53 pm #56109In reply to: How to display avatars in normal theme at 125px?
Brajesh Singh
ParticipantWordpress /buddypress does not do anything special to images.By default the avatars are saved as square(same height and width),so if you keep the ratio,the image looks good as it gets scaled down by css,otherwise say you make the height and width different ,It gets stretched.just for clarification
November 6, 2009 at 9:50 pm #56107In reply to: Why is BuddyPress stripping my object or embed tags?
jschires
ParticipantI was not able to get any of these to work? I am fairly fimilular with the coding but no luck…has any succeeded with this?
November 6, 2009 at 9:42 pm #56106In reply to: http://USER1.domain.com not working at all!
Brajesh Singh
Participanthehe.. you are most welcome

Yeh buddypress.org is using buddypress but the theme is a custom theme which is not available freely
,so you may have to wait until Andy decides to make this theme available for everyone.but I don’t think so,as He will like to keep the look of this site unique
November 6, 2009 at 9:29 pm #56103Donnacha
ParticipantIt would be really good to see some sort of integrated video commenting – I believe that, for certain use cases, video commenting could be extremely useful but, so far, it has been hampered by clueless implementations (Seesmic, Viddler) which forced users to jump through registration hoops before they can actually record their message, killing the medium before it even had a chance to catch on.
As far as I can see, Kaltura does not currently offer any sort of video commenting but I think it would be a really could fit with the way in which you are trying to push the communal aspects of video.
November 6, 2009 at 9:22 pm #56102In reply to: http://USER1.domain.com not working at all!
5280425
InactiveYup, it is resolved with your great help. Thanks a lot. I will try to install WPMU on Add On’ed domain and see how it goes
Also, is BuddyPress.org using their BuddyPress or just a WordPress? Because this Theme is… Something beautiful
November 6, 2009 at 8:56 pm #56101In reply to: http://USER1.domain.com not working at all!
Brajesh Singh
Participanthi there
well,so your subdomain style issue is solved.
For the random non existing subdomain behavior is expected by wpmu.since you are using buddypress default theme ,so you will not be able to see wp-signup.php and it is one of the most discussed topic here in forum.just search it.
If you are trying to create forums (as you may be thinking of standalone forum in bbpress),this is not implemented in that way in buddypress.In buddypress ,the bbpress (internal integration) is used for creating forums with groups and they do not have a separate admin.You can enable forum from group admin screen for a particular group.
As far as I know and my experiences with shared hosting,you won’t be able to install wordpress mu on addon domains.If you are able to install wpmu on addon domain ,then buddypress should work without any problem.
November 6, 2009 at 8:51 pm #56100In reply to: Themes or Styles for Member Pages in BP 1.1.2
r-a-y
KeymasterYou can still use the old “bp-themes” format (for now anyway) as long as you haven’t deleted the “bp-themes” directory.
I’ve quoted the following from:
https://codex.buddypress.org/how-to-guides/upgrading-a-buddypress-1-0-theme-for-buddypress-1-1/
Firstly you can revert to the old BuddyPress 1.0 theme system. Simply recover your /wp-content/bp-themes/ folder. This will revert BuddyPress into compatibility mode. You will not see all of the new features added in 1.1, but you will gain from performance and code improvements.
But be advised that, from what I’ve heard, the old 2-way theme format is going be phased out eventually in a future BP release.
November 6, 2009 at 8:31 pm #56099In reply to: http://USER1.domain.com not working at all!
5280425
InactiveOk, it looks like it’s working after I did http://kb.siteground.com/article/How_to_enable_wildcard_subdomains.html
But then I now have a small issue. When I type in some random subdomain.mydomain.com it’s taking me to http://mydomain.com/wp-signup.php?new=subdomain but all blank!
What kind of a configuration did I miss? Also, I really have no idea hopw the bbForum works, I click on the “forum” and just can’t find a link to open up a new forum

Thanks a lot Brajesh! However, can you tell me how to uninstall the forum I have installed using BuddyPress and do a clean bbForum install and integrate them?
Also, one more big question
Let’s say I have a cPanel account, and have ability to Add On Domains. Say, I want my to install something like Joomla in my /public_html and then add a domain.com which means I also will have domain.com folder inside /public_html right? Can I install BuddyPress that way? Will it work just fine?
November 6, 2009 at 7:45 pm #56096In reply to: New Plugin – BuddyPress Links – Beta Support
MrMaz
ParticipantThank you for the bug report on the categories. I had been working on that several weeks back and ran into an issue with the redirect after save and obviously forgot to go back and complete it.
There is no way to make everyone happy with one slug name, so developers should be able to change it to whatever they like. In theory it should be possible for you to rename the slug by defining BP_LINKS_SLUG in wp-config.php, but I have not done any testing yet. If you want to be the first to test it, I would be happy to address any bugs that you might find.
-
AuthorSearch Results