Mathieu Viet
Forum Replies Created
-
Forum: Plugins
In reply to: [BP Idea Stream] Featured Image – slight anomolyHi @valuser
Thanks a lot for your feedback, i’ll check this asap.
Forum: Plugins
In reply to: [WP Idea Stream] Post as user or anonymousHi @ussamaanas
here’s some custom code to make this happen: https://gist.github.com/imath/24d014cacb78f4654de0d3aff3778fb4
You can paste it into a wp-idea-stream-custom.php file.
It will add a checkbox to define whether the user wants to stay anonymous or not:

Posted ideas won’t display the author’s avatar but a “?” sign instead as shown below :

Bye 😉
Forum: Plugins
In reply to: [BP Idea Stream] Amended template file and child themeHi @valuser
I see, i think i should also look into this place actually. It would make sense. I’ll try to fix this in a next version.
Until then the right location in your theme should be :
wp-idea-stream/idea-group.phpForum: Plugins
In reply to: [WP Idea Stream] Adding custom filtersHi,
You can use/get some inspiration from this code (from line 1676 to EOF) that adds a new profile navigation to see the ideas the displayed user still have to rate:
https://github.com/imath/wc-talk/blob/master/WP_PLUGIN_DIR/wp-idea-stream-custom.php#L1676
Forum: Plugins
In reply to: [WP Idea Stream] The word Search can’t be translatedHi,
Well, i’ve “improved” a bit this part by using the theme’s search template part. If you have any difficulties and want to reverse to the old way of generating the search form, you can always use this filter into the
functions.phpof your theme for example.add_filter( 'wp_idea_stream_use_search_form_template', '__return_false' );Forum: Plugins
In reply to: [WP Idea Stream] 2.4 The status: ArchiveHi,
Thanks for your feedback! It’s actually on my todo list for next major version. I wanted to make sure everything was fine with the new status first. So it’s just a question of time 😉
Forum: Plugins
In reply to: [BP Idea Stream] can’t activateOk the only way to reproduce was to activate the plugin while WP Idea Stream was not active. I thought people would actually read the plugin description and understand it was requiring WP Idea Stream. This was a mistake, i should have guessed some people won’t read the plugin’s description!
This will be fixed in 1.0.1.
Thanks for your feedbacks (this topic and clicking on the widget to inform the plugin was broken).
Forum: Plugins
In reply to: [BP Idea Stream] can’t activateThis is a WP Idea Stream Addon. Have you downloaded and activated WP Idea Stream before ? > https://wordpress.org/plugins/wp-idea-stream/
Hi,
Could you describe a little more your configuration and what you are doing ?
– PHP version ?
– is it a new install of WP Idea Stream, or is this happening once you’ve upgraded the plugin to 2.4.0 ?
– Are you using a multisite or a regular configuration ?
– is BuddyPress activated ? If so what is the version ?
– Are you adding images to your idea, are you using the checkbox to use one of the image as a featured image ?
– Have you tried to add an idea from the Administration screen ?
– is there anything related to WP Idea Stream inside the error.log of your server ?If you add this code inside the functions.php of your theme, what is the output ?
function diegobrrspf_before_save( $posted_vars ) { var_dump( $posted_vars ); die(); } add_action( 'wp_idea_stream_ideas_before_idea_save', 'diegobrrspf_before_save', 10, 1 );After removing the previous code, if you add this code inside the functions.php of your theme, what is the output ?
function diegobrrspf_before_save( $idea_id ) { var_dump( $idea_id ); die(); } add_action( 'wp_idea_stream_after_save', 'diegobrrspf_after_save', 10, 1 );Once done don’t forget to remove this code.
- This reply was modified 9 years, 2 months ago by Mathieu Viet.
- This reply was modified 9 years, 2 months ago by Mathieu Viet.
Forum: Plugins
In reply to: [WP Idea Stream] Post as user or anonymousHi Uana,
The plugin’s is not including this feature, unfortunately. If the need is to hide the username if the checkbox ‘Post as anonymous” is activated in the submit form, it could probably be done by using a post meta. But then it would complexify the profile’s query where we’d need to avoid displaying these specific ideas when the displayed user != the logged in one.
I’m pretty busy right now but i’ll try to look at it soon.
Forum: Plugins
In reply to: [WP Idea Stream] Add a sort by categories & voteSo the real link is https://imathi.eu/2017/02/02/ajouter-de-nouveaux-filtres-au-loop-de-wp-idea-stream/
But as it’s in french i used a link generated by Google translate. I’ve tested this snippet with Latest WP Idea Stream, WordPress 4.7.2 and Twentyseventeen.
If it’s not working for you, make sure to read this topic and follow the debug steps.
https://wordpress.org/support/topic/please-read-this-carefully-before-posting-into-this-support-forum/Forum: Plugins
In reply to: [WP Idea Stream] How to let editors manage the ideasYou can do it using the following snippet. Pay attention to inline comments.
https://gist.github.com/imath/8b8e25ef24624b28846687764352aac8
Forum: Plugins
In reply to: [WP Idea Stream] Where Can I find the Shortcode?I confirm i won’t do a shortcode for WP Idea Stream. But you can do it if you really need by adding the code for it in a wp-idea-stream-custom.php file as it is explained here
I think using shortcode in the case you’re mentioning is not the only way to achieve “insert WP Idea Stream content into the front page”. You can create a new page template inside your theme with dynamic sidebars in it so that you can add to it the WP Idea Stream built in widgets. Then set your front page to use that created template.
Forum: Plugins
In reply to: [WP Idea Stream] Set ideastream as a homepageThis will be in 2.4.0
see this commit: https://github.com/imath/wp-idea-stream/commit/28457d9622df157200c0723eeecd3abdfb645ad4
Forum: Plugins
In reply to: [WP Idea Stream] Add a sort by categories & vote