-
Henry Wright replied to the topic admin-ajax.php high wait time on pingdom test in the forum How-to & Troubleshooting 11 years ago
admin-ajax.php is known for being clunky, but not 10-second-wait clunky. Which plugins are you running? Which theme? And also do you have any custom code in place that calls admin-ajax.php?
-
Henry Wright replied to the topic admin-ajax.php high wait time on pingdom test in the forum How-to & Troubleshooting 11 years ago
admin-ajax.php is known for being clunky. Which plugins are you running? Which theme? And also do you have any custom code in place that calls admin-ajax.php?
-
bp-help replied to the topic [Resolved] adding bp-custom.php kills site in the forum How-to & Troubleshooting 11 years ago
@stunley
You can’t define the default component outside of php tags. Try this:
<?php
// hacks and mods will go here
/**
Change BuddyPress default Members landing tab.
**/
define('BP_DEFAULT_COMPONENT', 'profile' );
?>
-
bp-help replied to the topic [Resolved] adding bp-custom.php kills site in the forum How-to & Troubleshooting 11 years ago
@stunley
You can’t define the default component outside of php tags. Try this:
<?php
// hacks and mods will go here
/**
Change BuddyPress default Members landing tab.
**/
define('BP_DEFAULT_COMPONENT', 'profile' );
?>
-
bp-help replied to the topic [Resolved] adding bp-custom.php kills site in the forum How-to & Troubleshooting 11 years ago
@stunley
You can’t define the default component outside of php tags. Try this:
m trying to add a bp-custom.php to the plugins folder with this code…<?php
// hacks and mods will go here
/**
Change BuddyPress default Members landing tab.
**/
define('BP_DEFAULT_COMPONENT', 'profile' );
?>
-
Paul Wong-Gibbs started the topic BuddyCamp Brighton (UK) in the forum Miscellaneous 11 years ago
I’m real happy to announce a new BuddyPress conference: BuddyCamp Brighton (UK) is officially on the calendar for August 8, 2015!
BuddyCamp will be on August 8th 2015 at Clearleft’s 68 Middle Street venue in Brighton (UK). This will be the first BuddyCamp outside of North America and Canada, so we’re really excited to be bringing it to Bri…[Read more]
-
Paul Wong-Gibbs started the topic BuddyCamp Brighton (UK) in the forum Miscellaneous 11 years ago
I’m real happy to announce a new BuddyPress conference: BuddyCamp Brighton (UK) is officially on the calendar for August 8, 2015!
BuddyCamp will be on August 8th 2015 at Clearleft’s 68 Middle Street venue in Brighton (UK). This will be the first BuddyCamp outside of North America and Canada, so we’re really excited to be bringing it to Bri…[Read more]
-
Henry Wright replied to the topic How to show sitewide activity in profile page in the forum How-to & Troubleshooting 11 years ago
In that case, you can just do this:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>
<?php while ( bp_activities() ) : bp_the_activity(); ?><?php locate_template( array( 'activity/entry.php' ), true, false ); ?>
<?php endwhile; ?>
<?php endif; ?>Unless you filter this, it’ll show everything.
Ref:…[Read more]
-
Henry Wright replied to the topic How to show sitewide activity in profile page in the forum How-to & Troubleshooting 11 years ago
In that case, you can just do this:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>
<?php while ( bp_activities() ) : bp_the_activity(); ?><?php locate_template( array( 'activity/entry.php' ), true, false ); ?>
<?php endwhile; ?>
<?php endif; ?>Unless you filter this, it’ll show…[Read more]
-
Henry Wright replied to the topic Sponsored Ads in the forum Requests & Feedback 11 years ago
I haven’t used anything like this myself, but there may be people here who have?
-
Henry Wright replied to the topic How to show sitewide activity in profile page in the forum How-to & Troubleshooting 11 years ago
Hi @nickofnight,
In order to see the sitewide activity stream, by default members can go to:
example.com/activity. Activity related to a particular member can be seen by going toexample.com/members/usernameWhy don’t you just redirect everyone to the first link on login?
-
locke shads's profile was updated 11 years ago
-
Henry Wright replied to the topic Sponsored Ads in the forum Requests & Feedback 11 years ago
Hi @mecceo
Yes. You have 3 options:
Search for a plugin on the Plugin Directory
Write some code yourself. Feel free to ask any “how to” questions on here
hire a developer -
Henry Wright replied to the topic Sponsored Ads in the forum Requests & Feedback 11 years ago
Hi @mecceo
Yes. You have 3 options:
Search for a plugin on the Plugin Directory
Write some code yourself
hire a developer -
Nithin K Varrier replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
Anyone facing same issue??? please help!
-
Nithin K Varrier replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
The same code working without any problem in my localhost and http server, problem only with https.
-
Henry Wright replied to the topic Create alternate version of avatar on upload in the forum Creating & Extending 11 years ago
Is the Buddypress avatar handled the same way as the normal WordPress thumbnails? i.e. functions?
No. See the
bp_core_avatar_handle_upload()function for how avatars are uploaded in BP.Ref: https://github.com/buddypress/BuddyPress/blob/master/src/bp-core/bp-core-avatars.php#L794
-
Henry Wright replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
@nithin270 this shouldn’t be happening. To debug this your best bet is to deactivate all plugins, revert to TwentyFifteen and remove all custom code you have in functions.php. Then, one-by-one, activate each of your plugins, checking each time if the problem is introduced. This trial-and-error approach should hopefully allow you to find the culprit.
-
Nithin K Varrier replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
We have just finished up with a WP project with a BuddyPress module to it, and the site is in https status. As it is a unique offering, the client have strictly forbidden us from sharing the url as the launch is around the corner. ( which makes it all the more frustrating from our point of view).
The issue is, a Fresh User cannot login and…[Read more]
-
Henry Wright replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
Yes I know that. But what is the solution
I’m not really sure from the info you’ve provided. You’ll need to provide a more detailed outline of the problem.
- Load More