-
aces replied to the topic Exclude self from members directory in the forum How-to & Troubleshooting 11 years, 6 months ago
https://wordpress.org/plugins/bp-ninja/ ?
I haven’t tried it myself.
I’ve seen code snippets around for a stealth mode but don’t have anything to hand…. https://www.google.com/search?q=buddypress+stealth+mode
-
bp-help replied to the topic Exclude self from members directory in the forum How-to & Troubleshooting 11 years, 6 months ago
@henrywright-1
Yes by default. Not really sure why but you could write a function to exclude the current logged in user. -
NewKindOfCool replied to the topic [Resolved] Ajax Fails When Posting On Another User's Activity? in the forum How-to & Troubleshooting 11 years, 6 months ago
@henrywright-1 & @mercime, thank you both for your replies. @mercime, We tried deactivating all plugins and even made a fresh install on another site test.richgannon.net without any plugins and just the basic BP Default theme…same issue. I’ll let my partner know about it possibly being a cache issue or a JS conflict, but I’m not as knowledgeable…[Read more]
-
bp-help replied to the topic Complete list of all BuddyPress pages in the forum How-to & Troubleshooting 11 years, 6 months ago
@henrywright-1
Other than the activity and friends component as you mentioned it looks good at a quick glance. -
ilGhera replied to the topic [Resolved] Activity stream accessible to everyone in the forum Installing BuddyPress 11 years, 6 months ago
Yes @bphelp, I’m sure is custom code but I have to find out witch one, as I made a lot of work!
Thanks for your help, thanks to @henrywright-1 too 😉 -
bp-help replied to the topic Complete list of all BuddyPress pages in the forum How-to & Troubleshooting 11 years, 6 months ago
@henrywright-1
Have you succeeded in your pages list? I think it would be a helpful contribution to the codex. I did my best at covering buddypress and bbpress pages with the plugin Private Community For BP Right now the only thing that makes me hesitate releasing it to the repo is the uncertainty of if I covered all BP specific pages and the fact…[Read more] -
danbp replied to the topic Duplicate profile field names in the forum How-to & Troubleshooting 11 years, 6 months ago
Hi @henrywright-1,
i guess you can also filter by group profile ID
<?php if ( bp_has_profile(‘profile_group_id=2’) ) :
echo bp_get_profile_field_data( ‘field=Email’ )
endif;if ( bp_has_profile(‘profile_group_id=45’) ) :
echo bp_get_profile_field_data( ‘field=Email’…[Read more] -
funmi omoba replied to the topic How to check if member has avatar ? in the forum How-to & Troubleshooting 11 years, 6 months ago
@henrywright-1, alert still not closing when user click on close button but thanks for your help anyways.
-
funmi omoba replied to the topic How to check if member has avatar ? in the forum How-to & Troubleshooting 11 years, 6 months ago
@henrywright-1, still not working. the check works perfectly but to close the notification is not working. do I need jquery to make the alert close?
thanks
-
Prince Abiola Ogundipe replied to the topic [Resolved] Changing the default mystery man avatar in the forum How-to & Troubleshooting 11 years, 6 months ago
Here is another way of doing it. In your setting >>> discussion >> default avatar them choose mystry man and the following code will go into functions.php
//Custom avatar for no avatar user
[Read more]
function myavatar_add_default_avatar( $url ){
return get_stylesheet_directory_uri() .'/_inc/images/user-nopic2.png';
}
add_filter(… -
Prince Abiola Ogundipe replied to the topic [Resolved] Member search form in header in the forum How-to & Troubleshooting 11 years, 6 months ago
-
bp-help replied to the topic [Resolved] Changing the default mystery man avatar in the forum How-to & Troubleshooting 11 years, 6 months ago
@henrywright-1
Hey thanks for being a good sport. Sorry I felt inclined to show my sense of humor but I could not pass up the opportunity. On a serious note though, and I am sure you know that plugins are just functions with hooks that has required commented info at the top of the php file. That is really the only difference between a plugin and a…[Read more] -
bp-help replied to the topic [Resolved] Changing the default mystery man avatar in the forum How-to & Troubleshooting 11 years, 6 months ago
@henrywright-1
I have to disagree, a plugin coded well is no different than a function in a themes functions.php if a plugin introduces bugs then that can be nut cracking. On the other hand if you introduce code with syntax errors, and clashing functions then you have essentially cracked your own nuts. No pun intended! 🙂 -
meg@info replied to the topic SEO for BuddyPress in the forum How-to & Troubleshooting 11 years, 7 months ago
Hi @henrywright-1,
I think the free version of SeoPress cover 70% of SEO in buddypress :
-
bp-help replied to the topic SEO for BuddyPress in the forum How-to & Troubleshooting 11 years, 7 months ago
@henrywright-1
I don’t know of any that is fully compatible but you can try this:
http://bp-tricks.com/coding/making-buddypress-compatible-with-the-wordpress-seo-plugin-from-yoast/ -
@mercime replied to the topic Activity stream comment reply form displaying temporarily on page load in the forum How-to & Troubleshooting 11 years, 7 months ago
@henrywright-1 I recall seeing that happen once with a BP Default child theme and the other time with a “BuddyPress-ready” theme. It was a JS issue and was fixed with a point upgrade. What theme are you using?
-
@mercime replied to the topic Activity stream comment reply form displaying temporarily on page load in the forum How-to & Troubleshooting 11 years, 7 months ago
@henrywright-1 I’ve seen this issue in old old BP version. Do provide information about your WP/BP versions, theme used, plugins installed, etc. https://buddypress.org/support/topic/when-asking-for-support-2/
-
shanebp replied to the topic Private Message Button in Member List Loop in the forum Installing BuddyPress 11 years, 7 months ago
I’m not going to spoon-feed this to you.
But you’re on the right track.
( I should have said ‘ The clue is in your reply…’ )
You’ve found what is the same in those two situations.
So what is different about them ?Sometimes it’s easier to start anew.
For example – instead of ‘how to I change this to do that’, start with…[Read more] -
shanebp replied to the topic Private Message Button in Member List Loop in the forum Installing BuddyPress 11 years, 7 months ago
@henrywright-1
What’s different? The answer is in your reply “Thanks for that… ”@valuser
That usage makes sense and has been mentioned by others.
But it’s not a simple tweak.
And would require an admin screen so you could choose to show / not show the button in loops.
And etc. etc.
I’ll write an article in the next week or so on
PhiloPress -
@mercime replied to the topic Check if current page is the login page in the forum How-to & Troubleshooting 11 years, 7 months ago
@henrywright-1 Didn’t know you created a special login page. Since it’s a Page you created specifically for login, you should be able to use the regular WP conditional for a specific Page https://codex.wordpress.org/Conditional_Tags#A_PAGE_Page or Page Template https://codex.wordpress.org/Conditional_Tags#Is_a_Page_Template
- Load More
@henrywright-1
Active 9 years, 10 months ago