-
Roger Coathup updated the Custom Emails page, on the BuddyPress Codex 8 years, 6 months ago
BuddyPress only includes emails for BuddyPress core functionality. Blog posting is not part of BuddyPress, but it could be an integral part of your community. Let’s look at an example to send an email to a blog p […]
-
Roger Coathup replied to the topic BP 2.5 + Transcational email (sendgrid) in the forum How-to & Troubleshooting 8 years, 8 months ago
@djpaul — are you saying that existing sites with transactional email systems will continue to work if they upgrade to 2.5 (we have clients using both SendGrid and Mandrill – via their recommended WP plugins)?
-
Roger Coathup replied to the topic Local or remote in the forum How-to & Troubleshooting 9 years ago
I’ve not encountered any issues locally.
My preferred setup is Chassis to provide local WordPress environment on vagrant; then adding BuddyPress however you prefer (from wp-admin or manually). Works great on OSX (although there are some general config changes with VirtualBox on El Capitan).
-
Roger Coathup replied to the topic Creating marketplace using buddypress in the forum Showcase 9 years, 2 months ago
Hi Ollie,
if you provide contact details on your post, will be happy to send through some details on reference sites.
Cheers, Roger
-
Roger Coathup replied to the topic Creating marketplace using buddypress in the forum Showcase 9 years, 2 months ago
Hi Ollie,
this is all achievable with a custom build on top of BuddyPress and WordPress.
We’ve built similar marketplace type sites on the platform in the past. BP is a useful base for the profiles in this scenario, but also the messaging, and the activity items (which can help with audit trails and transaction history).
However, 50 hours is…[Read more]
-
Roger Coathup replied to the topic Duplicate activity/members/groups seperate language in the forum How-to & Troubleshooting 9 years, 3 months ago
The default BuddyPress site setup only supports a single activity, members, groups directory page.
One solution is to create your own custom page templates, and embed the code for the activity, member and group loops in the template. You’d then assign it to your duplicate pages. You can read more about coding your own loops in the documentation…[Read more]
-
Roger Coathup replied to the topic buddypress and multisite. Having troubles in the forum How-to & Troubleshooting 9 years, 3 months ago
For point 3 — make sure you are deleting your users from the network admin panel, and not just removing them from a specific site using the site’s dashboard.
For point 4 — members will typically show once they have logged into the site
For point 2 — you need to be more specific about the problem you are seeing – rather than just saying “it…[Read more]
-
Roger Coathup replied to the topic buddypress and multisite. Having troubles in the forum How-to & Troubleshooting 9 years, 3 months ago
Please see https://buddypress.trac.wordpress.org/ticket/6360 and associated tickets for a fix for point 1. It’s a known problem.
-
Roger Coathup replied to the topic Facebook in the forum Showcase 9 years, 3 months ago
We’ve worked with the Premium version of WP-FB-Autoconnect on a number of sites. It does the job.
You could also take a look at the WordPress-Social-Login project on GitHub, which looks interesting.
-
Roger Coathup replied to the topic [Resolved] Users Registration page only reloads and doesn't submit in the forum How-to & Troubleshooting 9 years, 7 months ago
Have you got pretty permalinks enabled? Do your other pages all load correctly (posts / pages / archives) with the correct permalinks?
-
Roger Coathup updated the bp_get_template_part Filter page, on the BuddyPress Codex 9 years, 7 months ago
Use the bp_get_template_part filter when you want to filter the template returned by BuddyPress’s bp_get_template_part() function. Your filter should accept three arguments ( $templates, $slug, $name ).
The […]
-
Roger Coathup replied to the topic Styling user roles differently? Different templates in the forum How-to & Troubleshooting 9 years, 7 months ago
You can add the following template to your theme to override how members profile are displayed: /buddypress/members/single/index.php
In that index.php you can include different template parts to display the user based on their role.
So, you’d have a template part to display writers, and a different template part to display subscribers.
You can…[Read more]
-
Roger Coathup replied to the topic Styling user roles differently? Different templates in the forum How-to & Troubleshooting 9 years, 7 months ago
You can add the following template to your theme to override how members profile are displayed: /buddypress/members/single/index.php
In that index.php you can include different template parts to display the user based on their role.
So, you’d have a template part to display writers, and a different template part to display subscribers.
-
Roger Coathup replied to the topic Customizing Buddypress Activity Wall in the forum How-to & Troubleshooting 9 years, 7 months ago
Changing these titles isn’t the easiest thing, but BuddyPress does provide 2 ways you can do it. However, hacking core files like bp-activity-loader.php is definitely not one of them. [Never hack core files — have a Google if it’s not obvious to you why you shouldn’t]
Ok the 2 solutions are:
Use a language / translation file
Use the…[Read more] -
Roger Coathup replied to the topic Customizing Buddypress Activity Wall in the forum How-to & Troubleshooting 9 years, 7 months ago
Changing these titles isn’t the easiest thing, but BuddyPress does provide 2 ways you can do it. However, hacking core files like bp-activity-loader.php is definitely not one of them. [Never hack core files — have a Google if it’s not obvious to you why you shouldn’t]
Ok the 2 solutions are:
Use a language / translation file
Use the…[Read more] -
Roger Coathup replied to the topic Customizing Buddypress Activity Wall in the forum How-to & Troubleshooting 9 years, 7 months ago
Changing these titles isn’t the easiest thing, but BuddyPress does provide 2 ways you can do it. However, hacking core files like bp-activity-loader.php is definitely not one of them. [Never hack core files — have a Google if it’s not obvious to you why you shouldn’t]
Ok the 2 solutions are:
Use a language / translation file
Use the…[Read more] -
Roger Coathup replied to the topic Comments in Activity Stream don't link to Comments in blogs Problem in the forum Requests & Feedback 9 years, 7 months ago
You said your sites are private — have you selected the option to ‘discourage search engines’ in your site settings?
By default, comment synching won’t work on sites where search engines are discouraged. If so, you’ll need to filter bp_blog_is_public to return true to enable comment synching.
-
Roger Coathup replied to the topic [Resolved] How to create Loop from groups_get_user_groups output in the forum Creating & Extending 10 years, 1 month ago
Correction — you can also use bp_group_name() by passing a group to it as its argument.
Take your group_id, instantiate a group, and pass it to bp_group_name():
$args = array(
'group_id' => $my_id
);$group = groups_get_group( $args );
..
bp_group_name( $group);
-
Roger Coathup replied to the topic [Resolved] How to create Loop from groups_get_user_groups output in the forum Creating & Extending 10 years, 1 month ago
For a loop like that you can use bp_has_groups() instead of groups_get_user_groups(). Is there a reason why you rejected that approach?
Then a my groups widget can have a simple core like this:
<?php if ( bp_has_groups( 'type=alphabetical&user_id=' . bp_loggedin_user_id() ) ) : ?><ul id="my-groups-list">
<?php while ( bp_groups() )…[Read more] -
Roger Coathup replied to the topic ivette manzur : Need help with S2MEMBERS in the forum How-to & Troubleshooting 10 years, 10 months ago
or even easier for the displayed user id:
bp_displayed_user_id();
- Load More
@rogercoathup
Active 4 years, 7 months ago