Search Results for 'wordpress'
-
AuthorSearch Results
-
February 22, 2013 at 7:02 am #153697
In reply to: Fatal error: Maximum execution time of 90 seconds
M3
ParticipantFebruary 22, 2013 at 2:42 am #153679In reply to: Fatal error: Maximum execution time of 90 seconds
@mercime
ParticipantBut why it is said the theme I use is compatible to run buddypress in wordpress.org themes option?
@musadiqmarhaban @hnla What’s the name of the theme? Those are serious issues.February 22, 2013 at 2:13 am #153673In reply to: Template Errors
Mathieu Viet
Moderatorthe fix is for BuddyPress theme, not for WordPress themes 😉
February 22, 2013 at 12:30 am #153669In reply to: Plugin for mananging of the documents in BP 1.64
intimez
ParticipantIf you want to create, edit or link doc to group:
https://wordpress.org/extend/plugins/buddypress-docs/If you want to upload to buddypress group forum:
https://wordpress.org/extend/plugins/u-buddypress-forum-attachment/February 22, 2013 at 12:13 am #153668In reply to: Logout button redirect to home page
modemlooper
Moderatoryou can include a hard coded link https://codex.wordpress.org/Function_Reference/wp_logout_url
February 21, 2013 at 11:34 pm #153664In reply to: Does this feature exist?
modemlooper
ModeratorProfile field links search members. It will not create a filtered activity stream. This can be accomplished with custom coding.
This plugin may give you an idea how to do it https://wordpress.org/extend/plugins/buddypress-activity-stream-hashtags/
February 21, 2013 at 11:14 pm #153660In reply to: Does this feature exist?
Ben Hansen
Participantwell i wasn’t referring to walls was referring to wordpress tags they operate like filters an example is here it shows member of my clients site gotgame.com that own the Atari 2600:
http://gotgame.com/members/?s=Atari+2600
hope that helps.
February 21, 2013 at 11:06 pm #153658In reply to: Forums: Can't create topic error message
intimez
ParticipantYou’re not alone. The current version and the way to combine buddypress with forum is difficult as I found out with several people new to wordpress+buddypress.
In my testing, the next version of buddypress and bbpress is much easier.
February 21, 2013 at 11:04 pm #153657In reply to: Does this feature exist?
Ben Hansen
Participantyes all items entered into the various profile fields should be clickable and function similarly to the way tags do in regular wordpress.
February 21, 2013 at 9:32 pm #153653findly01
ParticipantThanks.
Now I just have the problem of changing the Members text to ‘My Profile’ and making it link to the user’s profile page.
There’s a good article here:
http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
February 21, 2013 at 9:29 pm #153652fitnessblogger
ParticipantSorry for the delay @mercime
WordPress : Version 3.5.1 (multi-site – multi-domain)
BuddyPress : Version 1.6.4URL : http://fitnessblogger.net
Thanks so much for your time 🙂
Kind Regards
James
February 21, 2013 at 9:07 pm #153648bp-help
ParticipantAlso, how can I hide the Activity pages etc. until the user loggs in?
Read my reply in the following thread to accomplish this.
https://buddypress.org/support/topic/private-community-with-public-wordpress/February 21, 2013 at 9:04 pm #153647In reply to: Fatal error: Maximum execution time of 90 seconds
M3
ParticipantHi Hugo, you’re right, it is the theme. I use the default test theme and everything turns out fine.
But why it is said the theme I use is compatible to run buddypress in wordpress.org themes option?
Its a nice theme by the way, but I think they should exclude it. Can give people a hard time.The web is for my client and now I’m really in trouble, because they agreed on the theme already and I should be making delivery this weekend. First I thought is just some string problem somewhere.
I’m shutting it down for today and hope I can come up with a better idea.
Thank you Hugo and really appreciate if you have some idea on any optional theme available.
Thanks again.
February 21, 2013 at 8:18 pm #153642bp-help
ParticipantI might disable the plugin and edit the site so when a user logs in they see their member profile instead of the sitewide activity. Any ideas on how to do this?
Have you tried this plugin?
https://wordpress.org/extend/plugins/buddypress-login-redirect/February 21, 2013 at 7:50 pm #153638meistese
ParticipantHello again, I just wanted to let you know that I completely deleted WordPress from my server, and then reinstalled it. I then reinstalled BuddyPress. The 310 error has gone away!!! I wish I knew what caused the error to begin with so that I don’t make the same mistake again, but oh well, I will continue moving forward. Thanks for your time.
February 21, 2013 at 5:30 pm #153624In reply to: Private Community with Public WordPress
Kevin M. Schafer
Participant@bphelp I do believe I have it now. Yes, my butchered theme that I’m learning on was sending off errors. I enabled the BP-Default Theme and we’re good. I have the BP navigation tabs going to the Sample Page.
I knew you had it right, but I didn’t understand and I didn’t know my theme was causing errors. I use this site for practicing, then I implement the changes that work back to my new site: http://www.gumpolen.com
Thanks,
Kevin
February 21, 2013 at 5:22 pm #153622In reply to: Hide Profile Group When Editing
haughtam
ParticipantIt’s been a while since my original post, but I think I’ve figured this out and I hope this helps someone else. Â The original problem changed a bit too. Â Basically, now I want to show a profile group based on the value in an xprofile field (when editing a profile). Â So, if my User Category field for a logged in user says Recruiter, then I want to show the profile group called “Recruiter” (show this for admins too). Â Otherwise, I want to hide this profile group through php.
Thanks to the hint above, I was able to come up with a function in my child theme’s function.php file.
I’m just learning php/wordpress, and I don’t have a clear understanding why this works. Â I do know that $group_name[3] is the Recruiter profile group. Â Also, I do realize this snippet uses awful coding practices. Â If anyone has improvements, please let me know.
function my_recruit($group_name){
if ( is_site_admin() || xprofile_get_field_data( “User Category”)===”Recruiter”) {
echo $group_name[0];
echo $group_name[1];
echo $group_name[2];
echo $group_name[3];
}
else {
echo $group_name[0];
echo $group_name[1];
echo $group_name[2];
}
}
add_filter(‘xprofile_filter_profile_group_tabs’,’my_recruit’);
February 21, 2013 at 5:02 pm #153617In reply to: Private Community with Public WordPress
bp-help
ParticipantThat sounds more like your theme is shooting off errors. Try activating the bp-default theme and see what happens. also make sure there is no extra lines before or after the opening and closing php tags in the bp-custom.php
February 21, 2013 at 4:57 pm #153615In reply to: Private Community with Public WordPress
bp-help
Participantdid you add the code to the bp-custom.php you create in yoursite/wp-content/plugins? did you remember to add the code between opening and closing php tags and save the file? I have it working flawless on wp 3.5.1 and bp 1.7 beta 1. for example this line:
wp_redirect( get_option(‘siteurl’) . ‘/register’ );
redirects to register page
you could for example change it to something like this:
wp_redirect( get_option(‘siteurl’) . ‘/sample-page’ );
that would redirect to the sample page.February 21, 2013 at 4:49 pm #153612In reply to: Private Community with Public WordPress
Kevin M. Schafer
Participant@bphelp I missed my greater than sign in starting out the page. Now your code doesn’t show, but when I log out, i get an error across the top of the screen instead:
Warning: Cannot modify header information – headers already sent by (output started at /home/*****/public_html/inlandcoder/wp-content/themes/frisco-for-buddypress/members/index.php:12) in /home/*****/public_html/inlandcoder/wp-includes/pluggable.php on line 876
February 21, 2013 at 4:37 pm #153611In reply to: Private Community with Public WordPress
Kevin M. Schafer
Participant@bphelp I tried this and when I refreshed my site, all of your code appears below the admin bar on my site — above my header.
I created a new page and named it “new page here.”
Here’s your code with my info:
function bp_guest_redirect() {
global $bp; if ( bp_is_activity_component() || bp_is_groups_component() /*|| bbp_is_single_forum()*/ || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) ) { // enter the slug or component conditional here if(!is_user_logged_in()) { // not logged in user wp_redirect( get_option(‘siteurl’) . ‘/new-page-here’ ); } // user will be redirect to any link to want } } add_filter(‘get_header’,’bp_guest_redirect’,1);
Am I to insert my URL as well? I tried with and without changing it and that didn’t work either.
Kevin
February 21, 2013 at 4:20 pm #153609In reply to: Private Community with Public WordPress
bp-help
ParticipantIt stripped the code again. Just place this between opening and closing php tags in the bp-custom.php file:
`
function bp_guest_redirect() {
global $bp;
if ( bp_is_activity_component() || bp_is_groups_component() /*|| bbp_is_single_forum()*/ || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) ) {
// enter the slug or component conditional here
if(!is_user_logged_in()) { // not logged in user
wp_redirect( get_option(‘siteurl’) . ‘/register’ );
} // user will be redirect to any link to want
}
}
add_filter(‘get_header’,’bp_guest_redirect’,1);
`February 21, 2013 at 4:18 pm #153608In reply to: Private Community with Public WordPress
bp-help
Participantthe above reply stripped out the code so hopefully this will print out!
``
February 21, 2013 at 4:15 pm #153606In reply to: Private Community with Public WordPress
bp-help
Participantcreate a file named bp-custom.php that you will then place in yoursite/wp-content/plugins folder after you paste the following code in it:
``
Just change the /register in the line :
wp_redirect( get_option(‘siteurl’) . ‘/register’ );
to the page you want the logged out user to be directed too!
I found this somewhere on the net so props to whomever coded it!February 21, 2013 at 4:30 am #153586In reply to: How do I find a buddypress theme
modemlooper
ModeratorClick blog above, download the beta, install and enjoy any WordPress theme as your BuddyPress theme
-
AuthorSearch Results