Search Results for 'buddypress'
-
AuthorSearch Results
-
November 18, 2010 at 7:31 pm #98615
In reply to: Limit title characters
ElevenTwenty2
MemberHere’s what I came up with and it works the way I need it..
I added the following function to the “buddypress/bp-forums/bp-forums-templatetags.php” file.
`function bp_the_short_topic_title() {
echo bp_get_the_short_topic_title();
}
function bp_get_the_short_topic_title() {
global $forum_template;
$topic = $forum_template->topic->topic_title;if (strlen($topic) > 35)
{
$output = substr($topic, 0, 35).’…’;
}
else
{
$output = $forum_template->topic->topic_title;
}
return apply_filters( ‘bp_get_the_topic_title’, stripslashes($output) );
}`then just replaced bp_the_topic_title() with bp_the_short_topic_title() where I needed it shortened.
November 18, 2010 at 7:23 pm #98614In reply to: Question: WordPress User Roles and BuddyPress
desha
MemberThank you Paul.
November 18, 2010 at 7:07 pm #98611November 18, 2010 at 6:18 pm #98608In reply to: Custom Community Slide Show
konradS
ParticipantNovember 18, 2010 at 5:13 pm #98605In reply to: Blog Plugin NOT MU
@mercime
ParticipantGreat idea @r-a-y, ala Ning with front end posting and possibly using each member’s username as parent category or even post type.
@Shonnaedwards one way of doing allowing members to post articles without a plugin is by giving new users the role of “Contributors” or above just like many WP multi-author blogs thereby allowing members access to backend to post articles.
For a plugin solution, try this one https://buddypress.org/community/groups/one-quick-post/ where members can post from the front end and you can keep members/users’ roles to suscriber level.
November 18, 2010 at 5:05 pm #98602In reply to: Question: WordPress User Roles and BuddyPress
Paul Wong-Gibbs
KeymasterOther than site admin checks, BuddyPress doesn’t use or check for specific roles or capabilities anywhere. So, in terms of regular users, there is no difference between a subscriber and a contributor for the BuddyPress features.
November 18, 2010 at 4:59 pm #98601Paul Wong-Gibbs
KeymasterThat’d never get into core
. If you think you’ve found an issue with timestamps, and you are sure you have configured everything correctly, post a bug report on https://trac.buddypress.org/ please with full details of what exactly is wrong. A screenshot would be mega helpful, too.November 18, 2010 at 4:41 pm #98599@mercime
Participant@gregfielding check this out as well http://buddydev.com/plugins/one-click-mark-spammer-for-buddypress/
November 18, 2010 at 4:15 pm #98597In reply to: Buddyvents 1.2.2
Anonymous User 96400
Inactive@boomerang
Please post support requests on our forums at http://shabushabu.eu in the future. You need to register with the same email address you used to buy Buddyvents. Thanks!November 18, 2010 at 3:50 pm #98595In reply to: Registration link redirects to home page
Anonymous User 907751
InactiveI solved the issue by deleting BuddyPress from wp-content/plugin directory, and re uploading it. Good luck everyone!
November 18, 2010 at 2:03 pm #98586In reply to: Wrong post time in Inbox
Hugo Ashmore
ParticipantThere is already a ticket and a patch for this as well as a support thread
expect the patch committed in 1.2.7However you are reporting quite a time difference? but this is a long running issue but should be corrected with this final patch.
November 18, 2010 at 1:01 pm #98582thosch
ParticipantI use the plugin with WP3.0.1. and BP 1.2.6. It works fine with e.g. Google Chrome but in Internet Explrer 8.0 files are not uploaded.
Any idea?November 18, 2010 at 10:03 am #98577Hugo Ashmore
Participant@zomex ignore the query string it’s a version string appended when the style sheet is added to the output of the page and is simply a method used to force refresh of browser cache , it’s appended to the file after the fact and no file actually exists physically with a query string, just edit the adminbar.css as r-a-y has shown you
November 18, 2010 at 9:42 am #98576Hugo Ashmore
ParticipantAdded a footnote to the ‘blog tracking’ list item on https://codex.buddypress.org/getting-started/configure-buddypress-components/
It perhaps also needs reference elsewhere as well.
November 18, 2010 at 9:31 am #98575Hugo Ashmore
Participant@r-a-y (Sidenote: me thinks we need a BP codex article to setup the blogs component) by that do you mean multi site feature? if so is that not really a WP issue and well covered in their codex, with perhaps BP codex just needing to reference that WP page, subscribing to a variation of DRY therein.
November 18, 2010 at 9:08 am #98573In reply to: Features for BuddyPress
idotter
ParticipantHi guys
It’s a while since i checked back this thread … thx for your mentions.
Are there some coders which are willing to develop some of these plugins?I’ll get a project in the near future and could spend some money

