Search Results for 'buddypress'
-
AuthorSearch Results
-
August 29, 2010 at 12:23 pm #90814
Jeff Sayre
ParticipantA quick search with the proper terms will bring up a number of options. This post in this thread should help. Once my BuddyPress Privacy Component is out in the wild, you will be able to easily do this with a simple radio button selection in the Site Admin menu of the component.
August 29, 2010 at 12:19 pm #90813Hugo Ashmore
ParticipantDid you try searching the community?
This thread might be worth you reading , it will allow you to make the site completely private to all but registered logged in users, or a variation on ‘All’ if you wanted to show certain pages.
August 29, 2010 at 12:16 pm #90812In reply to: Problem with Title Tag in Category and Tag
@mikey3d
ParticipantIt almost did works but…
There are two conflict codes for my title (/plugins/bp-custom.php) and your remove hyphens (/themes/my theme/function.php). The problem is your codes it only remove hyphen and it does not remove the first lowercase letter of second word. Ex:
The words New York:
1.) My title of category is “Category » New-york | My blog”
2.) Your remove hyphen title of category is “My blog| Blog | Categories | New york”
Can these codes put together in bp-custom.php if it could have two words with space, capital letter and my ways of doing the titles?
Thanks for your help, Mikey3D
catchit
ParticipantI was under the impression akismet by itself only works on the wordpress blog posts, but not forum posts or updates (buddypress stuff), am I wrong in this? – thats why I was asking about other plugins.
August 29, 2010 at 9:32 am #90806Hugo Ashmore
ParticipantDid you not look through the Community > Groups section?
August 29, 2010 at 9:24 am #90803In reply to: Problem with Title Tag in Category and Tag
Hugo Ashmore
Participant@mikey3d did you follow point 2 that Roger explained above? there is no ‘Patch’ as such only what we( the community) can run up given the spare time. tbh this is something I would have not been too concerned with and awaited a core patch in a future release (I have suggested a core patch to address the problem, but that will probably be applied in 1.3 – too late to get in to 1.2.6)
If you want you can try this quick fix I’ve run up by exacting the relevant section from the core function and applying it as a filter in functions.php – it’s not widely tested and slightly hackish but appears to work:
`function bp_page_title_blog_category_remove_hyphens( $title ) {
global $bp, $wp_query;
if ( defined( ‘BP_ENABLE_MULTIBLOG’ ) ) {
$blog_title = get_blog_option( $current_blog->blog_id, ‘blogname’ );
} else {
$blog_title = get_blog_option( BP_ROOT_BLOG, ‘blogname’ );
}
if ( bp_is_blog_page() && is_category() )
$title = __( $blog_title . ‘| Blog | Categories | ‘ . ucwords( $wp_query->query_vars ), ‘buddypress’ );
$title = str_replace(‘-‘, ‘ ‘, $title);
return $title;
}
add_filter( ‘bp_page_title’, ‘bp_page_title_blog_category_remove_hyphens’ );
`Let us know if that works for you?
August 29, 2010 at 9:15 am #90800In reply to: HTML newbie – q editing /activity/index.php
Hugo Ashmore
Participant@sophiew I’ve edited your post to add backticks for code display.
I would be inclined to heed Rogers advice though, if you are inexperienced with the basics of HTML markup and PHP scripting then modifying a theme is going to prove tricky.
August 29, 2010 at 6:54 am #90791OnlyBlue
ParticipantWho can tell me?
August 29, 2010 at 6:24 am #90788Thorsten :-)
ParticipantAugust 29, 2010 at 6:22 am #90787In reply to: Activation Code after New Member Registration
Thorsten :-)
ParticipantHi Guys!
It seems it’s a problem with the ‘mod_rewrite’ function under Windows, seeAugust 29, 2010 at 5:27 am #90781In reply to: Password strength feature
Will Anderson
ParticipantHey, I’m the author of the minimum password length plugin and I just noticed this thread. I looked at the code from the password strength meter from the OP link and it appears that it’s only checking the password length. Is that what you’re looking for, or did you want to make people use non-alpha characters etc?
The best solution for this would likely be to utilize the existing password strength meter built into WordPress. If I remember correctly, there’s even a JavaScript library that could be queued from core that would do most of the heavy lifting. I’ll take a look tomorrow and see how hard it would be to add that to the BuddyPress profile page (and maybe have an option to force people to use strong passwords too). I’ve had limited experience with BuddyPress though, so we’ll see how far I get
August 29, 2010 at 4:26 am #90778August 29, 2010 at 2:07 am #90775In reply to: Wrong time on sent messages
Jack
ParticipantAugust 29, 2010 at 1:22 am #90769@mercime
Participant@seocostarica Check out EventPress – http://gsoc2010.wordpress.com/2010/08/16/eventpress/
the bp-events plugin is good to BP 1.1.3 only. Here’s another BP 1.2 compatible Events plugin – https://wordpress.org/extend/plugins/jet-event-system-for-buddypress/As @Modemlooper wrote, h-mag.com events is a customized system per creator
August 29, 2010 at 1:05 am #90771In reply to: HTML newbie – q editing /activity/index.php
Roger Coathup
Participant@sophiew – you can use backticks around your code to make it show up in the thread.
It’s probably not a good idea to try and rework your theme if you are newbie to HTML. They can be reasonably complicated, and also require some PHP knowledge if you are making substantial mods.
Learning on the job is a decent approach, but an HTML primer first might be a good idea. If you want to get started straightaway, I’d suggest switching to the BuddyPress default theme and working from there.. A child theme from the default will be a lot less code changing for you.
August 29, 2010 at 12:43 am #90768@mercime
Participant– Backup database and server files regularly, especially before any BuddyPress or WordPress upgrade
– Set up and maintain test installation/s which mirror/s live site/s. That’s where I check out all plugins and upgrades first before installing in live site. No rush to upgrade BP or WP install unless it’s a security release. Still, better to test first.
– Check out WordPress and BuddyPress forums for red flags re upgrades, plugins, etc.August 29, 2010 at 12:37 am #90767In reply to: W3 Total Cache on www.testbp.org
catchit
Participant@DJPaul I was wondering how do you get paged caches to work with users logging in, I can’t seem to login with page cache. I do a lot of custom queries and display, is page cache important for that?
August 29, 2010 at 12:10 am #90765In reply to: Custom Profile Page
@mercime
Participanthttps://trac.buddypress.org/browser/tags/1.2.5.2/bp-themes/bp-default/members/single/profile.php where you can see calls to different parts of profile page lines 13, 16, 19
Line#19 – https://trac.buddypress.org/browser/tags/1.2.5.2/bp-themes/bp-default/members/single/profile/profile-loop.phpYou can change style in either 3 ways: a) tweak css only; b) customize BP files; and c) tweak css and customize files. Tweaking CSS is the easiest way. Customizing php file is more intensive. Install Firebug add-on for Firefox to help you find hooks to change layout/colours via CSS.
August 28, 2010 at 9:16 pm #90761In reply to: BuddyPress Spam
pcwriter
ParticipantI think someone more knowledgeable about things .htaccess could better answer that question. I’m really still learning about all this stuff myself.
About your other idea though… now that could be brilliantly simple! It could sure put one heck of a damper on the efforts of human sploggers who are, if their activities are any indicator, a lazy bunch. Only thing is, it wouldn’t do much for those bots who manage to squeeze through whatever “backdoor” they happen to find (or make).
Anyone want to take on a little “Avatar Required” plugin challenge here?
August 28, 2010 at 8:55 pm #90758In reply to: Plugins required
lordsnake
ParticipantI have been playing with the mU and buddypress and so far so good.
However with MU it seems I can only allow registration with blog creation or registrations only. Now I know from previous experience that I am am going to get bogus registrations so I don’t really want to allow blogs to created at registration time, as this will waste system resources if a blog gets created by the bots.
Is is possible to have it so that the registered user has to then login to create his blog if he wants one ?August 28, 2010 at 8:23 pm #90754In reply to: Activity & Forum
Roger Coathup
Participant@tubruk – this is known issue – take a look at this thread (it covers blog comments and forum responses in the activity stream): https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/replying-to-blog-post-in-the-activity-stream-as-post-comments-rather-than-just-activity-stream-replies/
and for a simple solution from @nuprn1: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/clarification-needed-on-posting-forum-replies/
August 28, 2010 at 8:21 pm #90752In reply to: BuddyPress Spam
Ted Mann
Participant@pcwriter It’s weird. I tried a proxy server, and was still able to get to the signup page by typing in the url, which leads me to believe the htaccess change isn’t taking right. Is there anything that could be interfering?
I had another anti-spam idea: Would there be a way to require a user to have an avatar? What I’ve noticed is that all the spam signups have no avatars. Wondering if making that essentially the same as required profile fields would help.
August 28, 2010 at 8:16 pm #90750In reply to: aggregate activity stream from public groups
Roger Coathup
Participant@psycolor: public group activities (e.g. joining a group, creating a group, posting updates) should appear in the standard activity stream. Which activities are not showing for you?
To hide private group activity from the activity stream – follow the instructions I gave for excluding blogs in this thread: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/need-exclude-parameter-for-bp_has_activities/
Check whether the activity item action is group related, then use the primary id of the item to get the group_id, and then check whether it is one of your private groups.
As per my comment on blogs, you can do this for all activity loops by using the filter, or on a loop by loop basis.
August 28, 2010 at 8:06 pm #90749In reply to: need exclude parameter for bp_has_activities()
Roger Coathup
Participant@psycolor: the existing documentation on customising the activity loop can be found here: https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
August 28, 2010 at 6:45 pm #90740In reply to: BuddyPress Template Pack
govpatel
ParticipantI am using latest wordpress 3.0.1 and default twentyten child theme and all i did was transfer folders using buddypress theme pack and go in menu and create a custom menu and use it as primary menu add all the pages in menu and than create custom links for buddypress like for /activity /members/ /forums and so on and they work fine.
-
AuthorSearch Results