Search Results for 'buddypress'
-
AuthorSearch Results
-
April 17, 2012 at 2:47 pm #133133
In reply to: call buddypress register form
sammygone
Memberits under the default buddypress theme, in the registration folder you will find the register.php
bp version 1.5.5April 17, 2012 at 2:16 pm #133132In reply to: call buddypress register form
MaTaX91
MemberI didn’t even find a register.php file in my install. Where is it at? and what version are you using?
April 17, 2012 at 8:39 am #133130In reply to: [resolved] How to edit Buddypress Profile Menu
markyeoj
ParticipantThanks, it wokrs!
April 17, 2012 at 7:53 am #133129In reply to: Buddypresss on Multisite – But Not on Root Site
@mercime
ParticipantSome basic information for multiple BuddyPress sites in one WP installation.
1. Install WordPress
2. Create a Network of your WP installation
3. Install/activate BuddyPress plugin
– BuddyPress is activated by default for the whole network. So by the same token, there is only one instance of BuddyPress for the whole network.4. Make your BuddyPress “multisite” (separate instances of BP in one WP installation)
a. BP Multi-Network plugin https://wordpress.org/extend/plugins/bp-multi-network/
– Requires either free https://wordpress.org/extend/plugins/wp-multi-network/
or the premium http://wpebooks.com/networks/
– In effect, you need to create networks out of each subsite of your original network,
then install the BuddyPress Multi-Network plugin to have separate BP installations in each
“sub-network” … you get what I mean
OR
b. BuddyPress Multi-Network plugin http://buddydev.com/plugins/buddypress-multi-network/
– simply, separate BP site for each WP subsite. You should check this outBest people to ask about the WP/BP Multi-Network plugins above are the plugin developers ;-p
April 17, 2012 at 7:27 am #133128In reply to: [resolved] How to edit Buddypress Profile Menu
@ChrisClayton
ParticipantAdding links to the profile nav can be done with the bp_core_new_nav_item() function.
Refer to Codex: https://codex.buddypress.org/developer-docs/functions/core/bp_core_new_nav_item/
April 17, 2012 at 7:13 am #133127In reply to: HTML in button fields
@mercime
ParticipantIs this in relation to this topic https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/php-redirect-issue/ ?
April 17, 2012 at 7:12 am #133126In reply to: [RESOLVED] Php redirect issue
@mercime
Participant@fmeroney you marked this thread as resolved but you’re basically asking the same thing in this topic https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/html-in-button-fields/
April 17, 2012 at 6:56 am #133125In reply to: [resolved] How to edit Buddypress Profile Menu
markyeoj
Participantthanks, it taught me in positioning, but what about adding a links on the menu?
April 17, 2012 at 6:17 am #133124In reply to: stop loading Site wide activity
@ChrisClayton
ParticipantWithin activity/activity-loop you will want to change bp_has_activities to include scope=friends.
CODEX: https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
April 17, 2012 at 6:08 am #133123In reply to: [resolved] How to edit Buddypress Profile Menu
@ChrisClayton
ParticipantTheirs no backend feature like WordPress’ has for navigation menus.
However, this might help…
http://bp-tricks.com/snippets/code/arrange-group-profile-navigation-menu/April 17, 2012 at 6:01 am #133122In reply to: [RESOLVED] Php redirect issue
@ChrisClayton
Participant@fmeroney Was this what you where after?
https://codex.wordpress.org/Function_Reference/wp_redirectWith bp_loggedin_user_domain() as the location
April 17, 2012 at 5:49 am #133121@ChrisClayton
Participantwoops, just noticed that i accidentally put in $bp->loggedin_user->domain – Sorry! change it to – $bp->displayed_user->domain
Should fix your issue assuming that it’s grabbing the author name correctly in the ‘loop’. [haven’t tested it] If it doesn’t work you may need to use (off the top of my head)
`<?php
$args = array( ‘author’ => bp_displayed_user_id() );$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
// Do Stuff (This is where you would put the_title, the_content etc. whatever you want to show)
endwhile;
endif;// Reset Post Data
wp_reset_postdata();
?>`April 17, 2012 at 5:24 am #133115mr9sky
Member@mrjarbenne, that looks fantastic.
I am also looking for an avatar chooser for my new members. So that they will at least have avatars corresponding to their gender.What Andrew Scott did with the Doppelme looks like an overkill for me.
But how does it actually work?
When they select the doppelme avatar, it automatically becomes the user’s buddypress profile avatar?
Maybe a default library of 10 images to choose from will be already a great addition
April 17, 2012 at 5:13 am #133114In reply to: Rearranging Extended Profile fields
April 17, 2012 at 5:07 am #133113In reply to: Rearranging Extended Profile fields
@mercime
ParticipantThe profile labels and data are rendered in table rows. You could copy over the profile-loop.php file to your child theme folder /themes/childtheme/members/single/profile/profile-loop.php and change the table/rows/columns into divs/spans etc.
April 17, 2012 at 3:16 am #133111In reply to: Child theme on buddypress default theme help
9087877
InactiveYou will need to know CSS to make changes such a colors, and know how to target to specific area you want to change. I suggest using firefox and firebug. Below I have attempted to show you what you can change and can not change as far as starting a child theme style.css. This commented section has to be included in your child themes folders style.css and the folder with the style.css needs to be placed within wp-content/themes and you have to activate it. If its left blank it just inherits the bp-default style.css. If you correctly target what you want to change then this child themes style.css will over-ride the bp-default style.css. Whatever you target and decide you want to change needs to be placed after the closing comment ( */ ) of the the below code with proper CSS syntax. I hope this in some way explains it a little more clearly.
`/*
Theme Name: BuddyPress Dusk /*This can be changed*/
Theme URI: http://example.org/themes/dusk/ /*This can be changed*/
Description: Dark theme for BuddyPress. /*This can be changed*/
Version: 1.0 /*This can be changed*/
Author: John Doe /*This can be changed*/
Author URI: http://example.org/ /*This can be changed*/
Template: bp-default /*This CAN NOT be changed*/
Tags: buddypress, two-column, grey, dark /*You need to have buddypress in the Tags, the rest (example: two-column, grey, dark can change) */
*/`April 17, 2012 at 12:58 am #133110Anonymous User 8418620
Inactive@ChrisClayton Thank you so much! It worked perfectly, thank you really. One last thing (to stop to being boring with you!! I’m??):
I’m wanting to make a new tab and a new subnav to show posts in the profile of each user in BuddyPress. Ex.:
If I made x posts, that will appear in that subnav my posts. I did this, it worked, but one thing: when you access a profile of another person, this tab will appear my posts, but the posts that should appear is of the person I’m visiting the profile. Why is this happens?Code that I used is the same loop of author.php themes:
April 17, 2012 at 12:48 am #133109In reply to: Want to change the word ‘friends’ to something else
@mercime
Participant== now my notification in the wp admin bar are not working ==
How is it not working? WP/BP versions? Have you done basic troubleshooting like changing to bp-default theme and/or deactivating plugins except BuddyPress?
April 17, 2012 at 12:39 am #133108In reply to: Buddypresss on Multisite – But Not on Root Site
bjkitchin
ParticipantJust checking in on this guys. If anyone has thoughts on this one happy to hear them.
April 17, 2012 at 12:02 am #133107In reply to: Edit Page button in admin bar is missing
@mercime
ParticipantAt this time, changes have been made to include support for upcoming WP 3.4. which is not kosher with your current WP 3.3.1 install
In the meantime, you can already make the change to include Edit link in admin bar within your /plugins/buddypress/bp-core/bp-core-adminbar.php file – https://buddypress.trac.wordpress.org/changeset/5958
April 16, 2012 at 11:18 pm #133103@mercime
Participant@bigjosh change to bp-default theme, then go to that group which was spelled incorrectly, and click Admin tab to edit name of group
April 16, 2012 at 11:15 pm #133102In reply to: [RESOLVED] Php redirect issue
@mercime
Participant@fmeroney as chrisclayton mentioned above, surround code with backticks ( ` ) the symbol between the parentheses
April 16, 2012 at 11:11 pm #133101In reply to: Redirect Issue
@mercime
ParticipantApril 16, 2012 at 8:52 pm #133098In reply to: [RESOLVED] Php redirect issue
@ChrisClayton
Participant@fmeroney – Your example was eaten by the forum software (it happens when you don’t use “backticks“ around your code)
But, i’m guessing this is what your looking for? https://wordpress.org/extend/plugins/bp-redirect-to-profile/
April 16, 2012 at 8:40 pm #133097In reply to: problems with buddypress site hosting
@ChrisClayton
Participant@lovefishing – Did you have any extra plugins installed? I’ve heard of people getting suspended for a BuddyPress plugin using too much CPU but not from using BuddyPress out of the box. (personally, i was able to get a site to 1000 active users on one site on hostgator shared hosting before i was forced to move)
Also remember that you where on borrowed time. but you can optimize it: https://codex.buddypress.org/buddypress-site-administration/improving-performance/
-
AuthorSearch Results