Mathieu Viet
Forum Replies Created
-
Forum: Plugins
In reply to: [BP Avatar Suggestions] Compatibility with wpml-mediaYou mean as soon as Wpml-media is activated, it makes BP Avatar Suggestions plugin fail ? In other words, if you deactivate Wpm-media, avatar suggestions are working ?
Forum: Plugins
In reply to: [BP Avatar Suggestions] Upgrade to WP4.4.2 doesn't workI’ve just checked. Everything works great for me.
Could you share a bit more about your configuration, because if you use BuddyPress + BP Avatar Suggestions with no other plugins, i have no issue.
Forum: Plugins
In reply to: [WP Idea Stream] Rating doesn't seem to workIf you are using Jetpack Publicize or Sharing modules, this could explain the issue.
I will fix it in next upgrade.
Forum: Plugins
In reply to: [BuddyDrive] Buddydrive only available for defined rolethis is something i still need to work on by improving the way BuddyDrive uses capability checks. Very soon 🙂
Forum: Plugins
In reply to: [BuddyDrive] Buddydrive files to amazon s3 or dropboxi think it will be great to have this in, i totally agree. I’m fully open to let anyone motivated by achieving this to contribute to the plugin to help me bring this to BuddyDrive 🙂
Forum: Plugins
In reply to: [BuddyDrive] Image thumbnails are not workingThumbnails are only generated for public files.
Forum: Plugins
In reply to: [WP Idea Stream] Sort ideas by categoriesYou can use the ideastream category widget to achieve this.
Forum: Plugins
In reply to: [BuddyDrive] BP Group Files Anonymous AccessHi @fj_marcin
i’m sorry this part is not filterable. I promise i’ll include a way to let you do this in next plugin upgrade.
It’s on my todo list: https://github.com/imath/buddydrive/issues/55
Forum: Plugins
In reply to: [BuddyDrive] admin create folders and menu link visibiltyHi,
I’m currently working on the next upgrade of the plugin. It will be soon possible to view any folders/files of the groups a user is member of from his profile and he will be able to add files into any of these folders. So it should help you to achieve your goal.
If this
Also, how can i hide the buddydrive link on their profile so only the user can see it?
means you want to only show the BuddyDrive link to logged in users viewing their own profile, then you can use a bp-custom.php file and add this code in it :
<?php function michael_iresource_only_self_profile() { $bp = buddypress(); if ( isset( $bp->bp_nav['buddydrive'] ) ) { $bp->bp_nav['buddydrive']['show_for_displayed_user'] = bp_is_my_profile() || bp_current_user_can( 'bp_moderate' ); } } add_action( 'bp_buddydrive_setup_nav', 'michael_iresource_only_self_profile' );Forum: Plugins
In reply to: [BuddyDrive] How do we get rid of this title on the homepage?The author of your theme has the reply.
In the meantime, you should try to edit the page title to something like “files” into the WordPress Administration (page – edit screen)
Forum: Plugins
In reply to: [WP Idea Stream] share buttonHi Martin,
I have a bad english too, so no problem at all 🙂
I guess you are talking about BuddyPress profiles. I think it should be possible in a future release, but for the introduction of this feature i wanted to only load scripts in WP Idea Stream areas.
BuddyPress is currently working on embeddable activities, this will probably help.
Since 1.3.3, you should be able to create your own privacy options :
https://github.com/imath/buddydrive/issues/53Forum: Plugins
In reply to: [WP Idea Stream] Weighted votingIt’s an average vote. So if 1 person rates 5 stars and 30 persons rated 4 stars, the idea with only one vote will be at the top.
So it behaves as expected to me.
You can always deactivate the built in rating system from the plugin’s settings and use another plugin to match your need.
Forum: Plugins
In reply to: [WP Idea Stream] Adding idea title to BuddyPress activity streamHi Jason,
The way BuddyPress does for regular posts is by adding one activity meta :
–post_titleI thought WP Idea Stream should avoid adding a new activity meta, reason why i chose to not include the title into the Activity action string. But if you don’t mind adding this meta data, you can include it using a specific filter. Here’s a quick way to achieve it :
1/ Create a wp-idea-stream-custom.php file
2/ Paste in it this gistForum: Plugins
In reply to: [WP Idea Stream] Including submitter's info for each idea entry in categoryHi @kalipekona,
Here’s how you can do :
create a wp-idea-stream-custom.php file and put in it :
<?php function kalipekona_idea_category_footer( $idea_footer = '', $idea_footer_parts = array(), $idea = null ) { if ( ! wp_idea_stream_is_category() || ! is_array( $idea_footer_parts ) ) { return $idea_footer; } if ( ! empty( $idea_footer_parts['date'] ) ) { $idea_footer_parts['date'] = substr( $idea_footer_parts['date'], 0, -1 ); } // Get the author info $user = wp_idea_stream_users_get_user_data( 'id', $idea->post_author ); $user_link = '<a class="idea-author" href="' . esc_url( wp_idea_stream_users_get_user_profile_url( $idea->post_author, $user->user_nicename ) ) . '" title="' . esc_attr( $user->display_name ) . '">'; $user_link .= esc_html( $user->display_name ) . '</a>'; $idea_footer_parts['author'] = sprintf( _x( 'by %s.', 'single idea author link', 'wp-idea-stream' ), $user_link ); // Move the edit part at the end of the array if ( ! empty( $idea_footer_parts['edit'] ) ) { $edit = $idea_footer_parts['edit']; unset( $idea_footer_parts['edit'] ); $idea_footer_parts['edit'] = $edit; } return join( ' ', $idea_footer_parts ); } add_filter( 'wp_idea_stream_ideas_get_idea_footer', 'kalipekona_idea_category_footer', 10, 3 );