Mathieu Viet
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Idea Stream] Select featured image from front-end?I guess, uploading from the front-end is not that easy 🙂
It should be available one of this days when WP Idea Stream is used in BuddyPress 😉
see http://wordpress.tv/2016/04/05/mathieu-viet-une-gestion-alternative-des-medias/the plugin is there: https://github.com/imath/front-end-attachments it comes with no support as it’s experimental!
Forum: Plugins
In reply to: [WP Idea Stream] Idea Stream conflict with Content CardsIs this plugin a replacement of the native embeddable post feature of WordPress?
Hi,
Thanks for your interest about this plugin 🙂
Here’s what’s happening when an idea is posted in a private or an hidden BuddyPress group, its status is private. I’m not sure i do anything with the category count, i mainly rely on what’s done natively by WordPress i think.
Try to post a regular private post in a category and you should see that WordPress doesn’t update the count for this category 😉
Forum: Plugins
In reply to: [WP Idea Stream] Form Not Working – Template FixThat’s really weird!
How come when i pick any WordPress default theme in WP 4.5, eg: TwentyFifteen, it’s working for me ??
Am i lucky? Or should i have some doubts when you say:
Not matter what theme I pick I can’t enter anything in the description field
Tested in Firefox & Chrome, screenshot to prove what i’m saying:
https://cldup.com/jENbo6mJDF.pngOnce submitted:
https://cldup.com/IXkQ6ZrMjY.pngIf i misunderstood your question, please provide some details about it + your setup.
Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive dose not exist on dashboardFor the first post, as WordPress version in use seems to be 3.3.1. I’m sorry you’ll have to upgrade WordPress to at least 4.2.2 (also make sure BuddyPress is active).
For the multisite issue: see
https://wordpress.org/support/topic/buddydrive-in-mulitiste?replies=2Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive in MulitisteWell i really doubt this is linked to WordPress version. But i’ll check to see if it’s working with 4.4.
Anyway, if it was working, it was not intended. i’m sorry i can’t/don’t have the time to test all the different “exotical” setups. So i’m focusing on the most used ones.
If somebody can provide a patch, i’ll be happy to test and eventually include it for a future version.
Forum: Plugins
In reply to: [BuddyDrive] Can't update userHi,
Thanks for alerting me about this. I wasn’t able to reproduce unfortunately. But i can imagine why this is happening.
Could you test replacing the all function:
https://github.com/imath/buddydrive/blob/master/includes/admin/buddydrive-admin.php#L614by this code:
https://github.com/imath/buddydrive/blob/1.3.4/includes/admin/buddydrive-admin.php#L619And tell me if it’s fixing the issue
Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive in MulitisteI guess this explains one of your other reply.
I’m sorry this set up is not supported by BuddyDrive. You can use BuddyDrive if:
– Both are activated on the network on the regular root blog ID
– Both are activated on a subsite (but not on the network)
– Non multisite WordPress configs.(anymore)
I really don’t think this set up has ever been supported by BuddyDrive.
Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive dose not exist on dashboardI see the only way i was able to reproduce this was to activate BuddyPress on the network, then use the constant
'BP_ROOT_BLOG'and define it to 2.Then activate BuddyDrive on the child blog 2, because activating it on the network is failing then.
But if i activate BuddyPress on blog 2 (and not on the network) and BuddyDrive on blog 2, everything works as expected.
So how exactly are you configuring BuddyPress ? Use the constant ? Activate it on a child blog ? Thanks for giving as much details as you can about your config.
Forum: Plugins
In reply to: [BuddyDrive] Some feedback from plugin inspectorThanks, i won’t use this function in 2.0.0
Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive dose not exist on dashboardThis is a BuddyPress plugin. Do you have BuddyPress activated on your site ?
hi @hbrack
I confirm this will be possible in 2.0.
I’m working on this next release for quite a long now. It will change a lot of things. So i doubt this will be released at the end of April 2016. I’ll update the milestone on the github repository.
I may have finished most of the dev. But this next version will probably need a long period of beta testing so that i’m sure there’s no risk with it.
Forum: Plugins
In reply to: [WP Idea Stream] featured image for ideasHi,
Featured image depends on how your theme handles it actually.
For instance twentytwelve adds the featured image above the title when the idea is displayed in its single view.
If you wish to replace the user’s avatar with the featured image, then you can use this gist:
https://gist.github.com/imath/c8dade7480b206118683ef8d1de696edForum: Plugins
In reply to: [Rendez Vous] Auto activation in groups ?Hi,
The difference between rendez-vous and BuddyDrive is BuddyDrive does not add a create step. As rendez-vous does add a create step, i don’t think it’s necessary.
But, if you really need to force rendez-vous groups activation, you can always use this code:
function rendez_vous_force_group_activation( $group_id = 0 ) { if ( empty( $group_id ) ) { return; } // Extra check, not really needed... if ( ! bp_is_active( 'groups' ) ) { return; } groups_update_groupmeta( $group_id, '_rendez_vous_group_activate', 1 ); } add_action( 'groups_group_create_complete', 'rendez_vous_force_group_activation', 10, 1 );Forum: Plugins
In reply to: [BuddyDrive] Unassigned user role gets maximum quotaHi there!
I’ve tested with latest WordPress and BuddyPress and wasn’t able to reproduce. So i guess there’s something that’s going wrong with the plugin you mentioned. I don’t know what it is.
But you can always set the user’s quota from the User’s Profile Administration screen in the WordPress backend. (look at the bottom).If you know what you’re doing you can try to use this code to see if it fixes the issue:
function mln83_set_user_quota( $user_id ) { $role_quotas = bp_get_option( '_buddydrive_user_quota', array() ); if ( ! empty( $role_quotas['subscriber'] ) ) { update_user_meta( $user_id, '_buddydrive_user_quota', (int) $role_quotas['subscriber'] ); } } add_action( 'wsl_hook_process_login_after_wp_insert_user', 'mln83_set_user_quota', 10, 1 );