Mathieu Viet
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Idea Stream] Set ideastream as a homepageOk i will do something about this in 2.4.0.
I can’t reproduce the trouble. As these are special chars maybe it’s an issue with your file/db encoding ??
Here’s what i have on my testing env:
Forum: Plugins
In reply to: [WP Idea Stream] Cannot change: New ideas statusHello, thanks,
The only way for this to happen is to have BuddyPress activated and The BuddyPress group integration option set to active.
Because in this case BuddyPress group members need to be able to publish ideas.
If you don’t want this behavior, you should deactivate the BuddyPress options all together.
You’ll then be able to change the new idea default status.
Forum: Plugins
In reply to: [WP Idea Stream] Set ideastream as a homepageFor now the plugin is not supporting this feature anymore. Sorry.
Hi,
The way it worked for me was by copying/pasting the characters you posted into the setting field of the WP Idea Stream settings screen.
By the way i wasn’t able to reproduce the difficulty about the chinese characters into the rating hover captions. I’ve just copy/pasted this 差,不好,一般,好,真棒 and it’s working fine for me.
WordPress 4.7 / WP Idea Stream 2.3.4 / TwentySeventeen.
Oh i’m sorry i’m not a Chinese Translation editor, so i cannot do anything with the translation files.
You can try to contact a chinese translation editor or submit your translation using the glotpress tool on the url you previously shared.
Forum: Plugins
In reply to: [WP Idea Stream] Display Plugin’s template partsHi,
Have you tried to follow the 3 bullet points listed on this topic https://wordpress.org/support/topic/please-read-this-carefully-before-posting-into-this-support-forum/ ?
Hi,
About the chinese problematic characters, could you paste the contenr of your hover captions option here?
You should use the wp-idea-stream.pot file to do your translation.
Forum: Plugins
In reply to: [WP Idea Stream] Where Can I find the Shortcode?Hi, in this case you’ll need to find another plugin. This one comes with no shortcodes as it uses the WordPress rewrite API with customizable slugs.
Wishing you the best, bye.Forum: Plugins
In reply to: [WP Idea Stream] Category widget position above ideas listsYes you can use the code wherever you want! It’s free as in beer 😉
As i’ve said on another topic of this forum, i’m sorry but i don’t do custom work WordPress is a hobby 😉
Forum: Plugins
In reply to: [WP Idea Stream] Widget title name and size change?Sorry, i don’t do custom work. WordPress is a hobby. I wish you the best for your project.
Forum: Plugins
In reply to: [WP Idea Stream] Widget title name and size change?Well you have 3 choices :
- Put it in the functions.php of the active theme
- Put it in any file inside the /wp-content/mu-plugins of your WordPress
- Put it in a wp-idea-stream-custom.php file at the root of your /wp-content/plugins of your WordPress. Read here for more infos about this last possibility.
Forum: Plugins
In reply to: [WP Idea Stream] Category widget position above ideas listsHi Alex,
Thanks for your feedback. I think it can be achieved from the theme.
Here’s a gist illustrating it : https://gist.github.com/imath/c47918aa0add2824b4b059178134cd3e
You can also download the Twentyseventeen child theme i quickly made about this need.
Forum: Plugins
In reply to: [WP Idea Stream] Widget title name and size change?OOps, sorry i missed that one.
The best is probably to add a custom wp-idea-stream-en_US.mo file.
Otherwise you can always use this filter:
function bryanchin_submit_idea_title( $title, $context ) { if ( 'new-idea' !== $context ) { return $title; } return 'Submit Idea'; } add_filter( 'wp_idea_stream_reset_post_title', 'bryanchin_submit_idea_title', 10, 2 );