Search Results for 'buddypress'
-
AuthorSearch Results
-
February 22, 2010 at 9:07 pm #64889
In reply to: Normal WordPress Themes?
peterverkooijen
ParticipantWould this plugin also help in upgrading a custom Buddypress 1.1.3 theme to 1.2?
I’ll try that later this week…
February 22, 2010 at 8:53 pm #64888In reply to: oEmbed for BuddyPress plugin – out now!
r-a-y
KeymasterLooks like grabbing the thumbnail might be doable.
But I’m not sure if the BP activity stream supports this dual-mode view you’re speaking of (activity stream gets one view, activity permalink gets another) since they both use the same template to render the activity.
I’m guessing not off the top of my head…
February 22, 2010 at 8:53 pm #64887In reply to: Plugin Release: BuddyPress Group Wikis
myislamicblog
ParticipantHey @D Cartwright
,I’ve installed your amazing and unique plugin, it went throught till the point i want to visit the group wiki, i see the message: “You do not currently have access to view any of the wiki pages of this group.” and im the admin and the page is public. (http://myislamicblog.com/groups/forums/wiki)
Plus, in the group/wiki admin, where it says click the (+) picture to add a page, it doesnt do anything and im not able to add other pages.
Any ideas??
Thank you in advance.
February 22, 2010 at 8:49 pm #64884David Lewis
ParticipantYup… it’s not a widget. Two options which would involved making a child theme. Don’t worry… it’s really simple: https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
- Make a child theme with a custom sidebar.php file and comment out or delete the login block of code.
- Make a child theme and add this line to your “style.css” file
#login-text, sidebar-login-form {display: none;}I suppose you could also try adding the code below to a “custom.php” file and putting it in your plugins directory (no child theme required)… but now I’m just getting silly. LOL (I haven’t tested this BTW).
<?php
add_action('wp_head', 'hide_login');
function hide_login() {
echo <<<CSS
<style type='text/css'>
#login-text, sidebar-login-form {display: none;}
</style>
CSS;
}
?>or even this! (very silly)
<?php
add_action('bp_before_sidebar_login_form', 'open_login_comment');
function open_login_comment() { echo '<!--' }
add_action('bp_after_sidebar_login_form', 'close_login_comment');
function close_login_comment() { echo '-->' }
?>So how to you intend for people to login? Just via the regular WordPress login?
February 22, 2010 at 8:44 pm #64881In reply to: Normal WordPress Themes?
David Lewis
ParticipantI’m not sure… but the plugin was released by Andy who is the main core developer for BuddyPress. I didn’t even know about the plugin until I responded to your post. I knew there was a thread on here about your question about a week ago… so I just did a search.
February 22, 2010 at 8:26 pm #64879In reply to: Normal WordPress Themes?
danka
ParticipantThanks a Lot, for fast replying and for the plugin!!!
I never noticed the existence of this one!
But, there are any plan of making it official part of Buddypress? It would be really useful.
Thanks Again. Best Regards.
February 22, 2010 at 8:15 pm #64878In reply to: oEmbed for BuddyPress plugin – out now!
modemlooper
ModeratorSuggestion: when you input a url and it auto embeds. I think for usability sake it should do a thumbnail like blog posts and @sbrajesh gallery plugin. The thumbnail would then be viewable full size in the permalink view. This could be done via css but the embed would need to be wrapped in the permalink.
February 22, 2010 at 8:11 pm #64877intimez
ParticipantThanks to you and your team for all the great work!
Here’s a reference to the issue I reported:
February 22, 2010 at 6:49 pm #64859In reply to: oEmbed for BuddyPress plugin – out now!
r-a-y
KeymasterWhat part of the group homepage are you looking at adding the player?
This plugin only adds oEmbed support to activity updates and forum posts.
—
It looks like ustream.tv has oEmbed support.
But as stated in the readme.txt FAQ, you’ll need to add support for uStream to WordPress’ oEmbed provider list in order to allow uStream embeds. I’m not going to be adding any additional oEmbed providers to WordPress’ default list.
If you know a little bit about code, you can read here to add support yourself:
https://codex.wordpress.org/Embeds#Adding_Support_For_An_oEmbed-Enabled_Site
If you need help adding uStream support, I’m *thinking* of offering premium support to extend the plugin for a nominal fee (similar to other Wp plugin developers).
Yeah I know, not what some people wanted to hear. Basic support will always be free though. Of course, I haven’t thought about this in depth – just a spur-of-the-moment idea your post gave me that is sure to ignite some negativity

Not sure if I’m actually going to go through the premium support model though.
—
Re: oEmbed Discovery plugin – that should also work. I listed this in the readme.txt and its potential problems if you don’t trust your user base.
Also not sure if the upcoming version of oEmbed for BP (v0.6) will work with the oEmbed Discovery plugin, since the new version of the plugin changes the logic of how URLs are sent to WP’s oEmbed to enhance performance on your DB . I’ll do some testing, but if the oEmbed Discovery plugin doesn’t work in v0.6, at least you’ll still have v0.51!
February 22, 2010 at 6:30 pm #64857In reply to: oEmbed for BuddyPress plugin – out now!
February 22, 2010 at 6:21 pm #64856In reply to: oEmbed for BuddyPress plugin – out now!
gregfielding
ParticipantWould this plugin allow embed codes from other services to display?
I’m running some “classroom” groups in my community and am trying to find a way to embed a ustream player directly onto the group (“classroom”) page. Our presentations and chats are live…so it wouldn’t work to have to upload a video to these other services first. (although it would be great for video archives).
Thoughts?
February 22, 2010 at 6:04 pm #64855In reply to: enable theme 1.2 sitewide
Andy Peatling
KeymasterThis is a WPMU issue, not BuddyPress, you need to get WPMU to force the BuddyPress theme as the default.
February 22, 2010 at 6:00 pm #64853In reply to: Layout problem/question with Buddypress Theme Pack
Craig
ParticipantHi Andrea…thanks for the tips and helping a newbie.. Yep, I see everything you’re describing…
But wow…wish I knew what I’m trying to accomplish exactly.
Am I supposed to just re-arrange the HTML elements? Match the div classes?
The other thing I don’t get is, both my page.php and BP template files seem to be calling/loading the sidebar element…if so, is only one of them supposed to?
I’ve never really hacked any WordPress layout before (new from Joomla)
I’m really interested in learning this aspect of WordPress though if anyone is interested in helping out.
February 22, 2010 at 5:34 pm #64850In reply to: Layout problem/question with Buddypress Theme Pack
Andrea Rennick
ParticipantIt’s not php, it’s HTML.
Your theme page up there has a “post” div aroudn the content area. make the BP template files match that. (Hint: look for the “content” div.)
February 22, 2010 at 5:31 pm #64848In reply to: BuddyPress-Links 0.3 FINAL is here at last
bpinspire
ParticipantThanks @MrMaz for the reply, I’m curious if someone have the same issue on single WP?
February 22, 2010 at 5:26 pm #64847In reply to: Layout problem/question with Buddypress Theme Pack
Craig
ParticipantIf anyone is willing to help…here’s my page.php…again I’m not sure what I need to re-arrange in the BP template files…if someone described what needs changing in one of them, I can figure out the rest…THX
<?php get_header(); ?>
<div class="post">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<small> <?php edit_post_link( __('Edit'), ' | ', ''); ?></small>
<?php the_content('<p>Read the rest of this entry »</p>'); ?>
<?php wp_link_pages(array('before' => '<p>Pages: ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
February 22, 2010 at 5:22 pm #64842In reply to: Edit the Site Wide Activity Widget
nickrita
ParticipantShould be an easy question, but nobody here to give an answer. It’s a pity, because I cannot use buddypress 1.2 if I cannot edit the activity stream.
February 22, 2010 at 5:17 pm #64841In reply to: Layout problem/question with Buddypress Theme Pack
Craig
ParticipantYes… I agree
I’m just wondering if someone might be willing to spell out the layout change that would fix the apparent problem. I’m a PHP newbie…sorry.
February 22, 2010 at 5:10 pm #64840In reply to: Activity Stream: Blog posts only
nickrita
ParticipantTo not show the friendships I deleted in index.php of activity-folder in the theme:
<?php if ( bp_is_active( ‘friends’ ) ) : ?> <option value=”friendship_accepted,friendship_created”><?php _e( ‘Show Friendship Connections’, ‘buddypress’ ) ?></option> <?php endif; ?>
BUT:
I don’t know how to only show blog posts. I think it will not work to delete all Options but NewBlogPosts, because this only gives the links and not what is shown as default option.
February 22, 2010 at 4:51 pm #64832In reply to: BuddyPress-Links 0.3 FINAL is here at last
MrMaz
ParticipantI have not done extensive testing on single WP, but I plan to before the next branch is released. Your issue sounds kind of bizarre, and I can’t think of any reason why that might be happening.
February 22, 2010 at 4:33 pm #64828In reply to: Layout problem/question with Buddypress Theme Pack
Andy Peatling
KeymasterEverything is explained on step three of the setup process.
Jeff Sayre
Participant@Erich73-
Haha! I appreciate the thought. I’m sure Automattic is able to afford to buy many things! I have no issue with Automattic. I do not expect them to pay me.
My code, like any other GPLed theme or plugin is freely available for all to use. So, if Automattic wants to merge my code into BP core, I would be honored and not expect anything else in return.
I hope that my posts (in this thread and on my website concerning this issue) do not come across as me being bitter. That is not the case.
I fully support and believe in the Open Source model as expressed via the GPL. I also believe in giving back to those Open Source projects from which you have benefited. I of course have done that with the hundreds of hours I’ve donated as a moderator on these forums.
The referenced-to post above was just my attempt to try to figure out a possible way where I could actually earn part of my living by creating great-quality plugins for the WordPress / BuddyPress community. I think talented programmers should be able to do that without having to resort to consulting. I have no interest in providing consulting services. I owned a consulting company for 7 years. It was great, but I have no need or intention of going back down that road.
So, enough said with all of this stuff about me and my needs. I appreciate people’s concerns and suggestions.
Let’s put this thread back on track. Please try to limit your comments to the future of privacy in BuddyPress and not about me!
February 22, 2010 at 3:54 pm #64817In reply to: Plugin Release: BuddyPress Group Wikis
D Cartwright
ParticipantNp.
Redownload it in 15 minutes. I messed it up
February 22, 2010 at 3:45 pm #64815In reply to: BuddyPress-Links 0.3 FINAL is here at last
bpinspire
ParticipantStrange as Admin after I active the plugin and add some links and try to log out I’m getting a blank page breaking the blog. Only when I deactivate the plugin evrything is back to normal. Any idea? Running WP 2.9.1 with BP1.2
February 22, 2010 at 3:45 pm #64814In reply to: STOP feature-polls for BP 1.3
finni3
Participant“False consensus effect – the tendency for people to overestimate the degree to which others agree with them.”
I don´t know if “STOP feature polls” was meant as a joke or not, but I can´t really see why this is a problem (if you are serious). People have different opinions on what is the most important features that should be developed, and what should be included in core.
For instance, letting users be able to post to blogs from the frontpage sounds like a perfect plugin match for me, as I have no real need for that. Still I don´t go around making several posts (saw you posted at the dev site as well) about how devs should STOP working on frontpage blogposting and focus on xxx feature instead.
Maybe the false concensus effect have blinded you a bit my friend.
To me it is important to keep in mind that testbp.org has over 15 000 users. We all have different plans for buddypress.

The way the dev team are trying to figure out what to develop next seems like a fair way to me:
(1)First getting suggestions, (2)then adding their professional opinion on what should be devoloped next and lastly (3) letting the users again be a part of the process by allowing us to vote on what we want the most. This will hopefully allow the highest percentage of people to be pleased.
EDIT: I was a bit slow you posted your reply in the mean time Erich.
-
AuthorSearch Results