Search Results for 'wordpress'
-
AuthorSearch Results
-
August 13, 2011 at 9:43 pm #118359
aces
Participanthttps://buddypress.org/2011/05/buddypress-template-pack-1-1/
https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/
https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/August 13, 2011 at 3:18 pm #118335In reply to: BuddyPress 1.5 compatibility for plugins and themes
Boone Gorges
Keymaster@foxly Thanks. Yeah, it must be stripping iframe tags from non-Administrators. (And this is a separate install from wordpress.com, so it doesn’t have the googleapps shortcode.) Anyway, I’ve put them in there: https://codex.buddypress.org/releases/1-5-plugin-compatibility/
Not sure what’ll happen when a non-Admin edits the page; they may get stripped again. I’ll try to figure out a way around this.
August 13, 2011 at 6:19 am #118320In reply to: BuddyPress 1.5 compatibility for plugins and themes
foxly
Participant@boonebgorges We’ve spent the better part of an hour trying to debug the BP codex page, but it won’t render the Google Docs embed, even when we add it in the admin back end.
WordPress.com officially supports Google Docs embeds announcement, support page, and the embed works properly on several different test sites we tried it on. The problem seems exclusive to buddypress.org.
Could you guys up one of us to super admin for a bit so we can check if it’s stripping embeds by normal editors as some sort of spam control measure?
Thanks!
^F^
August 13, 2011 at 4:07 am #118315Menelik Seth
MemberAlright solved again. Turns out there was a mistake in my code. Here’s the breakdown:
Old Code:
`function cg_postcatagory( $post_id = false )
{
if ( empty( $post_id ) || empty( $_POST ) )
return false;$post_id = (int) $post_id;
$postmeta = $_POST;$cg_newmeta = ( cg_newmeta( $post_id, $postmeta ) ) ? true : false;
return $cg_newmeta;
}
add_action( ‘bp_forums_new_post’, ‘cg_postcatagory’ );`Initially I wanted the post to store custom metadata, but that turned out to be a pain in the neck to use, and unnecessarily complicated. So, I decided to store tags instead. The problem, I discovered, was that the function was using the post_id to store the tags, which apparently isn’t how it’s supposed to work. What I should have one was instead topic_id instead, since that’s what tags are attached to (according to the bb_terms_relationships table).
So I modified my function accordingly and ended up with
`function cg_postcatagory( $topic_id = false )
{
if ( empty( $topic_id ) || empty( $_POST ) )
return false;$topic_id = (int) $topic_id;
$postmeta = $_POST;$cg_newmeta = ( cg_newmeta( $topic_id, $postmeta ) ) ? true : false;
return $cg_newmeta;
}
add_action( ‘bp_forums_new_topic’, ‘cg_postcatagory’ );`And it worked, testing it on the latest stable WordPress (3.2.1) and BuddyPress (1.2.9) and so far so good. If the code is solid, I hope somebody benefits from this. if It isn’t, I hope somebody can point out the holes in it, so I can plug them up.
Will set the status of this thread to Resolved (permanently this time, I hope)
August 12, 2011 at 6:41 pm #118295In reply to: BuddyPress & Activity Stream Permalinks
r-a-y
KeymasterSitgmartyr – This issue has been reported and fixed, but unfortunately there will not be a public, new release under the 1.2 series because attention has shifted to 1.5.
However, you can patch and fix this yourself:
https://buddypress.trac.wordpress.org/changeset/4626Or download the 1.2 dev branch and overwrite your current “buddypress” folder:
https://buddypress.trac.wordpress.org/browser/branches/1.2 (scroll to the bottom and click on the ZIP download)Remove all your htaccess code that you’ve added as that isn’t related to this issue.
August 12, 2011 at 5:54 pm #118290In reply to: Migrating buddypress – groups are broken
wwwhatsup
MemberYes, I think you are missing the point. I’ve sucessfully moved wordpress. It’s buddy press that is giving the problem. It’s not wp-config.php but bp-config.php that I don;t appear to have.
August 12, 2011 at 3:00 pm #118281In reply to: Migrating buddypress – groups are broken
@mercime
Participanthttps://codex.wordpress.org/Changing_The_Site_URL
https://codex.wordpress.org/Moving_WordPress== If I don’t have bp-config.php I just create it inthe buddypress plugin directory, right? ==
The internal Forum installation process will automatically generate the “bb-config.php” at root of your install when you go through the process.August 12, 2011 at 2:25 pm #118277In reply to: BuddyPress 1.5 compatibility for plugins and themes
Boone Gorges
KeymasterThanks for posting that tutorial, @foxly. The ‘wp’/’admin_menu’ hook is a very old technique that has nonetheless continued to work. I’ve got that on my list of things to write about on bpdevel.wordpress.com. Maybe I’ll do so later today, and link to your very helpful wiki page.
August 12, 2011 at 11:15 am #118272Paul Wong-Gibbs
KeymasterWhat versions of WP and BP are you using, @esploded? What errors do you get in your web server’s error logs? I bet this is to do with https://bbpress.trac.wordpress.org/ticket/1486
August 12, 2011 at 6:31 am #118260In reply to: BuddyPress 1.5 compatibility for plugins and themes
Paul Wong-Gibbs
Keymaster> Will get that sorted trying to get the spreadsheet to work in the page to save time currently but will get it marked as not fail because of those.
If this is done, I’d argue that the “Excellent” ratings should just be a “pass”. The “excellent” rating, compared to the others, is subjective and is dependant on who tested the plugin (and their knowledge of PHP, WordPress and BuddyPress APIs, etc).
August 12, 2011 at 2:55 am #118251In reply to: Frisco Child Theme
Micheal Kennedy
ParticipantI just got the latest version a few hours ago. For me, the menu only looks okay if I don’t assign a menu to the theme in Appearance > Menus > Theme Locations. If I do set it, then it looks like it does in my image above.
Also, in the backend, I’m seeing this message:
“You’ll need to activate a BuddyPress-compatible theme to take advantage of all of BuddyPress’s features. We’ve bundled a default theme, but you can always install some other compatible themes or update your existing WordPress theme.”Also, in your profile > Activity tab > Personal (when viewing another member’s profile) / Mentions / Friends / Groups, there is no spacing above the first activity stream item
That’s all I could find!
Good job!August 12, 2011 at 2:01 am #118244Stigmartyr
Member@frizzo – sounds like you are looking to implement WPMU (multisite)

