Forum Replies Created
-
AuthorPosts
-
[email protected]
ParticipantHi Long, i still see this: Invalid form submission, please try again.
but, i have no validation on my form.My shortcode is:
[mb_user_profile_register label_username="Usuario" role="subscriber" id="campos-usuario" label_submit="REGISTRARME" password_strength="false" confirmation="Su cuenta fue creada exitosamente! Haga click en el botón Ingreso" redirect="/registro-exitoso/" label_password="Clave" label_password2="Confirmar clave"]do you need my user and password to access admin section?
[email protected]
ParticipantHi Long, thanks!!
[email protected]
ParticipantHi Long, I don't understand what you mean by the code with which I created the field... I use the visual metabox builder, attached screenshot
https://deinconscientes.raulhernansanchez.com.ar/wp-content/uploads/2021/12/repeatable.jpg[email protected]
Participantsorry, i have to modify the url to test it.
please check https://licitaciones.elconstructor.com/ingreso-test/
click on lost password?
send to page not found and no email are received.
you can try with user: maria[email protected]
ParticipantHi Long, now works!, maybe a cache issue. Thanks
[email protected]
ParticipantHi Long, still don´t work.
[email protected]
ParticipantHi Long, i have update MB plugins and add your css code, but dosn´t fix the issue.
[email protected]
ParticipantThis is whith two custom post types with relation:
<?php $tematica = get_term_by( 'slug', get_query_var('term'), get_query_var('taxonomy') ); //echo $tematica->name; $tematica = $tematica->name; $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; $args = array( 'post_type' => 'frase-del-dia', 'order' => 'DESC', 'orderby' => 'date', 'posts_per_page' => '15', //how many posts you need 'paged' => $paged, //add the 'paged' parameter 'tax_query' => array( array( 'taxonomy' => 'tematica', 'field' => 'slug', 'terms' => $tematica, ), ), ); $parent = new WP_Query( $args ); if ( $parent->have_posts() ) : ?> <?php while ( $parent->have_posts() ) : $parent->the_post(); ?> <?php //echo 'test';?> <?php echo rwmb_meta( 'frase_del_dia' ); $connected = new WP_Query( [ 'relationship' => [ 'id' => 'rel-frase-del-dia-con-autor', 'from' => get_the_ID(), // You can pass object ID or full object ], 'nopaging' => true, ] ); while ( $connected->have_posts() ) : $connected->the_post(); ?><br> <a>"><?php the_title(); ?></a> <?php endwhile; wp_reset_postdata(); ?> <hr style="margin:10px 0px"> <?php endwhile; ?> <br> <?php previous_posts_link( '« Anterior', $parent->max_num_pages) ?> <?php next_posts_link( 'Siguiente »', $parent->max_num_pages) ?> <br><br> <?php else: ?> <p>No posee frases</p> <?php endif; ?> <?php wp_reset_query(); ?>[email protected]
ParticipantI put here the solution, in case someone else needs it.
Call in View: mb.letras_abecedario()
then, in config.php on child theme:// **************************************************************************** function letras_abecedario() { $letra = htmlspecialchars($_GET["letra"]); $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; $args = array( 'post_type' => 'autor-de-frase', //'category_name' => 'marketing-resources', 'order' => 'DESC', 'orderby' => 'date', 'posts_per_page' => '15', //how many posts you need 'paged' => $paged, //add the 'paged' parameter 'meta_query' => array( array( 'key'=>'letra', 'compare'=>'=', 'value'=>$letra ) ) ); $parent = new WP_Query( $args ); if ( $parent->have_posts() ) : ?> <?php while ( $parent->have_posts() ) : $parent->the_post(); ?> <a>" ><?php echo rwmb_meta( 'apellido_del_autor' ); ?>, <?php echo rwmb_meta( 'nombre_del_autor' ); ?></a> <?php echo rwmb_meta( 'bio_del_autor_de_frase' ); echo ' - '; echo rwmb_meta( 'algo_sobre_el_autor' ); ?> <?php //echo '<br>'; //echo rwmb_meta( 'profesion-del-autor' ); //echo get_the_term( $post->ID, 'apellido_del_autor'); echo ' <hr style="margin:10px 0px"> '; //Your code goes here ?> <?php endwhile; ?> <br> <?php previous_posts_link( '« Anterior', $parent->max_num_pages) ?> <?php next_posts_link( 'Siguiente »', $parent->max_num_pages) ?> <br><br> <?php else: ?> <p>No posee autores</p> <?php endif; ?> <?php wp_reset_query(); }[email protected]
ParticipantHi Long, thanks for the reply. You are right, it is an advanced case and exceeds my knowledge.
I have found a lot of help on the forum seeing answers to specific situations and I thought this would not be so difficult to solve.
Thank you very much.[email protected]
ParticipantHi Long, thanks.
This is beyond my knowledge and I don't understand what I should do.
Would you be so kind as to share an example? I have seen that in some answers you record a step by step video. That would be really great.I have seen what you recommend, for example:
<?php
//Protect against arbitrary paged values
$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1;$args = array(
'posts_per_page' => 5,
'category_name' => 'gallery',
'paged' => $paged,
);$the_query = new WP_Query( $args );
?>
<!-- the loop etc.. -->but I have no idea how to insert it into views with twig.
I hope you can help me with this.
Thank you very much.Translated with http://www.DeepL.com/Translator (free version)
[email protected]
ParticipantThanks Long, i´ll be waiting.
do you have some news about: https://support.metabox.io/topic/custom-table-and-facetwp-search-problem/ ? is thix issue fixed?[email protected]
ParticipantHi Long, i already send you my site credentials.
by the way, have some news about: https://support.metabox.io/topic/custom-table-and-facetwp-search-problem/ ?
Thanks!![email protected]
ParticipantHello, I have not heard back about the query I am raising here. It is very important for my project to know when this problem will be solved. I would appreciate an answer. Thank you.
[email protected]
ParticipantHi Long, can please tell me when it will be the new version? i mean with fixed custom table and facetwp. Thanks.
-
AuthorPosts