-
Henry replied to the topic Hide 'view all matched members' message in the forum Creating & Extending 10 years, 12 months ago
View all 9 matched Members – See more at:
Where does this come from? I’ve never seen it before.
Are you using a plugin to generate that text? I can’t find it anywhere in BP.
-
Henry replied to the topic Hide 'view all matched members' message in the forum Creating & Extending 10 years, 12 months ago
Viewing member 1 to 9 (of 9 active members)
I’m familiar with this text but where does the following text originate from? Are you using a plugin to generate it?
View all 9 matched Members – See more at:
You could hide it with CSS
display: none;
or remove it at the source, via a filter perhaps. -
Henry replied to the topic Notification to user after saving profile changes in the forum How-to & Troubleshooting 11 years ago
Make sure you have
<?php do_action( 'template_notices' ); ?>
in the edit.php template. The template notices hook on to this action. -
Henry replied to the topic User E-Mail Address as Authentification when Signing up in the forum How-to & Troubleshooting 11 years, 1 month ago
Hi @applegateian with user display name you have the problem of spaces in the URLs. I suppose it is possible but in my view it would mean quite a bit of custom code.
-
Henry replied to the topic Disable messages autocomplete in the forum How-to & Troubleshooting 11 years, 1 month ago
I’d add it to bp-custom.php @applegateian
Be careful when enabling this on sites that have thousands of users. You might notice a slowdown in the autocomplete feature working, maybe.
-
bp-help replied to the topic [Resolved] How to remove ”This field can be seen by:” in the forum Creating & Extending 11 years, 1 month ago
@applegateian
Just a guess but did you try:
display: none !important;
-
Henry replied to the topic Adding classes to profile fields in the forum How-to & Troubleshooting 11 years, 1 month ago
Hi @applegateian – I think the problem might be the snippet you’re using to output the data string.
try doing something like this:
if ( $items = bp_get_member_profile_data( array( 'field' => 'Budget' ) ) ) {
[Read more]
foreach ( $items as $item ) {
// put whatever you want here
echo $item;
// put what you want here… -
bp-help replied to the topic Adding classes to profile fields in the forum How-to & Troubleshooting 11 years, 1 month ago
@applegateian
Maybe I am missing something here! Did you add those fields in the dashboard, or was it some custom hack? -
bp-help replied to the topic Adding classes to profile fields in the forum How-to & Troubleshooting 11 years, 1 month ago
@applegateian
If your on the view profile page and you are inspecting with dev tools you should see a tr class with the field_ID followed by td class label and td class data. You should be able to use those to your advantage. -
bp-help replied to the topic Adding classes to profile fields in the forum How-to & Troubleshooting 11 years, 1 month ago
@applegateian
I just created a checkbox called “Sign up for our newsletter” and this is what is return when I inspect the element:
<div class="editfield field_21 field_sign-up-for-our-newsletter"><div class="checkbox">
<span class="label">Sign up for our newsletter </span><label><input…[Read more]
-
bp-help replied to the topic Adding classes to profile fields in the forum How-to & Troubleshooting 11 years, 1 month ago
@applegateian
Have you tried using firefox in conjunction with firebug to target those elements? You could also use google chromes or IE’s dev tools. -
Henry replied to the topic Activation email – second time round causes error in the forum How-to & Troubleshooting 11 years, 1 month ago
The activation form is there mainly to give website admininstrators the ability to activate users accounts manually. So, removing the form won’t cause any problems.
One issue with the text you’ve added to the page – keep in mind any logged out website visitor viewing the activation page will see that text – so “your account has…[Read more]
-
@mercime replied to the topic [Resolved] Show member recent post in members loop in the forum How-to & Troubleshooting 11 years, 5 months ago
@applegateian see how it’s done in BuddyBlog http://buddydev.com/buddypress/introducing-buddyblog-allow-users-to-blog-from-their-buddypress-profile/
-
mattg123 replied to the topic Getting the large avatar in the forum Installing BuddyPress 11 years, 5 months ago
@applegateian, henries code should work, but as you’ve experienced it won’t change the current size of the avatars. I also believe bp has thumbnail avatars and “full” the smaller “thumbnail” the ones wordpress uses is 50px and the larger(which can be grabbed with bp_core_fetch_avatar) are 150px by 150px.
bp_core_fetch_avatar( array(
[Read more]
'item_id'… -
Henry replied to the topic Getting the large avatar in the forum Installing BuddyPress 11 years, 5 months ago
I’m not 100% sure this will resolve the issue but try deleting your avatar and then uploading a new one.
BuddyPress may have ‘crunched’ the image on upload (it may have created a full size image and also a much smaller thumb image). It is possible that it is still serving your old ‘very small’ thumbnail image at the bigger 192×192…[Read more]
-
Henry replied to the topic Xprofile get field data checkbox returns array in the forum How-to & Troubleshooting 11 years, 5 months ago
That doesn’t look quite right to me. I’ve never used the $multi_format approach myself so perhaps shanebpdev can advise on that. My approach would be this:
<?php if ( $sectors = bp_get_profile_field_data( 'field=Specialist Sectors' ) ) { ?>
<?php foreach ( $sectors as $sector ) { ?>
<?php echo $sector; ?>
<?php } ?>
<?php }… -
bp-help replied to the topic [Resolved] Remove 'Public Message' button in child theme in the forum Creating & Extending 11 years, 6 months ago
@applegateian
I tested it and it works as it should so maybe you need to give more info about your setup because something else is interfering with this function. It could be a plugin as well. Also, have you followed the procedures here in regards to theme…[Read more] -
bp-help replied to the topic [Resolved] Remove 'Public Message' button in child theme in the forum Creating & Extending 11 years, 6 months ago
@applegateian
Check the single quotes around bp_member_header_actions. They need to be changed to regular single quotes. If you copied and pasted the code above it would not be right. You can try this in between opening and closing php tags:
// Removing public message optionfunction remove_public_message_button() {
remove_filter(…[Read more] -
@mercime replied to the topic Adding specific classes to a member based on xprofile type in the forum How-to & Troubleshooting 11 years, 6 months ago
@applegateian best bet would be to ask plugin dev as we have no access to the premium plugin. Check out https://codex.wordpress.org/Function_Reference/body_class
-
bp-help replied to the topic [Resolved] Change avatar crop feature not working in the forum How-to & Troubleshooting 11 years, 6 months ago
@applegateian
I would contact that themes author and explain the situation and see if they can help. I am not familiar with that theme but maybe someone else here may have more insight. - Load More
@applegateian
Active 10 years, 2 months ago