Search Results for 'buddypress'
-
AuthorSearch Results
-
July 11, 2011 at 3:57 am #116107
johnnymestizo
ParticipantAdded this to wp-config.php whilst using bp-default
// Custom Buddypress slugs
define( ‘BP_ACTIVATION_SLUG’, ‘activate’ );
define( ‘BP_ACTIVITY_SLUG’, ‘activity’ );
define( ‘BP_BLOGS_SLUG’, ‘shops’ );
define( ‘BP_FORUMS_SLUG’, ‘discussions’ );
define( ‘BP_FRIENDS_SLUG’, ‘friends’ );
define( ‘BP_GROUPS_SLUG’, ‘groups’ );
define( ‘BP_MEMBERS_SLUG’, ‘members’ );
define( ‘BP_MESSAGES_SLUG’, ‘messages’ );
define( ‘BP_REGISTER_SLUG’, ‘register’ );
define( ‘BP_SEARCH_SLUG’, ‘search’ );
define( ‘BP_SETTINGS_SLUG’, ‘settings’ );
define( ‘BP_XPROFILE_SLUG’, ‘profile’ );/* That’s all, stop editing! Happy blogging. */
July 10, 2011 at 10:51 pm #116103In reply to: Terms of use?
Virtuali
MemberDuplicate: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/terms-of-use/
DO NOT duplicate topics, creating multiple topics will diminish your chances of getting support.
July 10, 2011 at 10:48 pm #116102In reply to: FB Connect With other required fields?
Virtuali
MemberPlease post this issue in the plugin’s group forum ( https://buddypress.org/community/groups/wp-fb-autoconnect/)
July 10, 2011 at 10:45 pm #116101In reply to: User Permissions Plugin?
Virtuali
MemberYou are perfectly capable of searching for the plugin you want, the bp list of plugins are here: https://buddypress.org/extend/plugins/
Also, it might be worth searching on google also
July 10, 2011 at 9:44 pm #116097lockamiz23
MemberI meant 1.2.9, (edit topic returns not found error)
July 10, 2011 at 7:38 pm #116091In reply to: Remove “Logout” from bp_get_loggedin_user_nav
David Carson
ParticipantYou’ll most likely want to create a replacement function for the function that adds the “My Account” section in the nav bar (see `bp_adminbar_account_menu()` in bp-core directory) and override it with your own custom function with the logout section removed using a `bp-custom.php` file.
This help page provides a good overview of what to do:
https://codex.buddypress.org/theme-development/modifying-the-buddypress-admin-bar/
July 10, 2011 at 3:57 pm #116083In reply to: Adding the admin bar to a php file.
NoahY
MemberIn case anyone googles here, the article posted by r-a-y works for different subdomains, but needs a bit of tweaking, based on this post:
Basically, we need to put the wordpress page with the adminbar only in an invisible iFrame and access its content from the parent.
To do this, first we add the iFrame to the external php / html file. Something like this works:
`
`
Next, we need to edit the `page-component.php` file, adding a head and body onload element:
`
document.domain = “site.com”
`
This sets document.domain to the same domain as we will specify in our external file. It also adds jQuery (needed for buddypress-ajax-chat on my site). Finally, it sets an onload event to tell the parent window to grab it’s content.
Next, we have to add some more javascript to the parent, along with the other links mentioned in the article above:
`document.domain=”sirimangalo.org”;
function getNav() {
var content = document.getElementById(‘bpsrc’).contentWindow.document.body.innerHTML;
document.getElementById(‘bpContainer’).innerHTML = content;
}`This sets the domain again, allowing the function to pass from the iFrame on up, and provides the function to grab the content of the source frame and output it to the “bpContainer” div.
July 10, 2011 at 2:37 pm #116081thinkluke
MemberI got the exact same issue here @tindell … featured image will not display in buddypress activty until I update it in the backend of wordpress manually
Has anyone come up with a solution? This is really frustrating!!!! Ah buddypressJuly 10, 2011 at 11:04 am #116077danbpfr
Participanthttps://codex.wordpress.org/Function_Reference/do_action
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/The function is in bp-themes/bp-default/members/members-loop.php]
Line 3 :July 10, 2011 at 8:39 am #116074In reply to: W3 Total Cache and Buddypress Log out issues
mafiasoph
Memberi think it has a problem with caching and with the cookies of your browser. Not so sure but why not try to log out then clear your cookies. If nothing will change maybe other members will help..^^
July 10, 2011 at 8:36 am #116073In reply to: W3 Total Cache and Buddypress Log out issues
mafiasoph
Memberi think it has a problem with caching and with the cookies of your browser. Not so sure but why not try to log out then clear your cookies. If nothing will change maybe other members will help..^^
July 10, 2011 at 4:19 am #116069In reply to: BuddyPress 1.2.9 update not showing up
Erlend
ParticipantI tried that method, and I ran into something kind of strange:
http://imgur.com/a/wFsMCDoes this mean the problem is on our end? Maybe we did a half-successful update or something… Still don’t understand what could cause this kind of disparity.
July 10, 2011 at 4:04 am #116068In reply to: Will BuddyPress Work with ANY WP Theme?
tjbrewers
ParticipantNever mind. I found my answer.
July 10, 2011 at 2:29 am #116067In reply to: BuddyPress 1.2.9 update not showing up
aces
ParticipantI had that problem….
I updated by ‘adding new’ plugin and searching for ‘buddypress’. Updated from there….
July 10, 2011 at 1:54 am #116066Erlend
ParticipantLooking at your website @hajakif it looks like you figured this out. Would you mind sharing your findings? We’re trying to set up CometChat on jmonkeyengine.org and we seem to be having similar set-up issues.
July 9, 2011 at 11:08 pm #116063In reply to: Echo Group Name?
Puck6633
MemberMake sure that you’ve called bp_has_groups() and bp_the_group(), otherwise all related template tags won’t do anything. See the BuddyPress Codex page on The Groups Loop for more.
If you want to grab the name of a single group by ID try this:
`
$group = new BP_Groups_Group($myGroupID, true);
echo $group->name;
`July 9, 2011 at 6:50 pm #116055In reply to: Integration with iBlogPro4
@mercime
Participanthttps://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/
Also, it would be better if you posted code at http://pastebin.com/ , click submit and post the generated URL here.
July 9, 2011 at 6:38 pm #116052In reply to: Move Buddypress from subfolder to root
@mercime
ParticipantWhat do you currently have at the root of your domain?
It would be pretty much the same as moving WordPress from subfolder to domain root or elsewhere.
Always backup database and server files to your computer hard drive before attempting the change, just in case.https://codex.wordpress.org/Moving_WordPress
https://codex.wordpress.org/Changing_The_Site_URLJuly 9, 2011 at 3:54 pm #116048In reply to: Image Slider, tabbed widget conflict with Buddypress
acha5066
Participantfail
July 9, 2011 at 10:48 am #116046Paul Wong-Gibbs
KeymasterWhat versions of WordPress and BuddyPress are you using? Has the URL stayed the same?
Also, I suggest you revert to a standard WordPress theme (e.g. twentyten) and disable all plugins. Go to Settings > Permalinks and re-select/save your choice. Reactivate BuddyPress. Hopefully no errors, and that twentyten continues to work ok.
Then switch back to the theme that you were using, and check the BuddyPress functionality.
July 9, 2011 at 2:25 am #116039In reply to: Notification on Profile Update
r-a-y
KeymasterHi Steve,
Missed your mentions.
do_actions can be found by searching for them. If you have a good search program, do a search for “do_action” throughout the /plugins/buddypress/ folder. (You’ll get a lot of results! It’s better to just sift through the code to find what you want though.)
As for specifics, the do_action for activity updates is “bp_activity_add”:
https://buddypress.trac.wordpress.org/browser/tags/1.2.9/bp-activity.php#L679The code snippet above will not work with this as the parameter for “bp_activity_add” is different.
July 9, 2011 at 2:17 am #116038In reply to: How do you enable user blog in buddypress 1.2.9?
r-a-y
KeymasterYou need to convert WordPress into a network before users can create individual blogs:
https://codex.wordpress.org/Create_A_Network
https://codex.buddypress.org/getting-started/configure-buddypress-components/#post-1855 (scroll down to “Blog tracking”)—
Or you might consider allowing your users to post on your current blog by making them an Author:
https://codex.wordpress.org/Roles_and_Capabilities#AuthorBy default, users are Subscribers.
July 9, 2011 at 2:11 am #116037In reply to: Notification on Profile Update
Steve
ParticipantHi,
I need the following: https://buddypress.trac.wordpress.org/ticket/2296
Yet WordPress have closed their ticket, can anyone offer some support on this? Where can I add the above code?
I need to know when someone changes their account email and also when someone updates their status.
July 9, 2011 at 12:00 am #116033In reply to: User Pages Not Working
@mercime
ParticipantThere could be a number of reasons for the errant behavior.
– WP/BP versions?
– BP Template Pack veriion?
– Have you deactivated all plugins except BuddyPress and changed to bp-default theme? Clear cache. Does same bad behavior return or is it fixed?
– When you say, “I could not edit my user info” do you mean your profile page or one of your user’s info?July 8, 2011 at 11:53 pm #116032In reply to: Adding widget areas to default theme?
@mercime
ParticipantFirst, do not make revisions in bp-default theme. Revisions will be overwritten when BP is upgraded.
Instead,
– create a child theme of bp-default theme, e.g. mybpproject,
https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
– create a functions.php file and put it in your child theme folder. Define new widget/s here (name, ID, etc)
– copy over the template file from bp-default theme to your child theme folder (following directory structure) then add the call to dynamic_sidebar in that template. -
AuthorSearch Results