Mathieu Viet
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyDrive] Group doesn't see folders and filesWhen you select other option like public, files are showing ?
Forum: Plugins
In reply to: [BuddyDrive] Update BuddyPressNice, thanks for your feedback and sorry for my late reply.
Forum: Plugins
In reply to: [BuddyDrive] Files do not show in front endreally looks like a theme issue.
Theme is powermag, a premium (i cannot support these kind of themes, sorry)
Can you switch to twentytwelve and see what happens.
Forum: Plugins
In reply to: [BuddyDrive] Group doesn't see folders and filesThanks for your feedback.
Weird!
multisite ?
BuddyPress version > 2.1.1 ?
BuddyDrive > 1.2.1 ?Forum: Plugins
In reply to: [BuddyDrive] dismissI’m sorry i’m not sure to understand the problem you have with the plugin 🙁 Could you develop ?
Forum: Plugins
In reply to: [BuddyDrive] Insufficient Permissions New InstallDo you have a specific config like, BuddyPress is not installed on the root blog or your forcing the root blog to be something different than the first one ?
Or did you activated BuddyDrive on the network and BuddyPress is not activated there or vice versa ?
Forum: Plugins
In reply to: [BuddyDrive] ResponsiveI understand your frustration about it. CSS is really not my favorite part. Sorry. I’ll try to see what i can do. Since 1.2, there were no major release.. So if i’ve said before 1.2 then, i’m really sorry, else i’m not late 😉
More seriously, it would be great if someone could pull a request addressing this point on the plugin’s github repo. Then i would include it right away 😉
Github repo of the plugin
https://github.com/imath/buddydrive/Forum: Plugins
In reply to: [BuddyDrive] Filter on privacy level / typeWell, the drop down is sorting files not filtering them. That would not be in the same area. I’ll see what i can do.
Forum: Plugins
In reply to: [BuddyDrive] Control downloads x uploadsYou can use the action
'buddydrive_file_downloaded'to restrict downloads. For uploads, i’ll need to put a filter in a future release to help you.Forum: Plugins
In reply to: [BuddyDrive] Files do not show in front endI see you are using a plugin to generate different languages for your website. A plugin like wpml. Try deactivating it on a test drive, to see if that solves the problem.
Forum: Plugins
In reply to: [BuddyDrive] Disable download if from external IPI think you can achieve that by using the hook ‘buddydrive_file_downloaded’.
eg:
function restrict_ip() { $ip = preg_replace( '/[^0-9a-fA-F:., ]/', '',$_SERVER['REMOTE_ADDR'] ); $ip_list = array( '127.0.0.1' ); if ( ! in_array( $ip, $ip_list ) ) { wp_die( 'IP rejected' ); } } add_action( 'buddydrive_file_downloaded', 'restrict_ip' );Forum: Plugins
In reply to: [BuddyDrive] Update BuddyPressWell i’m using BuddyDrive 1.2.1 with WordPress 4.0 and BuddyPress 2.1 and haven’t meet such a problem is it still the case ?
Forum: Plugins
In reply to: [BuddyDrive] Share file from Folder and Protect file in FolderThanks for your interesting feedback. Attaching files to a private group is the only way to have all files private at once for now. I’ll see what i can do to add a privacy property to folders in a future release.
Forum: Plugins
In reply to: [BuddyDrive] Hide "Define your sharing options", Making all files privateNot right now, sorry. I’ll see what i can do.
See https://github.com/imath/buddydrive/issues/4 for a follow up
Forum: Plugins
In reply to: [BuddyDrive] Folders dont show in root of the group where they were createdGroups are just a sharing option. I think you can find a more detailed explanation on previous support posts.
Sorry it doesn’t match your need.