-
Henry Wright replied to the topic Activity stream filter in the forum How-to & Troubleshooting 8 years, 2 months ago
Hi,
bbp_new_reply
is a bbPress action? You should try asking the guys over at bbPress. -
Henry Wright replied to the topic How to Customise Registration Messages that Survive BuddyPress Updates? in the forum How-to & Troubleshooting 8 years, 2 months ago
Thanks for the heads up @danbp! I’ve updated my post above π
-
Henry Wright replied to the topic Show/sync all imported members on memberlist in the forum How-to & Troubleshooting 8 years, 2 months ago
You can use the
bp_update_user_last_activity()
function to update a member’s last active date. Of course, you’d want to use this in some kind of loop.Hope this helps.
-
Henry Wright replied to the topic How to Customise Registration Messages that Survive BuddyPress Updates? in the forum How-to & Troubleshooting 8 years, 2 months ago
You can open the .po file in Poedit and then do your editing. No need for Dreamweaver.
Your .po and .mo files should be named based on your locale. So as an example, mine are:
wp-content/languages/plugins/buddypress-en_GB.po
wp-content/languages/plugins/buddypress-en_GB.moEDIT: Do not use these paths; instead, see @danbps update below.
-
Henry Wright replied to the topic How to Customise Registration Messages that Survive BuddyPress Updates? in the forum How-to & Troubleshooting 8 years, 2 months ago
You can create a language file. Check out this article:
-
Henry Wright replied to the topic Pay to send message feature – seeking advice in the forum Creating & Extending 8 years, 2 months ago
Hi @r083r7
You’ll need to output a button on the front-end which, when clicked by a Type B user, would save data to that user’s meta info. The data value you save could be the amount and the key could be
pay_to_message
. The absence of the key against a particular user’s meta could indicate the feature is disabled.Does that make sense?
-
Henry Wright replied to the topic Login conflict in the forum How-to & Troubleshooting 8 years, 2 months ago
You could use member types to create child and adult types and add a radio button to the BuddyPress registration form?
-
Henry Wright replied to the topic BuddyPress Branding in the forum Miscellaneous 8 years, 2 months ago
Here’s an example of what’s allowed:
Activity Stream Plus for BuddyPress
Note, the following is an example of what isn’t allowed:
BuddyPress Activity Stream Plus
You may come across older plugins that use the 2nd naming style. That’s because the guidance above was introduced by the WordPress Plugin Review Team relatively recently.
-
Henry Wright replied to the topic How @mention all members in the forum How-to & Troubleshooting 8 years, 2 months ago
Hi @julia_b,
I haven’t tested this so try in your testing site first:
// Change this to the ID of the member you'd like to add friends to.
$id = 1;$user_query = array(
'populate_extras' => false,
'exclude' => $id
);$user_query = new BP_User_Query( $user_query );
foreach ( $user_query->results as $user ) {
$status =…[Read more] -
Henry Wright replied to the topic How @mention all members in the forum How-to & Troubleshooting 8 years, 2 months ago
Hi @julia_b
I chose not to add an @ all command because it would be easy for a user to spam people.
@ friends is supported though. Hope that helps!
-
Henry Wright replied to the topic Error 404 for non logged in users in the forum How-to & Troubleshooting 8 years, 2 months ago
I can successfully access your profile:
http://www.cosegeniali.net/membri/tizianopitisci/profile/
The following link won’t work for me because I’m not tizianopitisci. Only that user is allowed to access that page.
-
Henry Wright replied to the topic Error 404 for non logged in users in the forum How-to & Troubleshooting 8 years, 2 months ago
Is that a bug?
I don’t think so because I can’t reproduce at my end. I think there must be something in your setup that’s causing the issue. Do you have a bp-custom.php file with code in it? That could be a source of the problem.
Alternatively you might need to test again with a fresh database.
-
Henry Wright replied to the topic Error 404 for non logged in users in the forum How-to & Troubleshooting 8 years, 2 months ago
How about your theme?
-
Henry Wright replied to the topic Adding a link to a user's blog posts in BuddyPress profile in the forum How-to & Troubleshooting 8 years, 2 months ago
You could use
WP_Query
. Here’s an example:$query = new WP_Query(
[Read more]
array(
'author' => bp_displayed_user_id()
)
);
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
echo get_the_title();
// Output more stuff here if you like.
}
wp_reset_postdata();
} else {
//… -
Henry Wright replied to the topic Error 404 for non logged in users in the forum How-to & Troubleshooting 8 years, 2 months ago
Which plugins do you have activated?
-
Henry Wright replied to the topic Activity feed difficulties in the forum How-to & Troubleshooting 8 years, 2 months ago
With reference to the animation, have you tried contacting the theme’s author? Usually when there’s an issue like this it’s worth reporting it so they can issue a global fix.
-
Henry Wright replied to the topic Is it possible to transform a buddypress site to a viber type site for free usin in the forum Showcase 8 years, 2 months ago
I don’t think it will be easy but it’s certainly possible.
-
Henry Wright replied to the topic Custom Post Type Activity Date_Recorded Sets to 0000-00-00 00:00:00 in the forum Creating & Extending 8 years, 2 months ago
wp_insert_post()
takes an array as its first param.post_date
is set to the current time by default so something is setting it to 0000-00-00 00:00:00.If you’re talking about BuddyPress activity items (not WordPress posts) then
recorded_time
also defaults to the current time. Again, in this case there must be something in your plugin that is…[Read more] -
Henry Wright replied to the topic Free Theme almost ready in the forum Showcase 8 years, 3 months ago
Would you prefer feedback on GitHub or on the group you created at buddycore.com?
-
Henry Wright replied to the topic Free Theme almost ready in the forum Showcase 8 years, 3 months ago
as long as itβs not an octocat.txt file
Ah man, my plans have been ruined π
- Load More
@henrywright
Active 8 months, 1 week ago