Search Results for 'wordpress'
-
AuthorSearch Results
-
April 21, 2010 at 3:42 pm #74603
In reply to: Buddypress breadcrumbs
3sixty
ParticipantWow, cool. I didn’t know this API existed. https://wordpress.org/extend/plugins/bp-breadcrumbs/
I’m trying to figure it out now, but JJJ provided no documentation so far, unless it’s in the plugin file itself.
I tried this but it didn’t do anything:
bp_breadcrumbs_add('testcrumb', 'google.com');and
echo bp_breadcrumbs_add('mycrumb', 'yahoo.com');maybe it has to be an internal url, like /activity.
I’ll open the plugin file now.
April 21, 2010 at 2:01 pm #74591In reply to: Profile Hooks?
Boone Gorges
KeymasterDownload this plugin and check out the code: https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/ It will show you the basic method I used to modify specific xprofile fields. Short version: you can filter the output of xprofile fields in general, and then you use a conditional to detect the name of the profile field that you want. Not enormously elegant, but hopefully that code will get you part of the way there.
April 21, 2010 at 1:53 pm #74590Windhamdavid
Participantthe api eh? (a large percentage of shared hosts are poor quality, we’ll never be able to fix that) my take is that at it’s core, it’s “the missing extended user profile framework for WordPress”. It would, in my feeble opinion act primarily as a framework api for extending those profiles. Some of the issues and limitations are really presented by wordpress and mu.. not Buddypress and in much the same way that bp extended the wordpress user profiles/functions we should tackle those head on as had been done with the improvements in the BP1.2 registration. There are infinite ways to build on those relational database fields. Focus exclusively on bp_xprofile _fields, and _data. It’s not that I’m anti-activity stream and the terms social network, life stream or whatever just seem to incorporate user profiles into some sort of relational scheme, be it friends, followers, ‘like’-ing, sharing or chronological micro blogging. Extending the stability, functionality, and interactivity of each component is the goal, but I’d prefer to see no dependency among core elements with one another. It’s fairly simple to build out a “social network” in other popular content management systems by extending the user database fields and in my day to day practice, I typically use only about 20% of the Buddypress core components for a WordPress project. Even though the hype is in the activity stream and the extensions for it (more facebook or twitter like), I side with @stwc in that “It also means that the platform has to have a robust set of tools for the administrator and moderators of the community “. A community (or ‘social network’) is just a set of users and to me, key items are a small footprint on the database and tight the integration with the existing wordpress user roles, permissions, registration and management. The api should ideally be flexible enough to accommodate any possible relational data between user profiles that a plugin author may dream of. I think the core integration between user profiles and the activity/blogs/groups/forums/friends illustrate the foundation of the api and should be as unified, consistent, and simple as possible with very little dependency or overlap in functionality. This would be impetus for creating a more standardized way to interact with the xprofile and be a good foundation for a solid api. lastly, thanks @mrmaz for starting the thread, being pro-active, getting the trac and api.buddypress and generally illustrating the potential of a solid api in regards to how well your links plugin and others can interact with the core.
ps.. death to PHP4 and fsck backwards compat
April 21, 2010 at 12:46 pm #74582In reply to: Adding footer to subdomains outside WPMU/BP?
Boone Gorges
Keymaster@cocomozlo – If you just want static content in the footer – site information, credits, privacy notice, etc – your best bet is to copy the HTML produced by BuddyPress, put it into its own file, and then require it in your subdomains with a normal PHP require statement.
If you want dynamic information (latest posts, activity, etc) it’s going to be trickier. Those widgets are populated dynamically by WordPress, and so require WordPress to be loaded. The easiest way to make it work would be to load WP/BP in the background of your subdomains and then use the footer PHP provided by BP. You can start WP by requiring wp-load.php in the root of your WP directory.
Requiring WP on every page load is pretty intensive, though, especially if you’re running another CMS altogether on other subdomains. It’d be good to avoid it. A possible method: Write a BP function that writes the footer to a static file and refreshes it periodically, then include that html page in your subdomains. See http://blog.slaven.net.au/archives/2007/02/01/timing-is-everything-scheduling-in-wordpress/ for more on scheduling events (like a cache) in WP; check out a plugin like https://wordpress.org/extend/plugins/wp-cache/ for an example of WP caching in action.
April 21, 2010 at 10:50 am #74572In reply to: Convert a WordPress Theme to a BuddyPress Theme
Kevin Ryman
Participant“This is relevant to my interest.”
If you’re a developer please read https://buddypress.org/forums/topic/i-need-help-converting-existing-theme-into-a-buddpress-ready-theme and let me know if you can help me. This is a paid job. Please read my post at https://buddypress.org/forums/topic/i-need-help-converting-existing-theme-into-a-buddpress-ready-theme and let me know if you can help me. There are about 8 pages to edit.
April 21, 2010 at 9:36 am #74569In reply to: COMING IN FROM NING
Bowe
Participant1) This is indeed something that only comes with WPMU.. But WordPress 3.0 is almost ready and multi-networks (read=user blogs) are a option in 3.0.. So you might enable this feature for your community as soon as WP 3.0 is released.
2) You can add youtube videos into the activity stream by using the oEmbed Plugin created by Ray. https://wordpress.org/extend/plugins/oembed-for-buddypress/. Simply copy and paste the URL to the video into an Status Update, Reply or Blog Comment, and it’s gets embedded into the stream. Awesome!
3) Currently you have two options for this:
keep an eye on this topic: https://buddypress.org/forums/topic/bp-album-new-features-requests-and-discussion. It’s an album plugin which is shaping up nicely and offers albums for your users.
or check out http://www.buddydev.com which offers BP-Gallery. A media plugin which allows the creation of video, pictures and audio galleries. It’s currently almost in it’s final stages, but if you would like to use it you need to have a paid subscription.
I hope you enjoy BuddyPress
April 21, 2010 at 5:10 am #74548In reply to: change e-mail text ?
r-a-y
KeymasterUse DJPaul’s Welcome Pack 2.0:
https://wordpress.org/extend/plugins/welcome-pack/
Paul added customized emails in v2.0. Be sure to thank him!
April 20, 2010 at 10:49 pm #74500Anonymous User 96400
Inactivewp_enqueue_script is a wordpress function that lets you add javascript files to your site. Just put it in your themes functions.php file or a plugin file. The great thing about it is that it looks if that file has been included already. If it hasn’t only then does it load it. You can also specify dependencies, i.e. jQuery. This means that it will always load the dependencies first. You can also specify if you want to load the script in the header or the footer. Here’s the function:
wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer );More info here: https://codex.wordpress.org/Function_Reference/wp_enqueue_script
April 20, 2010 at 9:35 pm #74484In reply to: How do you access SVN?
3sixty
ParticipantArgh! The plugin is broken due to a foldername issue. I fixed it but can’t get the correct version to show up in the repo. Any ideas what I am doing wrong:
https://wordpress.org/support/topic/390071?replies=1#post-1484826
April 20, 2010 at 8:48 pm #74472In reply to: [New Plugin] BuddyPress Group Forums – Move Topic
3sixty
ParticipantThis is now in the plugin repo
https://wordpress.org/extend/plugins/buddypress-forums-move-topic-planned-split-and-merge-topic/
April 20, 2010 at 8:45 pm #74471Boone Gorges
KeymasterHi everyone. Sorry to pester, but I’m just about ready to launch another version of the plugin, with some new features. If you’re intrepid and in the mood to help, download the development version from https://wordpress.org/extend/plugins/invite-anyone/download/ and give it a go. New things to play with:
– Invite Anyone widget
– Sent invites screen is now sortable by column. See if it works like you’d expect
– Sent invites can be cleared from the screen, either individually, by clicking “clear all accepted” or “clear all invitations”
– Admin can now control whom members can invite to groups. See the final option on the admin panel to see what I mean.
Thanks as always for your suggestions and bug reports!
April 20, 2010 at 7:22 pm #74454In reply to: Disable /wp-admin/ for "normal" users
juanmaguerrero
Participant@smuda I totally agree with you, it just doesn’t look good if someone could go inside the “admin panel” of Facebook, for example (imagining such a thing exists
) it has nothing to do with your theme design, surely not customized, etc, etc. Even if they could not change any configuration (always talking of a social web with no “blogs for everyone” as is my case too).@etiviti (rich!)
Thanks for your help! I’ll try to apply that

