New to Translating WordPress? Read through our Translator Handbook to get started. Hide

Translation of Stable (latest release): Dutch

1 2 3 18
Prio Original string Translation
Yes, we currently provide 3 filters: <br></br><strong>Modify Users Name</strong></br> <em>Modifies the users name from their first name to something else.</em></br> <code>add_filter( "idea_push_change_user_name", "idea_push_change_user_name_callback", 10, 1 ); function idea_push_change_user_name_callback( $userId ) { $userObject = get_user_by("id",$userId); return $userObject->display_name; }</code></br> <br></br><strong>Modify Users Link</strong></br> <em>Modifies the link when clicking on the users name, by default it goes to the author page showing all their ideas. The below example removes the link.</em></br> <code>add_filter( "idea_push_change_author_link", "idea_push_change_author_link_callback", 10, 1 ); function idea_push_change_author_link_callback( $userId ) { return "#"; }</code></br> <br></br><strong>Modify Users Image</strong></br> <em>Modifies the user image. The below example changes the users image to a cow. By default we try and get the users IdeaPush image, and if this does not exist we try and get the users WordPress avatar.</em></br> <code>add_filter( "idea_push_change_user_image", "idea_push_change_user_image_callback", 10, 1 ); function idea_push_change_user_image_callback( $userId ) { //do something awesome with $userId return "https://cdn.britannica.com/55/174255-004-9A4971E9.jpg"; }</code></br> <br></br><strong>Add Content Before Idea Title</strong></br> <em>Adds content before idea title on the board and single idea page</em></br> <code>add_filter( "idea_push_before_idea_title", "idea_push_before_idea_title_callback", 10, 1 ); function idea_push_before_idea_title_callback( $ideaId ) { //do something awesome with $ideaId return "Hello World"; }</code></br> <br></br><strong>Add Content After Idea Title</strong></br> <em>Adds content after idea title on the board and single idea page</em></br> <code>add_filter( "idea_push_after_idea_title", "idea_push_after_idea_title_callback", 10, 1 ); function idea_push_after_idea_title_callback( $ideaId ) { //do something awesome with $ideaId return "Hello World"; }</code></br> <br></br><strong>Add Content before Idea</strong></br> <em>Adds content before the idea on the board and single idea page</em></br> <code>add_filter( "idea_push_before_idea", "idea_push_before_idea_callback", 10, 1 ); function idea_push_before_idea_callback( $ideaId ) { //do something awesome with $ideaId return "Hello World"; }</code></br> <br></br><strong>Add Content After Idea</strong></br> <em>Adds content after the idea on the board and single idea page</em></br> <code>add_filter( "idea_push_after_idea", "idea_push_after_idea_callback", 10, 1 ); function idea_push_after_idea_callback( $ideaId ) { //do something awesome with $ideaId return "Hello World"; }</code></br> <br></br><strong>Change login link</strong></br> <em>Changes the login link on the idea form shown on the board page</em></br> <code>add_filter( "idea_push_change_login_link", "idea_push_change_login_link_callback", 10, 1 ); function idea_push_change_login_link_callback( $link ) { //do something awesome with $link return "https://mycustomloginlink.com"; }</code></br> <br></br><strong>Change edit link</strong></br> <em>Changes the edit link on the idea form shown on the board page - the default behaviour is to toggle a quick profile edit section</em></br> <code>add_filter( "idea_push_change_edit_link", "idea_push_change_edit_link_callback", 10, 2 ); function idea_push_change_edit_link_callback( $link, $user_id ) { //do something awesome with $link return "https://mycustomeditlink.com"; }</code></br> <br></br><strong>Change Vote Amount</strong></br> <em>Changes the vote amount when a vote is cast. Typically this should return an integer value between -2 or 2 but this can be modified with this filter</em></br> <code>add_filter( "idea_push_change_vote_amount", "idea_push_change_vote_amount_callback", 10, 1 ); function idea_push_change_vote_amount_callback( $int ) { return 1; }</code></br> <br></br><strong>Change Vote Render</strong></br> <em>This one is a bit complicated but it is used to change how the vote icons render on the frontend after a vote has been cast. It can be used in conjunction with the above filter for certain use cases.</em></br> <code>add_filter( "idea_push_change_vote_render", "idea_push_change_vote_render_callback", 10, 1 ); function idea_push_change_vote_render_callback( $string ) { //explode the string $string_exploded = explode("|",$string); //set values in the array i.e. force them $string_exploded[0] = 1; $string_exploded[1] = 3; //turn back to string $string_imploded = implode("|",$string_exploded); return $string_imploded; }</code></br> <br></br><strong>Disable Single Ideas</strong></br> <em>With this filter you can fully disable single ideas.</em></br> <code>add_filter( "ideapush_display_single_ideas", "ideapush_display_single_ideas_callback", 10, 1 ); function ideapush_display_single_ideas_callback( $bool ) { //turn to false to disable single ideas $bool = false; return $bool; }</code></br> <br></br><strong>Change Seperator Between Custom Fields</strong></br> <em>You can change the separator between custom fields, this is usually a comma</em></br> <code>add_filter( "idea_push_custom_field_separator", "idea_push_custom_field_separator_callback", 10, 1 ); function idea_push_custom_field_separator_callback( $separator ) { $separator = '| '; return $separator; }</code></br> <br></br><strong>Allowed Idea Statuses for Voting</strong></br> <em>The only allowed statuses for voting are open ideas. You can use the filter to expand this to other statuses.</em></br> <code>add_filter( "idea_push_voting_statuses", "idea_push_voting_statuses_callback", 10, 1 ); function idea_push_voting_statuses_callback( $statuses ) { //this will allow voting for the reviewed status as well array_push($statuses,'reviewed'); return $statuses; }</code></br> <br></br><strong>Additional File Types for Custom Fields</strong></br> <em>By default we only allow jpg, .jpeg, .png, .gif files to be uploaded via custom fields, but with this filter it can be extended to cover other file types.</em></br> <code>add_filter("idea_push_allowed_file_types","idea_push_allowed_file_types_callback", 10, 1); function idea_push_allowed_file_types_callback($file_types){ $file_types .= ", .pdf"; return $file_types; }</code></br> <br></br><strong>Change max length of idea description</strong></br> <em>By default we cap the idea description to 2000 characters, but you can change this to a different number by using this filter</em></br> <code>add_filter("idea_push_max_characters_for_description","idea_push_max_characters_for_description_callback", 10, 1); function idea_push_max_characters_for_description_callback($number){ $number = 3000; return $number; }</code></br> <br></br><strong>Show the board to multiple roles</strong></br> <em>In the board setting "Show Board To" it allows you to select a specific user role the board should be shown to. With this filter you can extend this so that administrtaors can view the board if editors is selected for example.</em></br> <code>add_filter("idea_push_extend_role_permissions", "idea_push_extend_role_permissions_callback", 10, 1); function idea_push_extend_role_permissions_callback($roles) { if( in_array("administrator", $roles) ){ array_push($roles, "editor"); } return $roles; }</code></br> <br></br><strong>Prevent certain roles from creating ideas</strong></br> <em>Prevent specific roles from creating an idea, that is, the idea form won't show</em></br> <code>add_filter("idea_push_deny_roles_from_creating_ideas", "idea_push_deny_roles_from_creating_ideas_callback", 10, 1); function idea_push_deny_roles_from_creating_ideas_callback($roles) { array_push($roles,"editor"); return $roles; }</code></br> <br></br><strong>Prevent flushing of rewrite rules on idea creation</strong></br> <em>Prevent flushing of rewrite rules on idea creation. The below code would prevent the flushing of rewrite rules.</em></br> <code>add_filter("idea_push_flush_rewrite_rules_on_idea_creation","idea_push_flush_rewrite_rules_on_idea_creation_callback",10,1); function idea_push_flush_rewrite_rules_on_idea_creation_callback($value){ return false; }</code></br> You have to log in to add a translation. Details
Yes, we currently provide 3 filters: <br></br><strong>Modify Users Name</strong></br> <em>Modifies the users name from their first name to something else.</em></br> <code>add_filter( "idea_push_change_user_name", "idea_push_change_user_name_callback", 10, 1 ); function idea_push_change_user_name_callback( $userId ) { $userObject = get_user_by("id",$userId); return $userObject->display_name; }</code></br> <br></br><strong>Modify Users Link</strong></br> <em>Modifies the link when clicking on the users name, by default it goes to the author page showing all their ideas. The below example removes the link.</em></br> <code>add_filter( "idea_push_change_author_link", "idea_push_change_author_link_callback", 10, 1 ); function idea_push_change_author_link_callback( $userId ) { return "#"; }</code></br> <br></br><strong>Modify Users Image</strong></br> <em>Modifies the user image. The below example changes the users image to a cow. By default we try and get the users IdeaPush image, and if this does not exist we try and get the users WordPress avatar.</em></br> <code>add_filter( "idea_push_change_user_image", "idea_push_change_user_image_callback", 10, 1 ); function idea_push_change_user_image_callback( $userId ) { //do something awesome with $userId return "https://cdn.britannica.com/55/174255-004-9A4971E9.jpg"; }</code></br> <br></br><strong>Add Content Before Idea Title</strong></br> <em>Adds content before idea title on the board and single idea page</em></br> <code>add_filter( "idea_push_before_idea_title", "idea_push_before_idea_title_callback", 10, 1 ); function idea_push_before_idea_title_callback( $ideaId ) { //do something awesome with $ideaId return "Hello World"; }</code></br> <br></br><strong>Add Content After Idea Title</strong></br> <em>Adds content after idea title on the board and single idea page</em></br> <code>add_filter( "idea_push_after_idea_title", "idea_push_after_idea_title_callback", 10, 1 ); function idea_push_after_idea_title_callback( $ideaId ) { //do something awesome with $ideaId return "Hello World"; }</code></br> <br></br><strong>Add Content before Idea</strong></br> <em>Adds content before the idea on the board and single idea page</em></br> <code>add_filter( "idea_push_before_idea", "idea_push_before_idea_callback", 10, 1 ); function idea_push_before_idea_callback( $ideaId ) { //do something awesome with $ideaId return "Hello World"; }</code></br> <br></br><strong>Add Content After Idea</strong></br> <em>Adds content after the idea on the board and single idea page</em></br> <code>add_filter( "idea_push_after_idea", "idea_push_after_idea_callback", 10, 1 ); function idea_push_after_idea_callback( $ideaId ) { //do something awesome with $ideaId return "Hello World"; }</code></br> <br></br><strong>Change login link</strong></br> <em>Changes the login link on the idea form shown on the board page</em></br> <code>add_filter( "idea_push_change_login_link", "idea_push_change_login_link_callback", 10, 1 ); function idea_push_change_login_link_callback( $link ) { //do something awesome with $link return "https://mycustomloginlink.com"; }</code></br> <br></br><strong>Change edit link</strong></br> <em>Changes the edit link on the idea form shown on the board page - the default behaviour is to toggle a quick profile edit section</em></br> <code>add_filter( "idea_push_change_edit_link", "idea_push_change_edit_link_callback", 10, 2 ); function idea_push_change_edit_link_callback( $link, $user_id ) { //do something awesome with $link return "https://mycustomeditlink.com"; }</code></br> <br></br><strong>Change Vote Amount</strong></br> <em>Changes the vote amount when a vote is cast. Typically this should return an integer value between -2 or 2 but this can be modified with this filter</em></br> <code>add_filter( "idea_push_change_vote_amount", "idea_push_change_vote_amount_callback", 10, 1 ); function idea_push_change_vote_amount_callback( $int ) { return 1; }</code></br> <br></br><strong>Change Vote Render</strong></br> <em>This one is a bit complicated but it is used to change how the vote icons render on the frontend after a vote has been cast. It can be used in conjunction with the above filter for certain use cases.</em></br> <code>add_filter( "idea_push_change_vote_render", "idea_push_change_vote_render_callback", 10, 1 ); function idea_push_change_vote_render_callback( $string ) { //explode the string $string_exploded = explode("|",$string); //set values in the array i.e. force them $string_exploded[0] = 1; $string_exploded[1] = 3; //turn back to string $string_imploded = implode("|",$string_exploded); return $string_imploded; }</code></br> <br></br><strong>Disable Single Ideas</strong></br> <em>With this filter you can fully disable single ideas.</em></br> <code>add_filter( "ideapush_display_single_ideas", "ideapush_display_single_ideas_callback", 10, 1 ); function ideapush_display_single_ideas_callback( $bool ) { //turn to false to disable single ideas $bool = false; return $bool; }</code></br> <br></br><strong>Change Seperator Between Custom Fields</strong></br> <em>You can change the separator between custom fields, this is usually a comma</em></br> <code>add_filter( "idea_push_custom_field_separator", "idea_push_custom_field_separator_callback", 10, 1 ); function idea_push_custom_field_separator_callback( $separator ) { $separator = '| '; return $separator; }</code></br> <br></br><strong>Allowed Idea Statuses for Voting</strong></br> <em>The only allowed statuses for voting are open ideas. You can use the filter to expand this to other statuses.</em></br> <code>add_filter( "idea_push_voting_statuses", "idea_push_voting_statuses_callback", 10, 1 ); function idea_push_voting_statuses_callback( $statuses ) { //this will allow voting for the reviewed status as well array_push($statuses,'reviewed'); return $statuses; }</code></br> <br></br><strong>Additional File Types for Custom Fields</strong></br> <em>By default we only allow jpg, .jpeg, .png, .gif files to be uploaded via custom fields, but with this filter it can be extended to cover other file types.</em></br> <code>add_filter("idea_push_allowed_file_types","idea_push_allowed_file_types_callback", 10, 1); function idea_push_allowed_file_types_callback($file_types){ $file_types .= ", .pdf"; return $file_types; }</code></br> <br></br><strong>Change max length of idea description</strong></br> <em>By default we cap the idea description to 2000 characters, but you can change this to a different number by using this filter</em></br> <code>add_filter("idea_push_max_characters_for_description","idea_push_max_characters_for_description_callback", 10, 1); function idea_push_max_characters_for_description_callback($number){ $number = 3000; return $number; }</code></br> <br></br><strong>Show the board to multiple roles</strong></br> <em>In the board setting "Show Board To" it allows you to select a specific user role the board should be shown to. With this filter you can extend this so that administrtaors can view the board if editors is selected for example.</em></br> <code>add_filter("idea_push_extend_role_permissions", "idea_push_extend_role_permissions_callback", 10, 1); function idea_push_extend_role_permissions_callback($roles) { if( in_array("administrator", $roles) ){ array_push($roles, "editor"); } return $roles; }</code></br> <br></br><strong>Prevent certain roles from creating ideas</strong></br> <em>Prevent specific roles from creating an idea, that is, the idea form won't show</em></br> <code>add_filter("idea_push_deny_roles_from_creating_ideas", "idea_push_deny_roles_from_creating_ideas_callback", 10, 1); function idea_push_deny_roles_from_creating_ideas_callback($roles) { array_push($roles,"editor"); return $roles; }</code></br> <br></br><strong>Prevent flushing of rewrite rules on idea creation</strong></br> <em>Prevent flushing of rewrite rules on idea creation. The below code would prevent the flushing of rewrite rules.</em></br> <code>add_filter("idea_push_flush_rewrite_rules_on_idea_creation","idea_push_flush_rewrite_rules_on_idea_creation_callback",10,1); function idea_push_flush_rewrite_rules_on_idea_creation_callback($value){ return false; }</code></br>

You have to log in to edit this translation.

Download file You have to log in to add a translation. Details
Download file

You have to log in to edit this translation.

Elect how many days this max amount of ideas is for. You have to log in to add a translation. Details
Elect how many days this max amount of ideas is for.

You have to log in to edit this translation.

Max Ideas Period You have to log in to add a translation. Details
Max Ideas Period

You have to log in to edit this translation.

Elect how many days this max amount of votes is for. You have to log in to add a translation. Details
Elect how many days this max amount of votes is for.

You have to log in to edit this translation.

Max Votes Period You have to log in to add a translation. Details
Max Votes Period

You have to log in to edit this translation.

These settings set the limit of the maximum amount of times a user can create an idea or cast a vote for a given period (please see the Max Ideas Period setting lower down to set this period). Admin users are excluded from this limit and can create as many ideas or cast as many votes as they would like. A value of minus one or blank means unlimited, a value of zero essentially blocks further idea creation and voting and a positive value sets the upper limit. Any vote contributes to the users vote count, this includes negative votes and votes that are for the same idea or rescinded votes. You have to log in to add a translation. Details
These settings set the limit of the maximum amount of times a user can create an idea or cast a vote for a given period (please see the Max Ideas Period setting lower down to set this period). Admin users are excluded from this limit and can create as many ideas or cast as many votes as they would like. A value of minus one or blank means unlimited, a value of zero essentially blocks further idea creation and voting and a positive value sets the upper limit. Any vote contributes to the users vote count, this includes negative votes and votes that are for the same idea or rescinded votes.

You have to log in to edit this translation.

These settings set the limit of the maximum amount of times a user can create an idea or cast a vote for a given period (please see the Max Votes Period setting lower down to set this period). Admin users are excluded from this limit and can create as many ideas or cast as many votes as they would like. A value of minus one or blank means unlimited, a value of zero essentially blocks further idea creation and voting and a positive value sets the upper limit. Any vote contributes to the users vote count, this includes negative votes and votes that are for the same idea or rescinded votes. You have to log in to add a translation. Details
These settings set the limit of the maximum amount of times a user can create an idea or cast a vote for a given period (please see the Max Votes Period setting lower down to set this period). Admin users are excluded from this limit and can create as many ideas or cast as many votes as they would like. A value of minus one or blank means unlimited, a value of zero essentially blocks further idea creation and voting and a positive value sets the upper limit. Any vote contributes to the users vote count, this includes negative votes and votes that are for the same idea or rescinded votes.

You have to log in to edit this translation.

Max Votes You have to log in to add a translation. Details
Max Votes

You have to log in to edit this translation.

Enter original idea title here You have to log in to add a translation. Details
Enter original idea title here

You have to log in to edit this translation.

Update image You have to log in to add a translation. Details
Update image

You have to log in to edit this translation.

This can be ran like: You have to log in to add a translation. Details
This can be ran like:

You have to log in to edit this translation.

We also have the following javascript events: You have to log in to add a translation. Details
We also have the following javascript events:

You have to log in to edit this translation.

Get your idea to %d to be reviewed You have to log in to add a translation. Details
Get your idea to %d to be reviewed

You have to log in to edit this translation.

Sorty By You have to log in to add a translation. Details
Sorty By

You have to log in to edit this translation.

Legend:
Current
Waiting
Rejected
Fuzzy
Old
Changes requested
With warnings
1 2 3 18

Export as