Mathieu Viet
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Idea Stream] User Registration Page – Password again fieldhi @darylcrouse
WP Idea Stream is not adding all these fields in its registration form, so how do you get all these ?
Are you adding them using filters ?
Also is your config a multisite or a regular one ?
Forum: Plugins
In reply to: [WP Idea Stream] Menu brokenNice, thanks for your feedback 🙂
Forum: Plugins
In reply to: [WP Idea Stream] Translation for Brazilian Portuguese [download]Thanks a lot @zerutreck
But i think you can directly include it to the plugin’s available translations by contributing to https://translate.wordpress.org/projects/wp-plugins/wp-idea-stream
Once you reach 100% and Polyglots reviewer validate your contributions, everybody should get it 🙂
Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive Features Not Showing on the WebsiteWell, i guess you’ll need to ask them what’s going wrong. It’s working for me with my theme, and WordPress default themes.
Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive Features Not Showing on the WebsiteWhat is the name of your theme ?
Is it a premium theme ?
Have you tried with a WordPress default theme like TwentySixteen or TwentyFifteen ?Forum: Plugins
In reply to: [BuddyDrive] Change name in buddypress navHave you tried to edit the title of the WordPress page BuddyDrive is using ?
Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive Features Not Showing on the Websitei advise you to have a look at the video demo on this page :
https://wordpress.org/plugins/buddydrive/
A user need to go to his profile eg: site.url/username/buddydrive to manage his files.
Forum: Plugins
In reply to: [WP Idea Stream] Menu brokenI see it’s a problem with your theme. If it’s a free theme, i can try to see how to fix this.
If it’s a premium theme, i’m afraid i won’t be able to help you, but i guess the premium theme has a support team that can help you in this case.
Forum: Plugins
In reply to: [WP Idea Stream] Inherit BP Companion Stylesheets for TwentyFourteenYou can always override the plugin’s style.css file like it is explained there:
https://github.com/imath/wp-idea-stream/wiki/Ways-to-customize-the-plugin-from-your-theme#overriding-the-plugins-default-css-fileI wonder if BuddyPress companion stylesheets are loaded while not on a BuddyPress page, because you’d probably need to make sure the companion stylesheet is also enqueued while viewing a WP Idea Stream page
Forum: Plugins
In reply to: [BuddyDrive] Load moreHi @sr_blasco
you can achieve your need using this snippet:
function sr_blasco_no_pagination( $query_args = array() ) { // Do this for single users and single groups... if ( ! bp_is_user() && ! bp_is_group() ) { return $query_args; } $no_pagination = array( 'per_page' => false ); if ( empty( $query_args ) ) { $query_args = $no_pagination; } else { $query_args = array_merge( $query_args, $no_pagination ); } return $query_args; } add_filter( 'bp_before_buddydrive_has_items_parse_args', 'sr_blasco_no_pagination', 10, 1 );Forum: Plugins
In reply to: [BuddyDrive] fatal error: Cannot use string offset as an arrayI was able to reproduce. It will be solved in next upgrade.
https://github.com/imath/buddydrive/issues/51Forum: Plugins
In reply to: [BuddyDrive] BuddyDrive and BuddyPress Global SearchSearch is a risky feature for files privacy.. I’ll see what i can do in a future release.
Hi,
“the content author” means which is not the file owner ?
I’m not sure to understand. If i say “i want to define the users that can access to a file” would it be what you have in mind ?
Forum: Plugins
In reply to: [BuddyDrive] How to change text output?Thanks for your feedback, will do it for sure.
Forum: Plugins
In reply to: [BuddyDrive] fatal error: Cannot use string offset as an arrayThanks for your feedback @svzgsgps i’ll look at it asap.