My principal is to support plugin development ( i can’t pay dvelopment from a to z) but devs can resell or release it to the public repository.
please contact me at marc(at)idotter.ch
November 18, 2010 at 8:37 am #98572In reply to: Custom Community Slide Show
phyz
Member@ChuckNJ I would love to show you, but its only in the testing phase right now so it’s not up to me right now. What I can say is this is a great theme and allows for great customization. When the site is done I will definitely send you out a link.
November 18, 2010 at 7:55 am #98569In reply to: Forum and Blog text area
Paul Wong-Gibbs
KeymasterDid you search Google for an existing WordPress plugin? https://wordpress.org/extend/plugins/google-transliteration/ is one I found after a quick search. You could use that as a starting point for figuring out how to extend support to wherever you want in BuddyPress.
November 18, 2010 at 7:54 am #98568In reply to: Blog Plugin NOT MU
r-a-y
KeymasterBuddydev.com has a group blog plugin that takes advantage of standard WP’s blog categories:
http://buddydev.com/buddypress/blog-categories-for-groups-plugin/Something similar could be put together like that for members instead of groups.
November 18, 2010 at 7:50 am #98567In reply to: Custom Community Slide Show
phyz
Member@ChuckNJ Oh alright, when you post there is a bar on the right side, under “post tags” called “featured image”. Click “set featured image” and then either upload or select from your library. Also with this theme you are able to set which categories are shown in the slider. For instance, I created a category called “featured” and only those posts in the category get displayed. This is useful because you may not want all of your categories to be displayed.
November 18, 2010 at 7:18 am #98562In reply to: Custom Community Slide Show
November 18, 2010 at 6:36 am #98561In reply to: Custom Community posts in columns
phyz
Member@Svenl77 Hi, thanks for the response, I have got this working! Sorry for the late response. I also have one question, are drop down menus finished? Thank you for your great theme.
November 18, 2010 at 4:25 am #98553In reply to: Display Number of Users Online
r-a-y
KeymasterHere’s a quick snippet you can add in your theme’s functions.php:
`function ray_number_online_users() {
$i = 0;if ( bp_has_members( ‘user_id=0&type=online&per_page=999&populate_extras=0’ ) ) :
while ( bp_members() ) : bp_the_member();
$i++;
endwhile;
endif;return $i;
}`Then you can use it in a template like:
`if ( function_exists( ‘ray_number_online_users’ ) ) echo ray_number_online_users();`
—
*Sidenote: code could be better. I just modified the code from the online widget.
November 18, 2010 at 4:17 am #98552r-a-y
KeymasterTo add a friend, simply navigate to a member profile you want to become friends with and click on the “Add Friend” button. The requested member gets an email notification asking whether or not to accept the friendship.
Please go and test BuddyPress thoroughly on http://testbp.org, then come back here for any help.
—
For blogs, you need to enable WordPress’ network mode:
https://codex.wordpress.org/Create_A_NetworkWhen you have that setup, BuddyPress automatically detects this and adds a blog directory. There should be a button to create a blog on that page as well as on the registration page.
(Sidenote: me thinks we need a BP codex article to setup the blogs component)
—
To customize the welcome email, try Paul Gibbs’ Welcome Pack plugin:
https://wordpress.org/extend/plugins/welcome-pack/November 18, 2010 at 4:12 am #98550 -
AuthorSearch Results