Plugin Author
Nitesh
(@nitesh_singh)
Hi @zanzara,
Sorry for delayed response.
Thanks by the way for nice comments. You can post your review here – https://wordpress.org/plugins/ultimate-auction/#reviews
You can do below to sort alphabetically:
(1) Open file auction-feeder-page.php from plugin’s root directory.
(2) Go to line no. 58 which has content = ‘paged’ => $paged and put this code below it.
'orderby'=> 'title',
'order' => 'ASC', (ASC meance a to z) (DESC meance z to a)
There is another way to do it:
Follow Step (1) and then on line 52 replace Original code to below code:
Original Code:
$args = array(
'posts_per_page' => $page_num,
'post_type' => 'ultimate-auction',
'auction-status' => 'live',
'post_status' => 'publish',
'paged' => $paged,
'suppress_filters' => false
);
New Code
$args = array(
'posts_per_page' => $page_num,
'post_type' => 'ultimate-auction',
'auction-status' => 'live',
'post_status' => 'publish',
'paged' => $paged,
'orderby'=> 'title',
'order' => 'ASC',
'suppress_filters' => false
);