Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter erialc011

    (@erialc011)

    Im using email subscribers plugin and rainmaker plugin and reCAPTCHA is not showing in the form.

    Thread Starter erialc011

    (@erialc011)

    before im using this code but I dont know what happened it stop working no events is displaying.

    <?php
    //Protect against arbitrary paged values
    $paged = ( get_query_var( ‘paged’ ) ) ? absint( get_query_var( ‘paged’ ) ) : 1;

    $args = array(
    ‘posts_per_page’ => -1,
    ‘eventDisplay’ => ‘upcoming’,
    ‘post_type’ => ‘tribe_events’,
    ‘tax_query’ => array(
    array(
    ‘taxonomy’ => ‘tribe_events_cat’,
    ‘field’ => ‘slug’,
    ‘terms’ => array(‘Private Party’),
    )
    ),
    “start_date” => date(‘Y-m-d H:i:s’, strtotime(“now”)),
    ‘orderby’ => ‘event_date’,
    ‘order’ => ‘ASC’
    );

    $events = new WP_query($args);
    ?>

Viewing 2 replies - 1 through 2 (of 2 total)