Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 21 total)
  • Author
    Posts
  • in reply to: invalid form submission #38954
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi 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?

    in reply to: display repeatable field #32973
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi Long, thanks!!

    in reply to: display repeatable field #32907
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi 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

    in reply to: lost password #30593
    rhs@mediastuff.com.ar[email protected]
    Participant

    sorry, 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

    in reply to: Metabox default Login form ugly #30586
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi Long, now works!, maybe a cache issue. Thanks

    in reply to: Metabox default Login form ugly #30527
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi Long, still don´t work.

    in reply to: Metabox default Login form ugly #30513
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi Long, i have update MB plugins and add your css code, but dosn´t fix the issue.

    in reply to: Pagination on views #30477
    rhs@mediastuff.com.ar[email protected]
    Participant

    This 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( '&laquo; Anterior', $parent->max_num_pages) ?>  <?php next_posts_link( 'Siguiente &raquo;', $parent->max_num_pages) ?>
         <br><br>
      <?php else: ?>
        <p>No posee frases</p>
      <?php endif; ?>
    <?php wp_reset_query(); 
    ?>
    in reply to: Pagination on views #30476
    rhs@mediastuff.com.ar[email protected]
    Participant

    I 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( '&laquo; Anterior', $parent->max_num_pages) ?>  <?php next_posts_link( 'Siguiente &raquo;', $parent->max_num_pages) ?>
         <br><br>
      <?php else: ?>
        <p>No posee autores</p>
      <?php endif; ?>
    <?php wp_reset_query(); 
    }
    in reply to: Pagination on views #29744
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi 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.

    in reply to: Pagination on views #29729
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi 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)

    in reply to: CPT ARCHIVE VIEWS #29472
    rhs@mediastuff.com.ar[email protected]
    Participant

    Thanks 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?

    in reply to: CPT ARCHIVE VIEWS #29452
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi 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!!

    in reply to: Custom table and facetwp search problem #29129
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hello, 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.

    in reply to: Custom table and facetwp search problem #29084
    rhs@mediastuff.com.ar[email protected]
    Participant

    Hi Long, can please tell me when it will be the new version? i mean with fixed custom table and facetwp. Thanks.

Viewing 15 posts - 1 through 15 (of 21 total)