Mathieu Viet
Forum Replies Created
-
I’ve just checked on a regular install (WordPress 4.5 / BuddyPress 2.5.2 not multisite) and i can’t reproduce.
when the plugin is deactivated the BuddyDrive page is deleted as it should be. When it is activated, the page is published again and the slug is still
buddydriveAs you haven’t shared about your configs, i’ll try to see if it’s a multisite issue later.
In the meantime, you can always set the slug of the page to be buddydrive by editing it from the WordPress edit page Administration screen.
You should also make sure no other page or posts are using the same slug.
Hello,
You should be able to achieve this by adding this snippet of code to a bp-custom.php file:
function rukunpuc_my_profile_only() { $has_access = (bool) bp_is_my_profile() || bp_current_user_can( 'bp_moderate' ); buddypress()->bp_nav['buddydrive']['show_for_displayed_user'] = $has_access; buddypress()->bp_options_nav['buddydrive']['files']['user_has_access'] = $has_access; if ( ! $has_access && bp_is_user() && bp_is_current_component( 'buddydrive' ) ) { wp_die( 'You are not allowed to access this part of the site' ); } } add_action( 'bp_buddydrive_setup_nav', 'rukunpuc_my_profile_only' );Forum: Plugins
In reply to: [BuddyDrive] Allow Group Mods and Admin to share files / folders in group?Hi @mln83
Thanks for your feedback.
It’s a good idea. I’ll need to work on a better capability system for the plugin, but i’ll include something in next upgrade (1.3.4). It should be released in about a week or so.
Here are some explanations on how you will be able to achieve what you need for your e-learning site once this version will be released:
https://github.com/imath/buddydrive/issues/57#issuecomment-204158039
Forum: Plugins
In reply to: [BuddyDrive] Image file corrupts in buddydriveHi, sorry to read this. Can you give me a link to the image to see if i can reproduce ?
Forum: Plugins
In reply to: [BuddyDrive] More control of uploaded files for admins pleaseThanks for your feedback. I’ll see what i can do in this area for the 2.0 upgrade i’m currently working on.
Forum: Plugins
In reply to: [BuddyDrive] The buddydrive editor code for sidewide activity what's newHi @georgio-1
you’re welcome. Thanks for your feedback.
You can use this code to add the BuddyDrive Button to the Activity directory post form:
function test_bp_directory_activity() { // Always check the editor is available to prevent fatals! if ( function_exists( 'buddydrive_editor' ) ) { // 'whats-new' is the id attribute of the textarea to publish activities buddydrive_editor( 'whats-new' ); } } add_action( 'bp_before_directory_activity_content', 'test_bp_directory_activity' );This will be fixed in next upgrade (1.4.1) It will be available as soon as WP 4.5 will be released.
See: https://github.com/imath/rendez-vous/commit/341c1f82ec912f982067e6619c832ca917abbe7e
Forum: Plugins
In reply to: [Rendez Vous] Is Rendez-vous associated to groups ?Yes, you can activate rendez-vous for a group from its ‘Manage’ tab.
Then from the rendez-vous tab of the group you can create new rendez-vous and the ‘Who’ tab will only query for the current group members.
Forum: Plugins
In reply to: [Rendez Vous] Why not a 'Agenda' tab (and a rendez-vous conter) ?Thanks for your suggestions & interest.
If anybody wants to help, feel free to pull a request on the plugin’s git repo. https://github.com/imath/rendez-vous/
I’ll see what i can do, once i find the time to.
Forum: Plugins
In reply to: [Rendez Vous] Cannot use Rendez-vous after activationYes.
Forum: Plugins
In reply to: [BP BookMarklet] Vers. 3.0 Widget not appearingHi,
Yes i’ve intentionally dropped the widget in this version as i’ve added a new page in member’s pofile area (a sub nav of the Settings component if active).
This page includes the Bookmarklet and a fallback code in case it’s not possible to drag the bookmarklet. imho it’s better than the widget.
Forum: Plugins
In reply to: [WP Idea Stream] Links to categories not workingNo, have you tried to resave your permalink settings ?
and a second set to email accounts that either don’t exist or were previously removed as moderators
You should probably update the support settings for the corresponding forum to make sure removed moderators are not receiving emails.
Forum: Plugins
In reply to: [WP Idea Stream] Conflict with Medici BuddypressThanks a lot for your feedback @yespapa.
This will be fixed in version 2.3.2, which will be released as soon as WordPress 4.5 will be.
If you can’t wait till this, here’s how to fix it:
https://github.com/imath/wp-idea-stream/commit/125d92077c2c1c10fda86b713a14d6c4f4fc2eb6Hi,
The plugin requires the Site tracking component to be active to make sure activities about ideas are doing great. I haven’t tested without it and i don’t think it’s a good idea to do so, as the plugin is doing some complex manipulation with activity actions to attach an activity to a group or to the site.
Other than that, you can try by yourself, as there’s some documentation about this particular area on the BuddyPress codex.