Forum Replies Created
-
Author
-
adamParticipant
i’m assuming /members is your member directory?
if so, set it in wp-admin->sweetdate->buddypress instead. make sure you have some horizontal search fields checked.adamParticipanthi – strangely the code above no longer works for me:
COPY CODE#friends-my-friends:before {content: "";}
i think this may be an issue resulting from the latest theme update?
adamParticipantthis thread will help you:
https://archived.seventhqueen.com/forums/topic/disable-profile-tab-below-profile-imagethis is my full code in my child theme’s functions.php file, which might help you too:
COPY CODEfunction my_remove_profile_nav() { global $bp; if (!bp_is_my_profile()) { bp_core_remove_nav_item( 'profile' ); bp_core_remove_nav_item( 'groups' ); bp_core_remove_nav_item( 'friends' ); bp_core_remove_nav_item( 'forums' ); bp_core_remove_nav_item( 'events' ); bp_core_remove_nav_item( 'location' ); bp_core_remove_nav_item( 'settings' ); bp_core_remove_nav_item( 'bp_album_setup_nav' ); } } add_action( 'bp_setup_nav', 'my_remove_profile_nav' ); function my_setup_nav() { global $bp; $bp->bp_nav['activity'] = false; $bp->bp_nav['profile']['name'] = 'Edit Profile'; } add_action( 'bp_setup_nav', 'my_setup_nav' ); function my_remove_album_nav() { if (!bp_is_my_profile()) { remove_action( 'bp_setup_nav', 'bp_album_setup_nav' ); } } add_action( 'bp_setup_nav', 'my_remove_album_nav', 9 );
you can customize it to suit your needs.
adamParticipantdelete the code you added and you should be able to get back into wp-admin without problem. it could be that either the syntax for the code you entered is wrong or you’re using a function name that already exists.
adamParticipanthi @hughm – The age range in BP Profile Search works for me when I register on my site (using Gravity Forms).
Here’s my setup:
I have a Gravity Forms field for Date of Birth which is just a date field with date format mm/dd/yyyy. It’s then linked to the Date of Birth field I created in Buddypress under Gravity Form’s User Registration. In Buddypress, the Date of Birth field I use is a Birthdate field type from Buddypress Xprofile Custom Fields Type (I also have show age instead of birthdate checked though I doubt this matters).
adamParticipant@mattadams put that css code in the quick css section wp-admin->sweetdate->styling options (bottom of the page)
adamParticipantyou can put this in quick css:
COPY CODE.label.radius.pmpro_label { display: none; }
adamParticipanthi @hughm – if you figure this out, can you share how you did it? i’d like to do the same. thanks!
adamParticipanti found the solution. one file caused all of the problems. in my child theme i had custom_buddypress->bp-functions.php and the theme didn’t like that 🙂 thanks!
adamParticipantnot sure what you mean. you have the file path right there. you have to go into your host’s file manager or in a FTP program.
adamParticipantno problem – use google chrome’s inspect element to view your site’s css. you can make changes to it to see what your site would look like, but it won’t be saved.
adamParticipantit goes in quick css which is in wp-admin->sweetdate->styling options (at the bottom of the page). top-links is the css class for your black bar on top.
adamParticipantput this in quick css to remove the blue line:
.top-links {
border-bottom: none;
}that email address is what you set in your wp-admin->sweetdate->contact info & social settings.
adamParticipantthat plugin works for me. you might need to contact your hosting company.
adamParticipantthis is helpful. I will manually try to make the changes and see what happens. thanks.
adamParticipanti believe this is what you’re looking for:
https://archived.seventhqueen.com/forums/topic/hide-adminadamParticipantgreat, much appreciated. ive used to a child theme and quick css for all my changes so it’s odd.
adamParticipantCan you share which files were edited/added/removed in this last update and I will try to manually install? Thanks!
adamParticipantthat’s their username. you can hide it like this if you want:
#profile .user-nicename {
display: none;
}December 6, 2013 at 22:25 in reply to: BuddyBlock, BuddyPress Profile Progression and YD Profile Visitor Tracker #7813adamParticipantBuddyBlock works perfectly for me. You only need to set it to “Administrator” in wp-admin, selecting anything else will cause the button to disappear for users.
adamParticipantshow us your code.
it should look like this:
COPY CODE/* Filter the redirect url for login*/ add_filter("login_redirect","kleo_redirect_to_profile",100,3); function kleo_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){ /*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/ if(!is_super_admin($user->ID)) return bp_core_get_user_domain($user->ID ); else return $redirect_to_calculated; /*if site admin*/ }
adamParticipantunder wp-admin->users->profile fields are looking for, lifestyle, and physical set as individual field groups (meaning they each have their own tab)?
also, the user has to have entered information in those fields in order for it to appear on their profile.
lastly, you should definitely make a child theme to do any changes to your site so they don’t get lost when you upgrade 🙂
adamParticipanti agree this would be amazing 🙂 i don’t think any other theme has this so you guys would be very unique 🙂
adamParticipant@wisinyyandel7 just a tip, i use a site like this one to compare differences in two files:
http://www.diffchecker.com/
it’s a big help.adamParticipanti’ve tried a number of WPMUDev plugins and haven’t been impressed to be honest. they seem low quality, but that’s just my opinion. it’s surprising since they have a nice site, lots of choices, some good blog posts. i don’t know. i prefer plugins from these guys: http://buddydev.com/plugins/. they’ve all worked great for me. BuddyDev’s Brajesh seems to be a solid developer. If you Google anything about Buddypress you’ll usually see his name popup.
adamParticipantit looks to me like where you include that yellow background you need to put an inline margin-top -20px like this:
style=”background: url(‘http://rota299.com/wp-content/uploads/2013/11/backCont.jpg’);margin-top: -20px;”I’m guessing this can be found in your home page under WP-Admin->Pages
adamParticipantHi – I am playing around with http://osticket.com/. It’s FREE, open source, works great, and can be easily customized with this theme. I’ve tried a bunch of others, but this one seems to be the best for my needs. It’s not a plug-in, but you just upload the files to a specific directory like mysite.com/support and there it is.
adamParticipantthis will get rid of the hearts:
https://archived.seventhqueen.com/forums/topic/removereplace-the-love-hearts-in-siteadamParticipant@wiggerl3000 lots of people (myself included) use this theme for sites unrelated to dating so it’s necessary to remove the matching feature.
@rota299 put this in your functions.php file:COPY CODE/* Remove compatibility from profile */ add_action('after_setup_theme','kleo_remove_compat'); function kleo_remove_compat() { remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); }
December 1, 2013 at 21:02 in reply to: Remove Button (Send Public Message) From Profile Header #7542adamParticipantPut this code in your functions.php file to remove the Send Public Message button:
COPY CODEfunction remove_public_message_button() { remove_filter( 'bp_member_header_actions','bp_send_public_message_button', 20); } add_action( 'bp_member_header_actions', 'remove_public_message_button' );
adamParticipantOk I think I know why it works for me. I have two header files. One with image and one without. Can you create one without and direct it to use that header?
adamParticipantI just realized you’re talking about the page AFTER they click the link in the email to activate. This might be of some help:
http://gravitywiz.com/customizing-gravity-forms-user-registration-activation-page/adamParticipanti use gravity forms as well. what if you create a new page in wp-admin under pages->add new and put in whatever you want for the “account activated message” and then go to wp-admin->forms->settings->confirmations and then set it to redirect to your newly created page after the user submits the registration form?
my workflow using gravity forms is a bit different though:
gravity forms registration page->automatically activate account (without sending activation email)->redirect right to membership levels page so they can choose their account type. it’s a pretty simple process that way.November 30, 2013 at 22:14 in reply to: Mailchimp – how to change double opt-in to single opt-in? #7513adamParticipantAh ok. Doesn’t look like that can be done for the newsletter. See here:
http://kb.mailchimp.com/article/can-i-shut-off-the-e-mail-that-asks-people-for-confirmation-that-they-want-/November 30, 2013 at 20:59 in reply to: Mailchimp – how to change double opt-in to single opt-in? #7510adamParticipantIf you’re using the AutoChimp plugin you can go to WP-Admin->Settings->AutoChimp and make sure “Bypass the MailChimp double opt-in.” is checked.
-
AuthorPosts