@Paul Gibbs
I’ts fine, I understand, nevertheless I think this kind of questions/debates should be able to take place here since the people who asks are BP users and everything is related at some point. For example, WordPress gives us the admin panel and BP de “Social Layer” where one feature could be the “everything can be managed from the outside interface”… please don’t take this as a hard complaint
just my 2 cents
April 20, 2010 at 5:11 pm #74437In reply to: Badge Maker
warut
Participantnow can download from wordpress.org/extend/plugins/buddypress-badge/
April 20, 2010 at 5:11 pm #74436In reply to: WordPress database error
maverickguy
MemberI just wanted to update this post and supply more info to see if it helps get some answers. I am running wordpress on hostgator. My site was working fine until I used buddypress plugin. I also used the BP compatibility plugin since Im using Magazine Basic theme designed by Themes by bavotasan.com. When I deactivated BP, I could post updates to my blog fine. When BP is activated, I get the error I posted above. How can I install BP and post updates without getting the error message above?
Thanks!
Mike
April 20, 2010 at 4:58 pm #74434Jeff Sayre
Participant@viau5-
If you’ve discovered the plugin(s) that was causing your issue, please list it here so that if others have the same issue, it may help shed some light on their problem.
April 20, 2010 at 4:47 pm #74433In reply to: Newbie needs help with 4 design elements
dblast
ParticipantThanks folks, so far so good. I moved the tabs over fixed the background but I still have four fixes I need to do;
Here is an updated screenshot;
http://www.longislandmartialarts.org/screenshotbuddypress.jpg
#1 FIXED – By fixing the background graphic I exposed a rounded corner that I need to make straight. FIXED!
#2 I want to get rid of the search field in the header
#3 The white border from the content page extends past the sidebar. I want to get rid of that
#4 The text seems to be forced over by the avatar (upper left) is there a way to flow the text around that? It looks goofy with the big gap on the left side of the page and it’s waste space.
#5 Not illustrated, I’d like to move the avatar in the side menu under the Advanced text widget.
Again thanks for the help. I’ve been over to wordpress.org and help over there is scarce. Nice to see you folks willing to help out a newbie.
April 20, 2010 at 4:34 pm #74430In reply to: Adding blog tab on WP/BP install
devinday
MemberHi Andrea,
Thanks for stickin with my questions here

