Forum Replies Created
-
Author
-
adamParticipant
Hi – I wanted to recommend another (premium) plugin that works great with this theme:
http://buddydev.com/buddypress/buddypress-recent-profile-visitors-plugin/It shows who has recently visited your profile. It displays their profile picture which is linked to their profile if you click on it.
All of buddydev.com’s plugin’s I’ve tried have been great.
adamParticipantI believe notification emails are generated from Buddypress here:
bp-messages-notifications.phpCan we change the subject line and body with a filter in functions.php?
Thanks!
adamParticipantyou don’t see a Sweetdate menu on the left hand side of the screen? Styling options is a submenu of that. post a screen shot of your WP-Admin.
adamParticipantit doesn’t show on more than one page. i played around with it and it ONLY shows on the page you set as the Levels page under WP-Admin->Memberships->Page Settings.
do you think there is a way around this?
adamParticipantthe plugin author is responsive and might be able to help you:
http://www.philopress.com/products/buddymessageux/adamParticipantYou could try a plugin like this one:
http://buddydev.com/plugins/bp-auto-activate-auto-login/adamParticipantyou’re clicking the private message button? it must be conflicting with another plug-in?
adamParticipantDoes the user have fields completed under the Social tab in WP-Admin->users->profile fields? If not, the new profile tab won’t appear.
adamParticipantin header.php you’ll see this:
COPY CODE<li><a href="#"> <i class="icon-user hide-for-medium-down"></i> <?php _e("LOG IN", 'kleo_framework'); ?></a></li>
change “#” to whatever url you like.
as far as the log-in modal…are you sure you’re logged out fully from WP-Admin before trying to log-in using the modal? sometimes i have that problem.
adamParticipantGo to wp-admin->settings->general
under Membership, make sure Anyone can register is checked.adamParticipantI’m switching this to resolved. Some error occurred, maybe I deleted the quick css myself by accident I’m not sure. Moral of the story: Backup your WP-Admin and quick css changes. My backup plugin only backs up files and databases.
adamParticipantOne more question in regards to this that I think might be good for all of us to know:
Is there a way to only show latest members in the carousel IF they have a profile picture uploaded?
Otherwise, I think we’d see a lot of blank images spinning around 🙂adamParticipantI see now I can keep the search form on in WP-Admin->Sweetdate and hide the search parts with css leaving the carousel intact.
COPY CODE.form-search, .form-header { display: none; }
I just need to figure out how to change the Latest registered members text.
adamParticipantThanks – so strange. Now I know to backup all of the settings in WP-Admin in addition to my files and database. I’m slowly fixing it all back, luckily it was just CSS I lost.
adamParticipantThese plugins are what you’re looking for. They work great:
http://wordpress.org/plugins/bp-profile-message-ux/
http://wordpress.org/plugins/buddypress-extended-friendship-request/Also, you can easily link the profile image in the user-card with this href code in your members-loop.php:
http://tny.cz/bce602e0adamParticipantAre you putting this in functions.php and changing the ‘front’ line to whatever you want it to say?
adamParticipantdoes your css look like this?
COPY CODE.activity-list span.avatar, #whats-new-avatar, #activity-stream div.avatar { height: 60px; width: 60px; left: -30px; margin-bottom: 20px; }
if not, give it a shot in quick css. that should work for activity at least. not sure which widgets you mean?
adamParticipantthis will redirect users to their profile when they log-in and the administrator (you) to wp-admin:
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*/ }
it goes in the functions.php file of your child theme. is this what you’re looking for?
adamParticipantyou don’t need woocommerce if you’re not going to use it. strange errors though 🙁
adamParticipantok change the bottom part to:
COPY CODE/* Display nothing on photo */ function my_custom_icon () { return null; }
adamParticipantI had this same problem. I believe this is how I fixed it. Add this to your quick css:
COPY CODE/*removes bottom portion of map on homepage*/ .map-bg { background-image:none; }
adamParticipantit should just put this in your functions.php (child theme file):
COPY CODEadd_action('after_setup_theme','kleo_my_hearts_actions'); function kleo_my_hearts_actions() { /* Replace the heart over images */ add_filter('kleo_img_rounded_icon', 'my_custom_icon'); } /* Replace the heart with a camera icon function */ function my_custom_icon () { return 'camera'; }
adamParticipantthat’s the Contact Form 7 plugin. you can google for solutions like this one:
http://contactform7.com/spam-filtering-with-akismet/adamParticipantadamParticipantyou would need to edit header.php, create a div class around the text or images and style it/position it with css.
adamParticipantthat’s what i asked here. might help you:
https://archived.seventhqueen.com/forums/topic/pmpro-redirect-messages -
AuthorPosts