Forum Replies Created
-
Author
-
adamParticipant
found the problem. i had to remove the rel=”nofollow” piece from line 16.
is the rel=”nofollow” piece important? if so, what is the correct way to include it?
Thanks! 🙂
adamParticipantthis code breaks my site. is the syntax correct?
do i put it below:COPY CODEif (!class_exists('BpMembersTab_bp_album')):
and above:
COPY CODEendif;
?
I REALLY appreciate this. Thanks!
adamParticipantthanks – i have a custom registration page though (mysite.com/registration). so would this be the correct code?:
COPY CODE/*PMPro redirect*/ add_filter('kleo_pmpro_url_redirect', 'my_custom_redirect'); function my_custom_redirect() { if (is_user_logged_in()) { return pmpro_url("levels"); } else { return ('/registration'); } }
it seems to load slowly.
adamParticipantI wanted to share this premium plugin:
http://www.philopress.com/products/buddyblock/
It allows users to block members using a button under “Add Friend” and “Send Message” on their profile page and it integrates really well with this theme. It’s $19, but worth it in my opinion if you’d find that feature useful.I also have been playing around with some premium plugins from http://www.wpmudev.org and am not too impressed to be honest. For example, I tried adding their chat plugin to my groups pages and it was really slow and didn’t look very well made.
adamParticipantone work-around could be making the avatar/profile photo automatically appear in the album upon upload. not sure how to make this happen though…
adamParticipantcheck this out:
http://wordpress.org/plugins/webpurifytextreplace/
i think you have to pay $50/yr for the license to use it though 🙁 good for profanity and i bet you could filter out “@” or “.com” in order to remove email addresses from the profile.adamParticipantunfortunately, that’s not a good fix. users won’t be able to view or select a membership level in that case. it takes newly activated users back to the registration page instead of selecting a membership. thanks though 🙂
adamParticipantNevermind – I see the advanced settings were moved to Sweetdate->Memberships. Confusing 🙂
adamParticipantPMPro showed it had an upgrade available from WP-Admin. I upgraded and now I don’t see those Advanced user settings above. Did I override the modified version?
adamParticipant@moroccanish maybe this plugin will do what you need?
http://wordpress.org/plugins/bp-force-profile/adamParticipantHi – I came across this article the other day. Might be of help to you:
http://wp.tutsplus.com/tutorials/security/best-practices-for-preventing-buddypress-spam-user-registrations/adamParticipantdid you go to wp-admin->sweetdate->buddypress and check the fields you would like the horizontal search form to show? if not, it won’t appear.
adamParticipantI know lol i tried pasting what i had been trying but couldn’t do it. your code worked. i tried putting in “registration”, but i needed to put in “/registration”.
adamParticipantit’s a fontawesome icon. see here:
http://fontawesome.io/examples/move sweetdate/page-parts/general-register-modal.php to sweetdate-child and try editing this line (remove the <i> tag):
<i class=”icon-<?php echo apply_filters(‘kleo_register_button_icon’,’heart’); ?>”></i>adamParticipantthe register modal one should do it for you:
https://archived.seventhqueen.com/forums/topic/removereplace-the-love-hearts-in-siteadamParticipantthanks – i realized i can just hide the activity settings through css:
COPY CODE#activity-notification-settings { display: none; }
adamParticipantit looks like your About Me fields are showing up like if it was the Looking For section. Have a look at this:
https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image
my guess is that the About Me tab you created was set up with ‘type’ => ‘cite’, when it should be ‘type’ => ‘regular’, and ‘class’ => ‘citetab’ when it should be ‘class’ => ‘regulartab’.adamParticipantthis happens to me sometimes too. i think it may have to do with me switching logins from admin to other users quickly while testing the site. not sure.
adamParticipantyou need to add this code:
https://archived.seventhqueen.com/forums/topic/add-fields-to-member-directoryadamParticipantthat’s strange. do you see your files in wp-content/uploads/album? that’s where they should upload to.
this is the support forum for the BP-Album plugin you’re using: http://buddypress.org/support/forum/plugin-forums/bp-album/adamParticipantFound one more heart in the profile nav: Groups->(heart) Invitations. How can I remove this one as well?
adamParticipantHi – I am able to remove all of the hearts from the site except for one: Friendships. When you click on Friends in the menu on your profile it says (heart) Friendships (two opposite arrows) Requests.
How can I remove or change that heart before Friendships?
Thanks!
adamParticipantAre you referring to a page that lists users with the highest match compatibility to you?
adamParticipantfyi – once i finish working on my site. i plan on hosting it through this company:
http://wpengine.com/. you might want to check them out. wordpress/buddypress is pretty complex and seems to require more than basic hosting. i’m really hoping it will dramatically improve the speed of the site as well.adamParticipantWait, I think you’re talking about the Profile View under Profile on the nav. If so, not sure. Sorry 🙂
adamParticipantthis or something like it is in your functions.php, right?
COPY CODEfunction kleo_my_custom_tab() { global $bp_tabs; $bp_tabs['base'] = array( 'type' => 'regular', 'name' => apply_filters('kleo_extra_tab2',__('About Me', 'kleo_framework')), 'group' => 'About Me', 'class' => 'regulartab' ); /* rtMedia tab - only if plugin installed */ if (class_exists('RTMedia')) { $bp_tabs['rtmedia'] = array( 'type' => 'rt_media', 'name' => __('Our photos', 'kleo_framework'), 'class' => 'mySlider' ); } /* Bp-Album tab - only if plugin installed */ elseif (function_exists('bpa_init') AND sq_option('bp_album', 1) == 1) { $bp_tabs['bp-album'] = array( 'type' => 'bp_album', 'name' => __('Our Photos', 'kleo_framework'), 'class' => 'mySlider' ); }
just delete this part:
COPY CODE$bp_tabs['base'] = array( 'type' => 'regular', 'name' => apply_filters('kleo_extra_tab2',__('About Me', 'kleo_framework')), 'group' => 'About Me', 'class' => 'regulartab' );
adamParticipantI’m having trouble replying with my full code here. it seems to delete bits. maybe that’s the problem. is that the full code you posted?
-
AuthorPosts