Prio | Original string | Translation | — |
---|---|---|---|
Sorty By | Ordenar por | Details | |
Original currentMeta |
|||
Sort By Tag | Ordenar por etiqueta | Details | |
Original currentMeta |
|||
Sort By Status | Ordenar por estado | Details | |
Original currentMeta |
|||
Sort Options | Opciones de ordenación | Details | |
Original currentMeta |
|||
Password | Contraseña | Details | |
Original currentMeta |
|||
This is likely because you have wrapped your shortcode in additional code or formatted the shortcode itself. So on your post/page where you have the board shortcode, just make sure it isn't bold or italic (or some other formatting) and make sure you don't have the shortcode wrapped in any other div elements which may have an HTML error. | Esto es probable porque has envuelto el shortcode en código adicional o formateado el propio shortcode. Así que en tu post / página donde tienes el shortcode del tablero, sólo asegúrate de que no es negrita o cursiva (o algún otro formato) y asegúrate de que no tiene el shortcode envuelto en cualquier otro elemento div que pueda tener un error HTML. | Details | |
Original current
This is likely because you have wrapped your shortcode in additional code or formatted the shortcode itself. So on your post/page where you have the board shortcode, just make sure it isn't bold or italic (or some other formatting) and make sure you don't have the shortcode wrapped in any other div elements which may have an HTML error.
ReferencesYou have to log in to edit this translation. Meta |
|||
When I try and vote I get a NAN error where the vote numbers/icons are supposed to be? | Cuando intento votar, obtengo un error NAN donde se supone que deben estar los números/iconos de voto | Details | |
Original current
When I try and vote I get a NAN error where the vote numbers/icons are supposed to be?
ReferencesYou have to log in to edit this translation. Meta |
|||
The plugin uses the standard WordPress comment system, so the display of these comments is dependant on your theme and WordPress comment settings. Here are some things you can try: 1) From the main WordPress admin menu go to Settings > Discussion and then check the checkbox "Allow people to submit comments on new posts". 2) Some themes disable comments or have an option to enable/disable comments, so make comments are enabled for single posts. 3) If you have any custom code or plugins mucking around with comments perhaps try turning this off for now. 4) It's important in your theme that the single.php file has the comments_template(); tag called. You can also create a custom template file for ideapush called single-idea.php and include the comment tag in there. See this article <a href="https://developer.wordpress.org/reference/functions/comments_template/" target="_blank">here</a> for more information on this. | El plugin utiliza el sistema de comentarios estándar de WordPress, por lo que la visualización de estos comentarios depende de tu tema y la configuración de comentarios de WordPress. Aquí hay algunas cosas que puedes probar: 1) Desde el menú principal de administración de WordPress ir a Ajustes > Comentarios y luego marca la casilla de verificación "Permitir que la gente envíe comentarios en nuevas publicaciones". 2) Algunos temas desactivan los comentarios o tienen una opción para activar/desactivar los comentarios, por lo que los comentarios están activados para publicaciones individuales. 3) Si tienes cualquier código personalizado o plugins mucking para comentarios tal vez intenten desactivar esto de momento. 4) Es importante en tu tema que el archivo .php único tenga la llamada a comments_template();. También puedes crear un archivo de plantilla personalizado para Ideapush llamado single-idea.php e incluir la etiqueta de comentario allí. Consulta este artículo <a href="https://developer.wordpress.org/reference/functions/comments_template/" target="_blank">aquí</a> para obtener más información al respecto. | Details | |
Original current
The plugin uses the standard WordPress comment system, so the display of these comments is dependant on your theme and WordPress comment settings. Here are some things you can try: 1) From the main WordPress admin menu go to Settings > Discussion and then check the checkbox "Allow people to submit comments on new posts". 2) Some themes disable comments or have an option to enable/disable comments, so make comments are enabled for single posts. 3) If you have any custom code or plugins mucking around with comments perhaps try turning this off for now. 4) It's important in your theme that the single.php file has the comments_template(); tag called. You can also create a custom template file for ideapush called single-idea.php and include the comment tag in there. See this article <a href="https://developer.wordpress.org/reference/functions/comments_template/" target="_blank">here</a> for more information on this.
ReferencesYou have to log in to edit this translation. Meta |
|||
I do not see comments on the single idea page? | ¿No veo comentarios en la página de una sola idea? | Details | |
Original current
I do not see comments on the single idea page?
ReferencesYou have to log in to edit this translation. Meta |
|||
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 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>↵ ↵ ↵ ↵ | Sí, actualmente ofrecemos 3 filtros:<br></br> <strong>Modificar el nombre de los usuarios</strong></br> <em>Modifica el nombre de los usuarios de su primer nombre a otro.</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>Modificar enlace de usuarios</strong></br> <em>Modificar el enlace al hacer clic en el nombre de los usuarios, por defecto va a la página del autor mostrando todas sus ideas. El siguiente ejemplo elimina el enlace.</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>Modificar la imagen de los usuarios</strong></br> <em>Modifica la imagen del usuario. El siguiente ejemplo cambia la imagen de los usuarios a una vaca. De forma predeterminada, intentamos obtener la imagen IdeaPush de los usuarios, y si esta no existe, intentamos obtener el avatar de WordPress de los usuarios.</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>Agregar contenido antes del título de la idea</strong></br> <em>Agregar contenido antes del título de la idea en el tablero y en la página de una sola idea</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>Agregar contenido después del título de la idea</strong></br> <em>Agrega contenido después del título de la idea en el tablero y en la página de una sola idea</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>Agregar contenido antes de la idea</strong></br> <em>Agregar contenido antes de la idea en el tablero y la página de idea única</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>Agregar contenido después de la idea</strong></br> <em>Agrega contenido después de la idea en el tablero y la página de idea única</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>Cambiar el enlace de inicio de sesión</strong></br> <em>Cambia el enlace de inicio de sesión en el formulario de ideas que se muestra en la página del tablero.</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>Cambiar la cantidad de voto</strong></br> <em>Cambia la cantidad de votos cuando se emite un voto. Normalmente, esto debería devolver un valor entero entre -2 o 2, pero esto se puede modificar con este filtro</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>Cambiar la representación de votos</strong></br> <em>Este es un poco complicado, pero se usa para cambiar cómo se muestran los íconos de voto en la interfaz después de que se haya emitido un voto. Se puede usar junto con el filtro anterior para ciertos casos de uso.</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 ie force them $string_exploded[0] = 1; $string_exploded[1] = 3; //turn back to string $string_imploded = implode("|",$string_exploded); return $string_imploded; }</code></br> | Details | |
Original current
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 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>↵
↵
↵
↵
ReferencesYou have to log in to edit this translation. Meta |
|||
Hides the comments widget which displays under the leaderboard. This shows recent comments made for ideas on the board. | Ocultar el widget de comentarios que se muestra en la tabla de clasificación. Esto muestra comentarios recientes hechos para ideas en la pizarra. | Details | |
Original current
Hides the comments widget which displays under the leaderboard. This shows recent comments made for ideas on the board.
ReferencesYou have to log in to edit this translation. Meta |
|||
Hide Comments Widget | Ocultar Widget de comentarios | Details | |
Original currentMeta |
|||
Disable the all statuses status | Desactivar el estado de todos los estados | Details | |
Original currentMeta |
|||
Disable the completed status | Desactivar el estado completado | Details | |
Original currentMeta |
|||
Disable the in progress status | Desactivar el estado en curso | Details | |
Original currentMeta |
Export as