I do understand that single wordpress only has one blog. What I don’t understand is how to display that one blog to users.
on my buddypress (single wordpress) install I have the homepage showing the activity feed rather than the it showing the latest wordpress post. When I have this the blog seems to disappear entirely.
Can you tell me how I would create a tab (called blog) that would show all the blog posts instead of showing just a page I titled blog. I am a little lost on how to get the single blog showing up for users to easily find in the navigation.
I hope I made sense. Thanks Andrea.
BTW – Love your blog on WPMU – you have a lot of great tutorials and info. Great stuff.
April 20, 2010 at 4:09 pm #74426In reply to: Members Page Message
jstebbing
MemberWould a conditional shortcode plugin like this one work, even if hard coded? http://www.hostscope.com/wordpress-plugins/conditional-shortcodes-wordpress-plugin/
April 20, 2010 at 3:44 pm #74420viau5
ParticipantAWESOME! Thanks guys! I should have known that the problem wasn’t with Buddypress. I guess I’m gonna have to go through my plugins carefully when reinstalling. Hope I didn’t waste too much of your time with this.
April 20, 2010 at 3:22 pm #74416Jeff Sayre
ParticipantSo, to confirm, you’re running BP 1.2.3 and WPMU 2.9.2, correct?
Could it been that I have too many plugins and it’s slowing down the system???
At this stage I would assume it is being caused by a plugin conflict or an out-of-date plugin. The first action to take is what I detailed in this post:
https://buddypress.org/forums/topic/dashboard-failure-when-activate-buddypress#post-49572
If WP/BP works when running in the barebones configuration, then you can reasonable assume it is either one (or a combination of) your 3rd-party plugins or your custom theme (if using one). So, follow my instructions in that post to figure out which plugin is causing the issue. Once you’ve determined that, contact the plugin author and ask for assistance.
By the way, before installing and activating any plugins or custom themes, you should check to make sure that they are compatible with the versions of WP and BP you’re running.
April 20, 2010 at 2:53 pm #74415viau5
ParticipantIt’s the most recent version…. great…. when I was checking for the version, I got this error message (same as last night when this problem first occurred)
The page isn’t redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
* This problem can sometimes be caused by disabling or refusing to accept
cookies.
Could it been that I have too many plugins and it’s slowing down the system???
April 20, 2010 at 2:17 pm #74410Xevo
ParticipantSounds like an old problem, one which I haven’t heard in a while.
What version of WPMU are you running?
And you can also run buddypress on WPSA (stand alone).
April 20, 2010 at 1:28 pm #74403In reply to: Dashboard failure when activate buddypress
viau5
ParticipantI think I may be having similar issues. I had to move all my plugins out of my folder because my entire WordPress had crashed and I was getting nothing but a blank screen. (it seems like it was continously cycling through the plugins.php file) I got my site working again however, I dowloaded a fresh version of Buddypress and still the same thing. I really love this plugin and I want it back!
April 20, 2010 at 7:13 am #74366In reply to: Fatal Errors
qbuster
ParticipantI’m having the same error with theme Mandigo. I’m running wp 2.9.2 and buddypress Widgets 1.1.2 on a Linux host.
Having looked at the code, it breaks down at:
$wpmu = function_exists(‘is_site_admin’); //from functions.php
if ( !function_exists( ‘is_site_admin’ ) ) { //bp-core-wpabstraction.php
function is_site_admin() {
if ( current_user_can( ‘manage_options’ ) )
return true;
return false;
}
}
// if this is WordPress MU // from footer.php
if ($wpmu) {
$current_site = get_current_site();
In my case I am not running WP-MU but it appears bp-core-wpabstraction.php has a user ‘manage_options’ rights so the system thinks it is wp-mu and then can’t find the wp-mu function get_current_site() (which I presume was once unique to wp-mu but is now in wp 2.9.2)
April 20, 2010 at 5:35 am #74360In reply to: send mass email
paulhastings0
ParticipantHere’s a plugin for WPMU: https://wordpress.org/extend/plugins/sitewide-newsletter/
-
AuthorSearch Results