Search Results for 'buddypress'
-
AuthorSearch Results
-
October 27, 2011 at 3:41 am #121767
lbrocka
Participant@djoep – would a link to your post on the bbpress forum be possible, I’m not finding it. The site we’re developing is much like the scenario you describe, we need sitewide forums for general discussions and group specific forums for groups with specialized interests. I’ve got it working 90%, but getting 404 errors on child forums in the sitewide forums and just now discovered that attempting to post a comment/reply in the group forum gives 404. We can’t wait for end of Nov as this site has to be live by 11/15.
October 27, 2011 at 1:07 am #122331In reply to: PHP 5.2.9 breaking things?
archonic
ParticipantThe issue has been unravelling here:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/cant-request-private-group-membership-you-do-not-have-access-to-this-group/I started from scratch on the production server here:
http://dhcworks.carleton.ca/version2/With fresh files and a fresh DB, the issue came up again. Staging is here and hasn’t had any problems:
http://dev.archonic.com/carleton/dhc/You can login using username and password “tester” on both sites. Note that on production, the buttons to join, leave, and request aren’t showing on the group directory or group home.
UPDATE: just noticed r-a-y’s patch here – https://buddypress.trac.wordpress.org/ticket/3687. I’ll try it and report back.
October 26, 2011 at 10:59 pm #122329In reply to: how to change user profile info and slug
Dainismichel
Participantso i wound up going into the db and changing it. am kinda considering dropping buddypress. i really appreciate your considerate response, for me, that has been an exception in the buddypress community.
October 26, 2011 at 9:59 pm #122328In reply to: how to change user profile info and slug
Dainismichel
Participanttried the plugin which lets me change my own display name,
how can i as admin change the member slug (or how can i let users change that slug themselves)?
how can i as admin change other user details?it’s odd because i don’t know how buddypress is “remembering” these names. also, i use wishlist member, and the names there are different. the wishlist member names are the same as the wordpress names, but buddypress seems to have gotten and be using names gathered somewhere else (maybe upon initial sign up)?
best,
dainis w michelOctober 26, 2011 at 9:22 pm #122325Quint
ParticipantThanks for replying. I ran it against an online validator which resulted in 9 errors (all of them having to do with declaration): for example, html, head, meta, title, link, etc “must be declared” in the header.php file.
Do you see anything here?
`<?php
/**
* Header Template
*
* Here we setup all logic and XHTML that is required for the header section of all screens.
*
*/
global $woo_options;
$filagree = get_template_directory_uri() . ‘/images/filagree.png’;
if ( isset( $woo_options ) && ( $woo_options == ‘true’ ) ) {if ( isset( $woo_options ) && ( $woo_options != ” ) ) { $filagree = $woo_options; } else {
$filagree = get_template_directory_uri() . ‘/images/filagree.png’;
}
}
?><html >
<meta charset="” />
<link rel="stylesheet" type="text/css"
href=”” media=”screen” />
<link rel="pingback" href="” />`
October 26, 2011 at 7:04 pm #122318In reply to: Pointed out a cause of the crop tool vanishing.
r-a-y
KeymasterI can’t duplicate this.
To test, I’m using the BuddyPress Default theme.
I navigated to my WP profile and changed my nickname to “New Name”. Then attempted to change my avatar and was able to.
October 26, 2011 at 6:58 pm #122316In reply to: Avatar Issues
r-a-y
KeymasterIt could be a theme issue as well. What happens if you switch the theme to BuddyPress Default? Does the crop box work properly? If so, check the CSS in your custom theme to see if you’re modifying the crop box.
October 26, 2011 at 6:54 pm #122314In reply to: Layout of Register page
r-a-y
KeymasterCheck your WP theme for a folder called “registration” and a file called “register.php” inside this folder.
If you don’t have this folder and file, copy it over from /plugins/buddypress/bp-themes/bp-default/registration/. See if that fixes your problems.
If you have the register.php template, open it up and customize the layout; you’ll need a tiny bit of experience with HTML and CSS to do this.
October 26, 2011 at 6:44 pm #122434In reply to: User documentation
r-a-y
KeymasterThe only way to import generated profile fields at the moment is to do a straight database export of the xprofile field tables and then import them into your new site. (These database tables are “wp_bp_xprofile_fields” and “wp_bp_xprofile_groups” by default.)
The codex is basically a WordPress blog. I believe everyone who has an account with buddypress.org should be able to login at codex.wordpress.org/wp-admin/ and post something. Though, your post might be held as a draft until someone with higher permissions can look at it.
If you have ideas for codex articles, please feel free to post them. If you encounter problems, let us know.
There isn’t a single document to reference for documentation. I don’t believe WordPress has a document like that available on their codex. (I could be wrong though!)
October 26, 2011 at 6:36 pm #122433In reply to: Language files deleted after upgrading #2
r-a-y
KeymasterRead this codex article to properly customize language files for BuddyPress:
https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/October 26, 2011 at 5:45 pm #122432In reply to: Language files deleted after upgrading #2
Boone Gorges
Keymaster> You need to convert that .pot into a .mo file.
I think that you also need to change the file name so that it includes a text domain, and then specify that textdomain in your config file. Eg, buddypress-BBG.mo, and `define( ‘WPLANG’, ‘BBG’ );` (I think.)
October 26, 2011 at 5:06 pm #122429In reply to: how to change user profile info and slug
modemlooper
ModeratorDid you change it in the database?
Allow Your Users to Change their Username on your BuddyPress Based site
October 26, 2011 at 4:46 pm #122425In reply to: Language files deleted after upgrading #2
agent314
MemberI did this thinking that it would work like a child theme, but nothing seems to change… so I am assuming this is just for “storage”… ?
wp-content/languages/buddypress.pot
I’ve made a couple of changes in the language file but don’t see them on the site. No caching used.
October 26, 2011 at 4:27 pm #122422In reply to: Hide Login Form
@mercime
ParticipantCreate a child theme of bp-default theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
Copy over sidebar.php from bp-default theme into your child theme’s folder https://buddypress.trac.wordpress.org/browser/tags/1.5.1/bp-themes/bp-default/sidebar.php
Remove lines 29 to 58October 26, 2011 at 1:33 pm #122359In reply to: User documentation
James Carroll
MemberI, too, am looking for documentation. I found the BuddyPress codex [1]. However, I find it somewhat lacking. Is it a wiki like the WordPress Codex[2]? If so, I may add what I learn to help others.
Ideally, I am looking for a single-document version of the documentation. I would like to print it and have it as a reference as I work. Has that been done before? What would it take to write a script to combine the existing docs at [1] into a single document (HTML, PDF, etc.)?
@mercime, I am specifically looking for information about user profile fields: I’d like to import an existing set of user fields. I haven’t searched the plugins yet; I’m still trying to get oriented to the BuddyPress support system. As for “submitting articles,” where do the articles live? How do I submit one?
Thanks!
[1] https://codex.buddypress.org/home/
[2] https://codex.wordpress.org/Help:ContentsOctober 26, 2011 at 1:15 pm #122358In reply to: How to Share/Repost Friends’ Status/Activity?
Benoit Hennegrave
ParticipantHi @nicolez, have you found a solution yet?
October 26, 2011 at 12:37 pm #122357rudu
Memberi would really like to know more about this…….i m very new to wordpress and buddypress…..this is my site http://theainet.net…i have added more fields on registration page but i could nt found it on dashboard.,,,
October 26, 2011 at 9:23 am #122353In reply to: problem with member list page
@mercime
ParticipantPagination on Members Directory is working for me.
The problem that I see is that your left sidebar dropped down to below content and comments div in your BP pages. Make sure you follow the instructions in Step 3 of the BP Template Pack compatibility process.
October 26, 2011 at 6:11 am #122349In reply to: Can’t use many features on buddypress.org
Paul Wong-Gibbs
Keymasternanchante2 – no need to post twice.
We know there are have been, and continue to be, issues with bp.org. Work is being done on a redesign.
October 26, 2011 at 4:30 am #122345In reply to: Buddypress Notifications Manager : My first plugin
shackeelck
Participantbut the download link http://mydev.dz-tchat.com/buddypress-notifications-manager-bpnm.html is not available now !! Is there a new link ?
Thanks in advance!October 26, 2011 at 4:24 am #122344In reply to: Buddypress 1.5 on multisite
mrjarbenne
ParticipantYou might what to look at something like this: https://wordpress.org/extend/plugins/bowe-codes/ to help you easily post that information in multiple areas.
October 26, 2011 at 3:39 am #122340In reply to: [Resolved] Compatibility with InStyle Theme
Angie
Participant@mercime
here’s the url
http://www.welcometokl.com/activity/October 26, 2011 at 2:51 am #122338In reply to: Compatibility with Monochrome theme
@mercime
ParticipantBP template pack walkthroughs to help you out
1st method
– https://buddypress.org/community/groups/installing-buddypress/forum/topic/compatibility-issue-with-mammoth-theme/2nd method
– https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-eleven-bp-1-5/
– https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/
–October 26, 2011 at 2:40 am #122337In reply to: [Resolved] Compatibility with InStyle Theme
@mercime
Participant@namzar – screenshot of the problem or better yet, URL to specific page would be welcome.
October 26, 2011 at 2:36 am #122336In reply to: Upload Directory Filtering Bug
chroniko
ParticipantSame problem here. I temporarily solved by using
remove_all_filters('upload_dir');in my theme. I hope for a better solution in the next buddypress core update. -
AuthorSearch Results