-
Boone Gorges posted on the forum topic Hey, Upload size limit issues please help! in the group Third Party Components & Plugins: 15 years, 4 months ago
oops, I might have given you the wrong number.
But you’re wrong that that line is screwing it up. wp-config.php is loaded before this file. So if you’ve defined the constant there, it’ll never get past the first conditional in the code you just pasted.
-
Boone Gorges posted on the forum topic Hey, Upload size limit issues please help! in the group Third Party Components & Plugins: 15 years, 4 months ago
It’s defined in bp-core/bp-core-avatars.php, around line 34. But you’ll see that it shouldn’t be defining it there if you’ve already defined it in wp-config.php
-
Boone Gorges posted on the forum topic Hey, Upload size limit issues please help! in the group Third Party Components & Plugins: 15 years, 4 months ago
Yup, that’s right. BTW putting it in wp-config.php means that it won’t get overwritten when you upgrade BP or WP. Generally, wherever you see a constant in the code (with a CAPITAL_LETTER_NAME like that), you can do something similar to override the defaults in a future-proof way.
-
Boone Gorges posted on the forum topic Hey, Upload size limit issues please help! in the group Third Party Components & Plugins: 15 years, 4 months ago
Try putting a line in your wp-config.php file that says
define( 'BP_AVATAR_ORIGINAL_MAX_FILESIZE', 10 * 1024 );Change 10 * 1024 to whatever integer you’d like. -
Boone Gorges posted on the forum topic Basic footer in the group Creating & Extending: 15 years, 4 months ago
Right click -> View Source 😀
-
Boone Gorges posted on the forum topic How to add (\'per_page=35\') without messing up \"Load More\" link in the group Creating & Extending: 15 years, 4 months ago
@xrun – Did you check to see whether Load More is working correctly without this custom code? It’s hard to troubleshoot when I don’t know if your problem is related to the additional code.
-
Boone Gorges posted a new activity comment 15 years, 4 months ago
Copy header.php from bp-default into your child theme. Then edit header.php to take out the code referring to the Forums tab (starts with php if ( bp_is_active( ‘forums’ ) ) )
-
Boone Gorges posted on the forum topic Secure Invites for Mu in the group Creating & Extending: 15 years, 4 months ago
@bpisimone This plugin is separate from my invite plugin, but I’ve been thinking of putting some invite-only functionality into mine. Maybe @mrwiblog and I can join forces somehow 🙂
-
Boone Gorges started the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
The buddypress.org bug and enhancement list at http://123.writeboard.com/7555930eb348e12b5 (password cake; scroll down to the middle of the page to see the list) has undergone some very helpful reorganization and refinement over the last week or two. Now it’s time to start tackling the list. I’m working closely with Andy to figure out the exact…[Read more]
-
Boone Gorges posted on the forum topic Have buddypress not on the root site in the group Miscellaneous: 15 years, 4 months ago
Put this in your wp-config.php:
define( 'BP_ROOT_BLOG', 3 );Replace 3 with the number of the site where you’d like BP to live. -
Boone Gorges posted on the forum topic Strange BP/WPMU Problem in the group How-To and Troubleshooting: 15 years, 4 months ago
Your first issue is by design. The Site (Super if you’re on WP 3.0) Admin > Users option only appears when you activate Network mode (or are running WPMU). It shows everyone with an account on your installation. The Users > Users panel only shows accounts that have a user role on your blog (Subscriber, […]
-
Boone Gorges posted on the forum topic Buddypress and Wp 3.0 multi site problem. in the group How-To and Troubleshooting: 15 years, 4 months ago
‘Round these parts it’s OK to bump after 24 hours, not one hour.
Have you changed your permalinks to something other than the default setting? Dashboard > Settings > Permalinks
-
Boone Gorges posted on the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
I like the idea of having a no-js fallback, though it might take some manual theme edits to make it work right (is the default content of the forum textbox filtered?). In any case, not sure if it’s crucial for bp.org. Just mulling over whether it’s better to go with the bbcode-type solution (which is […]
-
Boone Gorges posted on the forum topic Expanding the codex in the group buddypress.org Ninjas: 15 years, 4 months ago
@mercime – Thanks for the detailed outline. That’ll be a good starting point for some of those individual pages. As for theme structure: to the best of my knowledge, nothing major is changing in theme structure in BP 1.3 (unlike in 1.1 and 1.2). And since 1.4 is pretty far out on the horizon, there’s no […]
-
Boone Gorges posted on the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
Yeah, I saw that. Just trying to figure how to fit it into the bp.org site. Having duplicate functionality probably isn’t ideal, so I’d want to pick one. And it’d be good to degrade gracefully. Have you checked the ajax in older browsers?
-
Boone Gorges posted on the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
Also, Rich, are you volunteering to modify the move topic plugin so that it fixes activity items 😀 ?
-
Boone Gorges posted on the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
-
Boone Gorges posted on the forum topic Not working with tribulant.com plug-ins in the group BuddyPress Group Email Subscription: 15 years, 4 months ago
Sounds like a Javascript conflict. It could be that those other plugins are loading their own version of jquery, or not enqueuing their scripts correctly, or maybe there’s a namespace issue. I will try to take a look when I get a chance, but maybe this is enough of a hint for you to troubleshoot […]
-
Boone Gorges posted on the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
Cool. That deserves a template tag. I’ll put one in functions.php for the purposes of the site. Core should be patched with this too – something of a no brainer
-
Boone Gorges posted on the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
- Load More
@boonebgorges
Active 2 years, 3 months ago
Hi Boone,
The edited header looks like this:
<html xmlns="http://www.w3.org/1999/xhtml" >
<meta http-equiv="Content-Type" content="; charset=” />
<meta name="generator" content="WordPress ” />
<link rel="stylesheet" href="” type=”text/css” media=”screen” />
<link rel="alternate" type="application/rss+xml" title=" |…[Read more]