• Hey there,

    I created “Movies Carousel Nav Header Block” and when I choose “ORDERBY” Ascending or Descending both reported only descending order of release date.

    I replaced the below code in ” masvideos/includes/class-masvideos-query.php line #2155 & fixed this issue. Hopefully you will correct this in future updates.

    case 'release_date':
    
                    $args['meta_key'] = '_movie_release_date'; // @codingStandardsIgnoreLine
    
      if('ASC' === $order) {
    
                      $args['orderby'] = array(
    
                        'meta_value_num' => 'ASC',
    
                        'ID' => 'DESC',
    
                      );
    
                    } else {
    
                       $args['orderby'] = array(
    
                        'meta_value_num' => 'DESC',
    
                        'ID' => 'ASC',
    
                      );
    
                    }
    
                    break;
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Movies Carousel Nav Header Block’ is closed to new replies.