Important notice: we will respond to all open ticket requests up until November the 1st. After this date, we will be unable to process the ticket requests here on Ticksy.

Okay
  Public Ticket #785116
Order of dropdoens
Closed

Comments

  •  9
    Paul started the conversation

    Hello,

    How can I set the order of dropdowns so that they are alphabetical? What is the default order?

    Regards,

    Paul

  •  10
    Albert replied

    Hello Paul,

    The order is the "date" you've created that item (i.e. the most recent date of a category will be the first, the second recent date will be the second, etc.).

    I find it quite "obsolete" this way, it'd be better to be alphabetical, as you say.

  •  1,845
    Elated replied

    Hi,

    You can paste this function in functions.php of your child theme or functions.php of your main theme in order to achieve that ordering

    if(!(function_exists('search_and_go_elated_get_listing_types'))){
    /**
    * return listing type obejcts.
    *
    */
    function search_and_go_elated_get_listing_types(){

    $listing_types_array = array();
    $args = array(
    'post_type' => 'listing-type-item',
    'posts_per_page' => '-1',
    'orderby' => 'title',
    'order' => 'ASC'
    );

    $listing_types = get_posts($args);

    if (is_array($listing_types) && count($listing_types)) {             foreach ($listing_types as $listing_type) {

    $listing_types_array[$listing_type->ID] = $listing_type->post_title;

                }

            }
    return $listing_types_array;

    }

    }



    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.

  •  9
    Paul replied

    Thanks,

    And also the search main widget (pic attached).

    Thanks

  •  9
    Paul replied

    Also, the balls on the main search, I read that these order by popularity??, but they don't - they order by date created again.

    What should happen? I see that these cannot be specified. 

    By Date Created is completely useless.

  •  10
    Albert replied

    Elated Staff, I'd SUGGEST to include that function in the core in the next update of the theme, it's more logical and useful, in my opinion.

    Great job!

  •  9
    Paul replied

    Hi,

    And also the search main widget.

    Thanks 

    Paul

  •   Paul replied privately
  •  9
    Paul replied

    Any update? 

    Paul

  •  1,845
    Elated replied

    Hi,

    You need to make change in template file in wp-content -> plugins -> eltd-listing -> post-type -> listing -> shortcodes -> listing-search.php http://screencast.com/t/QTNhPf3L3jZ 

    and add this ordering 

    'orderby' => 'title',
     'order' => 'ASC'

    Thanks for suggestions, we will forward this to our dev team. 

    I hope this helps


    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.

  •  9
    Paul replied

    Done, thanks

  •  1,845
    Elated replied

    You are welcome :)


    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.