-
Prabin replied to the topic Search members based on their usernames in members page search bar in the forum Installing BuddyPress 10 years, 8 months ago
@danbp can you look into this?
-
Nithin K Varrier's profile was updated 10 years, 8 months ago
-
Nithin K Varrier replied to the topic Hide Buddypress pages from google serch. in the forum Installing BuddyPress 10 years, 8 months ago
Thanks a lot djsteveb, danbp and Henry. I updated my robots.txt. Let’s wait for some days.
-
Henry Wright replied to the topic [Resolved] How to delete specific members from a large group? in the forum How-to & Troubleshooting 10 years, 8 months ago
/plugins/bp-custom.php
If you don’t already have one, you should create one yourself.
-
Nithin K Varrier replied to the topic Hide Buddypress pages from google serch. in the forum Installing BuddyPress 10 years, 8 months ago
I tried this bt still showing in google index
-
D Gallery Online's profile was updated 10 years, 8 months ago
-
Henry Wright replied to the topic [Resolved] How to delete specific members from a large group? in the forum How-to & Troubleshooting 10 years, 8 months ago
There may be an easier way via the back-end (I haven’t checked) but via code you could do this in functions.php:
function palmdoc_remove_group_user() {
$group_id = 6 // Change this value
$user_id = 320 // Change this value
groups_leave_group( $group_id, $user_id );}
add_action( 'init', 'palmdoc_remove_group_user' );The next time…[Read more]
-
Henry Wright replied to the topic Hide Buddypress pages from google serch. in the forum Installing BuddyPress 10 years, 8 months ago
You can add this to your robots.txt file:
User-agent: *
Disallow: /members/Feel free to add more fields for the different areas of BuddyPress.
Note that it doesn’t guarantee Googlebot et al won’t index these pages, it just requests that they don’t.
-
loginshelp's profile was updated 10 years, 8 months ago
-
Nithin K Varrier started the topic Hide Buddypress pages from google serch. in the forum Installing BuddyPress 10 years, 8 months ago
Hi,
I want to remove all buddypress pages like members, profile ], groups pages from google search index. Im using yoast plugin.please help
Thanks
-
developer replied to the topic urgent !!!! need a hook which is called during click og comment button urgent! in the forum How-to & Troubleshooting 10 years, 8 months ago
thanks @henrywright
thanks @danbp -
Henry Wright replied to the topic urgent !!!! need a hook which is called during click og comment button urgent! in the forum How-to & Troubleshooting 10 years, 8 months ago
do we have to passed argument along with that hook…
It isn’t mandatory but you can if you want to.
$comment_id,$rand$activitycan be passed to your custom function.Ref:
[Read more]
@param int $comment_id ID of the newly posted activity comment.
@param array $r Array of parsed comment arguments.
@param int $activity ID of the activity i… -
developer replied to the topic urgent !!!! need a hook which is called during click og comment button urgent! in the forum How-to & Troubleshooting 10 years, 8 months ago
thanks @henrywright
a little bit of confusion is still in my mind is that
do we have to passed argument along with that hook…
bp_activity_comment_posted -
kpudz's profile was updated 10 years, 8 months ago
-
Henry Wright replied to the topic Using a generic user not found page in the forum How-to & Troubleshooting 10 years, 8 months ago
A “generic user not found” page would be worse for SEO than a 404 (which would be the correct response for a page not found).
-
Florian replied to the topic Using a generic user not found page in the forum How-to & Troubleshooting 10 years, 8 months ago
Really, almost 3 months later and no one has any suggestions?
-
Florian replied to the topic Special characters cannot be saved in profile in the forum How-to & Troubleshooting 10 years, 8 months ago
Issue resolved, the server had been setup to auto convert character sets, this conflicted and caused this error. Changing this in the php.ini fixed the issue.
-
Florian replied to the topic Thumbnails not resizing in the forum How-to & Troubleshooting 10 years, 8 months ago
I’ve even tried changing the thumbnail settings in /bp-core/bp-core-avatars.php but with no luck.
-
Florian started the topic Thumbnails not resizing in the forum How-to & Troubleshooting 10 years, 8 months ago
Hi,
Many versions back of BuddyPress, I added the following to the bp-custom.php file in the plugins folder:
define ( ‘BP_AVATAR_THUMB_WIDTH’, 200 );
define ( ‘BP_AVATAR_THUMB_HEIGHT’, 200 );
define ( ‘BP_AVATAR_FULL_WIDTH’, 450 );
define ( ‘BP_AVATAR_FULL_HEIGHT’, 450 );Now the thumbnail resizing is no longer working. Without this text the…[Read more]
-
modemlooper replied to the topic Users can´t create groups! in the forum How-to & Troubleshooting 10 years, 8 months ago
you need to debug a bit, try deactivating plugins and change themes to verify those are not causing the problem.
Are you running a cache on the site?
- Load More