Here is a link to help get you started: https://codex.wordpress.org/Create_A_Network
The way I’m doing it, our main buddypress site is the master domain, all users from that site can use their accounts around any of our sub-blogs or domains. There’s even a premium plugin for domain name support so you’re not just limited to a subdirectory.
Hope this helps!
August 12, 2011 at 12:34 am #117047In reply to: Expire passwords
r-a-y
KeymasterOne way is to change all your user’s passwords with some generic-only-you-will-know password.
Then a user is forced to reset their password when s/he attempts to login next time.Read this post for some pointers (especially the ninja section):
http://digwp.com/2009/10/five-ways-to-change-your-wordpress-password/I should state that BuddyPress runs on top of WordPress, so this is technically a WordPress issue.
August 11, 2011 at 7:26 pm #118221In reply to: Admin Bar, lost a valuable feature
Paul Wong-Gibbs
KeymasterThat’ll either have been the BuddyBar, from BuddyPress, or perhaps the admin bar from WordPress 3.1+.
August 11, 2011 at 12:53 pm #118209In reply to: BuddyPress 1.5 compatibility for plugins and themes
Paul Wong-Gibbs
KeymasterI’m not sure if it’s good to fail a plugin purely because it has PHP warnings revealed with WP_DEBUG. Those warnings, if output to HTML rather than a log, can also cause problems with the rest of the plugin. We’re checking for BP 1.5 compatibility, not whether a plugin meets WordPress’ coding standards. Thoughts?
August 11, 2011 at 8:26 am #118201In reply to: Buddypress compatiblity with WordPress themes?
@mercime
ParticipantAugust 11, 2011 at 1:16 am #118182In reply to: Website crashed twice using BP
Boone Gorges
KeymasterWhat do you mean that the website “crashed”?
It’s highly, highly unlikely that BuddyPress would have caused you to lose any data. If, after activating BuddyPress, your screen goes white, it usually suggests that you have insufficient memory on your server. In that case, simply navigate to wp-content/plugins with an FTP client, and delete the buddypress folder. WordPress stores content separately from its program files, and your data is still safe.
Here is a very helpful codex page on “blank screens”, which is what I assume you mean by “crashed”: https://codex.buddypress.org/troubleshooting/blank-pages/
August 10, 2011 at 11:37 pm #118176In reply to: Favorite blog post
Tammie Lister
ModeratorSome may or may not fit what you are after here https://wordpress.org/extend/plugins/tags/favorite
August 10, 2011 at 11:33 pm #118174Tammie Lister
ModeratorNot tried it but using usual WordPress function logic wouldn’t user_id=1,6843 work?
August 10, 2011 at 10:46 pm #118171In reply to: BuddyPress 1.5 user fullname save/show errors
juanmaguerrero
Participant@boonebgorges I just added the changes shown on https://buddypress.trac.wordpress.org/changeset/4939 and it worked JUST FINE!!!! thanks a lot, man, really! Excuse my ignorance but what is the repo url of this “more-fixed-version” of bp? so that I can checkout this and test “up-to-date”
thanks again!August 10, 2011 at 8:49 pm #118162Nahum
ParticipantI’m revisiting this thread only because it happened to me again and the wp_bp_user_blogs table goes crazy with adding the superadmin to all sites and makes some subscribers of site as belonging to the site. And then some sites disappear from the table all together making them not appear in the My Blogs menu.
I came across these this week and I couldn’t help to think they might be related to this.
https://buddypress.trac.wordpress.org/ticket/3328
https://buddypress.trac.wordpress.org/ticket/2964What does the wp_bp_user_blogs responsible for exactly? is it to assign blogids to userids that are admin of that site, or any role on the site?
August 10, 2011 at 8:42 pm #118161In reply to: BuddyPress 1.5 user fullname save/show errors
Boone Gorges
KeymasterWhen’s the last time you svn upped your installation? Or are you using one of the BP 1.5 betas? I’ve been told that this issue has been identified and fixed since BP 1.5-beta-2: https://buddypress.trac.wordpress.org/ticket/3469#comment:1
August 10, 2011 at 8:33 pm #118159In reply to: BuddyPress 1.5 user fullname save/show errors
Boone Gorges
Keymasteroops, you answered my question before I asked it

Yes, that sounds like a bug. I have opened a Trac ticket, which you can follow for updates: https://buddypress.trac.wordpress.org/ticket/3469
August 10, 2011 at 5:38 pm #118148In reply to: Login Issues Redirect and Homepage
Caderial
ParticipantI don’t have any Caching plugins installed if that’s what you mean, otherwise i haven’t made any changes to anything on the default wordpress or Buddypress install. Should i be using some sort of Cacheing? Might this resolve my issue?
August 10, 2011 at 5:02 pm #118146 -
AuthorSearch Results