Search Results for 'buddypress'
-
AuthorSearch Results
-
July 29, 2010 at 4:35 pm #87385
Dimitris Arkolakis
Participant@pcwriter the link http://pastebin.com/mpizkJXq does not working
July 29, 2010 at 4:15 pm #87382In reply to: members only pages.
techguy
ParticipantIf you want them to pay to get to that member page, try the s2member plugin. If you want them just to register (for free), then I think this is the thread with a bunch of possible solutions: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-private-community/
As far as the MP3 player, I don’t know, but I’m sure there are a ton of options. In this case, it wouldn’t need to be BuddyPress specific at all. Just search for an MP3 player that works with a webpage and it can be added to the WordPress page. There might even be a WordPress plugin that does this already.
July 29, 2010 at 4:15 pm #87381helpy
ParticipantDoes child-theming of the BP Default theme (which resides in wp-content/plugins/buddypress/bp-themes) will work if I put the child theme in wp-content/themes?
Because if I update buddypress plugin with the wordpress update function … all templates in wp-content/plugins/buddypress/bp-themes will be deleted before the new version will bei installed!
cu, guido
July 29, 2010 at 4:11 pm #87380In reply to: BuddyPress Privacy Component: An Update
techguy
ParticipantJeff talked about it a bit at the dev chat. He’s still waiting for a few patches to the core to be able to release the plugin. I think his intent was to have the patches for the core done this weekend for the .6 release that should come out later next week (if all goes well). Or maybe that’s the intent I am hoping @jeffsayre will have.
I bet dropping a donation on Jeff’s page wouldn’t hurt to move things along either: http://jeffsayre.com/
July 29, 2010 at 3:36 pm #87375In reply to: How can I customize a special group?
Hugo Ashmore
ParticipantJuly 29, 2010 at 3:29 pm #87374In reply to: Please Help: Broken Theme
newrambler
MemberThe style sheet is a file that basically makes your site look pretty–it’s what controls the layout and the colors and the fonts and all that stuff. It sounds like you somehow downloaded and installed a corrupt version (or at any rate an incomplete version) of BuddyPress that was missing the style.css file.
If you did an automatic install through WordPress, I’d first try just uninstalling and reinstalling BuddyPress and see if that works. Otherwise, you’ll want to look through the files installed on your webhost for a file in your BuddyPress folder called something like style.css (at any rate, it’ll end with .css). If it’s not there, you’d need to add it. I can tell you more about how to do that, if you need, but try the automatic uninstall and reinstall first.
July 29, 2010 at 2:53 pm #87370In reply to: Fatal Error Message When Activating Buddypress
gonabadnews
Participantbut dont solved my problem with this!!
July 29, 2010 at 2:09 pm #87367tridian
ParticipantThanks very much r-a-y for the advice and I will certainly pass this on to the DAP team as well to see what they think. I see you all over the forums so thanks again for all the work you and the BP team puts in for the rest of us.
July 29, 2010 at 12:07 pm #87358Hugo Ashmore
Participant@djpaul
Paul I locked this thread as it was a duplicate as I made note of. I responded to the other here:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/setting-up-access-to-admin-correctly-for-a-bp-network-site/July 29, 2010 at 12:06 pm #87357In reply to: BuddyPress Privacy Component: An Update
peter
ParticipantHello. Is this plugin aliver? I sure could use it? Or is there any other plugin out there that makes the same stuff happen! Need that 0-1 security for members and not members for one of my pages on my site!
July 29, 2010 at 11:45 am #87356Paul Wong-Gibbs
Keymaster1. Was this with or without buddypress active?
2. All users will be able to see wp-admin, but some parts more than others. Are you 100% that what your Admin account sees in wp-admin and what one of these users see are identical?July 29, 2010 at 11:40 am #87354Paul Wong-Gibbs
KeymasterHelene
A child theme lives in its own directory, and inherits any files not presenting the child theme, from its parent theme. So what you would do is create a child theme of BP Default and copy into your child theme, BP Default’s header.php (for example – what you want may be on another page) and customise it. You’ll only have to worry about updating it in the future if BP Default itself is updated (probably not for a couple of months, at least).July 29, 2010 at 11:24 am #87350In reply to: Hide Comments from Non Members
rich! @ etiviti
Participanthere is some code for removing activity reply comments from non-logged in users
http://etivite.com/groups/buddypress/forum/topic/quick-tip-hide-activity-updates-andor-replies-by-types-for-non-logged-visitors-in-users/#topicnot sure about blog comments – different template (and depending if MS)
July 29, 2010 at 11:12 am #87349John James Jacoby
KeymasterUntil we fragment cache the bp-default template, this could be an issue in a few places. The way we combated it on testbp.org is to set the cache to refresh every 5 minutes. Not perfect, but it works for now.
Looking at your site, do you have it caching for logged in users also? Obviously a majority of your traffic with BuddyPress is from logged in users, but all of the activity based bits are hard to cache dynamically until we can tell w3tc which parts to cache, and which are activity sensitive and to skip.
July 29, 2010 at 10:38 am #87347Jon
ParticipantTry https://codex.wordpress.org/Child_Themes
I created my own child theme for Buddypress following those instructions.
July 29, 2010 at 10:24 am #87346deadlyhifi
ParticipantI’ve just experienced this and have come up with a fix:
function custom_bp_adminbar_login_menu() { global $bp; if ( is_user_logged_in() ) return false; $redirecturl = $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . esc_url( $_SERVER ); echo ' ' . __( 'Log In', 'buddypress' ) . ' '; // Show "Sign Up" link if user registrations are allowed if ( bp_get_signup_allowed() ) { echo ' ' . __( 'Sign Up', 'buddypress' ) . ' '; } } remove_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 ); add_action( 'bp_adminbar_menus', 'custom_bp_adminbar_login_menu', 2 );Drop that into your functions.php file.
It’s the same as the standard function except it appends the
$bp->root_domainwith$_SERVER.
I’m not sure if this is a feature or something that’s been overlooked and needs reporting in trac. Also on different servers I’ve had differing results with php$_SERVERbased stuff so I’m not sure if it will work everywhere. It works on the server I’m using anyway.July 29, 2010 at 9:47 am #87343guigoz
MemberHi,
Thanks for this tips.
I need to display as delault “activity_update” AND “new_blog_post” AND “new_blog_comment”. How can I add this to your code ?
Any idea ?
Guillaume.July 29, 2010 at 8:39 am #87338In reply to: All blogs on the same main site?
@mercime
ParticipantYou will be adding the switch_to_blog function in the header.php of your theme/s for subblogs.
Using bp-default theme’s sample Code here – http://buddypress.pastebin.com/MafW4WNU
If you are using different theme then you would have to add the 2nd code to your theme replacing the wp_list_pages or the wp_page_menu template tag in your theme’s header.phpJuly 29, 2010 at 8:31 am #87336warut
Participant@Pisanojm I am testing on WP3.0. Your problem is wrong image path, I will testing on my website and let you know if found error.
July 29, 2010 at 8:03 am #87335In reply to: All blogs on the same main site?
lisalove
Member@mercime – thanks for answering! I just don’t understand where I should paste/change the switch_to_blog function? Is it in the style.css, the header.php… I feel clueless… I’m a newbiw on this kund of things. Can you please advise?
July 29, 2010 at 7:56 am #87333In reply to: Seo for Buddypress 1.0 beta
Terence Milbourn
MemberDid Sven leave the house? Hope not…
Hey Sven, got a problem with 1.2.4 beta on WP3.0/BP 1.2.5.2 – everything works fine for BP, but its missing Title and Keywords on the blog home page, which is a static page, and the blog itself, which is at http://virtualcrowds.org/blog/ – is there a fix for this or am I doing something wrong?
July 29, 2010 at 7:50 am #87332In reply to: All blogs on the same main site?
@mercime
Participant@lisalove – if you want to have the same main navigation throughout the site then use the switch_to_blog function that andrea_r above posted or copy the HTML of the main navigation in main blog and paste that in all the themes you uploaded for your members to use in their own blogs.
July 29, 2010 at 5:45 am #87325In reply to: IE destroys my custom home page
pcwriter
ParticipantThanks for the heads up about the plugin; it helps a lot! It’s like having an in-home tutor wagging his finger when I get ahead of myself.
And sometimes it’s the most obvious that escapes me… The thing that completely screwed up the page was what you had noted above:<php
/*
Template Name: Custom Front Page
*/
?>Should read: <?php …
Corrected that missing “?” and voilà… the page sorted itself out in IE.
Now it’s a question of fixing a bunch CSS/XHTML “oopses” (mostly improperly formatted tags and such).Thanks again!
July 29, 2010 at 3:27 am #87321In reply to: Error while uploading .smf files
@mercime
ParticipantYou can use Kimili plugin if you only need to upload .swf or .flv files in regular Posts/Pages in backend. But for BuddyPress, right now the only bp-compatible plugin which allows upload and display of .swf or .flv files is the BP Gallery Plugin, which is not released to public yet.
July 29, 2010 at 2:50 am #87320In reply to: Buddypress Article Slideshow
@mercime
Participant“incorporate an article/post slideshow into the Thematic theme”
Getting the slideshow to work is more on the WordPress side … if you’re making a slideshow of the posts/articles in your site. BuddyPress doesn’t have anything to do with the slideshow … unless you’re making a slideshow of BP Gallery images or members or groups, etc.Furthermore, since you’re using the Thematic theme (which has a BuddyPress-compatible version/adaptation), might I point you to the Thematic Forums since they can assist you better in choosing best slideshow/plugin for your site http://themeshaper.com/forums/
-
AuthorSearch Results