-
Paul Wong-Gibbs replied to the topic Disable "Link Preview" in the forum How-to & Troubleshooting 10 years, 2 months ago
Right. That’s WordPress 4.4’s embed feature https://codex.wordpress.org/Version_4.4
I think we added support for that to our activity stream in our last relese.
If you don’t want the feature at aall, https://wordpress.org/plugins/disable-embeds/ might work. -
Henry Wright replied to the topic Is buddy press suitable? in the forum Creating & Extending 10 years, 2 months ago
Is it a relatively simple process?
Yes, BuddyPress is just a plugin so once you have WordPress set up you can install BuddyPress via a few clicks.
Importing members from a spreadsheet will most likely need a plugin. Try searching the Plugin Directory to see what is available.
-
Henry Wright replied to the topic Is buddy press suitable? in the forum Creating & Extending 10 years, 2 months ago
BuddyPress can do all of these things right out of the box. Regarding point 5, you will need to disable both the private messaging and activity components. That can be done from the admin area in a few clicks.
-
Paul Wong-Gibbs replied to the topic After Update buddypress 2.5, Mail not send html fromat in the forum How-to & Troubleshooting 10 years, 2 months ago
You must have a plugin that affects how WordPress delivers email. Can you list what plugins you have active?
-
Henry Wright replied to the topic howto downgrade? in the forum Installing BuddyPress 10 years, 2 months ago
You shouldn’t *need* to restore your database.
@djpaul I’m assuming that doesn’t apply to every new release though?
-
Henry Wright replied to the topic Limit Comments Per User in the forum How-to & Troubleshooting 10 years, 2 months ago
It isn’t really a copy-and-paste example. You’ll need to be comfortable with PHP and WordPress 🙁
Alternatively though, you could look for a plugin in the Plugin Directory. Maybe the functionality you need already exists?
-
Jeffin Johnson's profile was updated 10 years, 2 months ago
-
Paul Wong-Gibbs replied to the topic PHP to get Field-Group-ID given Field-Group-Name? in the forum Creating & Extending 10 years, 2 months ago
I took a quick look and can’t see one function. There’s probably a better way, but you could use
xprofile_get_field_id_from_name( $name )and pass that toxprofile_get_field( ... )to get aBP_XProfile_Fieldobject, then access its->$group_idproperty. -
Flag of Thailand's profile was updated 10 years, 2 months ago
-
Henry Wright replied to the topic Limit Comments Per User in the forum How-to & Troubleshooting 10 years, 2 months ago
It’s fairly easy to get the comment count for a particular user.
$args = array(
'user_id' => bp_loggedin_user_id(),
'count' => true
);
$count = get_comments( $args );From that point on, depending on what action the user is taking on your site, you can check the count against a pre-determined figure:
if ( $count < 10 ) {[Read more]
// The… -
Paul Wong-Gibbs replied to the topic 'bp_email_use_wp_mail' Causing Issues in the forum How-to & Troubleshooting 10 years, 2 months ago
To update this thread, I’ve just added a fix for emails not sending for certain server configurations. See https://buddypress.org/support/topic/read-this-first-buddypress-2-5-master-list/ and https://buddypress.trac.wordpress.org/ticket/6947
I think this will help many people, but I would surprised if it fixed everything for everyone. Fingers crossed!
-
Paul Wong-Gibbs replied to the topic 'bp_email_use_wp_mail' Causing Issues in the forum How-to & Troubleshooting 10 years, 2 months ago
2.) Then when altering configuration (i.e. adding add_filter( ‘bp_email_use_wp_mail’, ‘__return_true’ ); to BP_Custom), and testing again, the emails output a combination of WP Better Email and the default template with various CSS Styles altering different parts of the email with each new email sent.
BTW, this is exactly what I expect to happen.…[Read more]
-
Paul Wong-Gibbs replied to the topic Disable "Link Preview" in the forum How-to & Troubleshooting 10 years, 2 months ago
Can you share a screenshot of the problem?
-
Paul Wong-Gibbs replied to the topic bad certificate in BP French in the forum How-to & Troubleshooting 10 years, 2 months ago
I’ll get it reported, but don’t expect any immediate fix. It’s beyond our immediate control.
-
Paul Wong-Gibbs replied to the topic Activation mails not send after update in the forum How-to & Troubleshooting 10 years, 2 months ago
I’ve just added a fix for emails not sending for certain server configurations. See https://buddypress.org/support/topic/read-this-first-buddypress-2-5-master-list/ and https://buddypress.trac.wordpress.org/ticket/6947
I think this will help many people, but I would surprised if it fixed everything for everyone. Fingers crossed!
-
Paul Wong-Gibbs replied to the topic howto downgrade? in the forum Installing BuddyPress 10 years, 2 months ago
You shouldn’t *need* to restore your database.
-
RecoilDesign's profile was updated 10 years, 2 months ago
-
RecoilDesign replied to the topic Custom post type comment tracking in the forum How-to & Troubleshooting 10 years, 2 months ago
I’m in the same boat and would love to hear some feedback on this question. It’s exciting to see Custom Post Type Tracking included in 2.5 but the documentation is a little hard to understand.
If anyone could please explain how to enable comment tracking for custom post types (in layman’s terms), it would be a huge help.
-
Henry Wright replied to the topic howto downgrade? in the forum Installing BuddyPress 10 years, 2 months ago
Did you keep a backup copy of your database? If so then you’ll need to use that. Then there’s the files and folders. You should be able to get the 2.4.3 zip from:
-
Paul Wong-Gibbs replied to the topic Activation mails not send after update in the forum How-to & Troubleshooting 10 years, 2 months ago
@ingeb1983 Thanks – narrows down the possibilities. I think too we’ll need to wait until 2.5.1 comes out and we can see if that made any change.
- Load More