• Resolved OliveBurbank

    (@oliveburbank)


    The property search drop downs to not reflect a numeric or alpha order – it is all random. I have changed the slugs to reflect a numeric order on the Property Price e,g, 100,000 to 200,000 p1, 200,000 to 300,000 p2. etc. – thinking that might work but no.

    When you hit the drop down menu on the Property Search for Property Price it shows 750,000 to 1,000,000 as the first entry in the list.

    Bathrooms, bedrooms, property locations – all are in random order.

    I do see on the AgentPress Listing demo Property Search – the drop downs are in order.

    Does any one know what needs to be changed to put these list in order?

    Thank you for your assistance.

    https://www.touberproperties.com

    https://www.ads-software.com/extend/plugins/agentpress-listings/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter OliveBurbank

    (@oliveburbank)

    I found the answer from Hockeyhero4 – Sorting the widget taxonomies

    THE END ALL FIX TO EVERY PROBLEM was this:
    $terms = get_terms( $tax, array( ‘orderby’ => ‘id’, ‘order’ => ‘ASC’, ‘number’ => 100, ‘hierarchical’ => false ) );

    I changed it to:
    THE END ALL FIX TO EVERY PROBLEM was this:
    $terms = get_terms( $tax, array( ‘orderby’ => ‘slug’, ‘order’ => ‘ASC’, ‘number’ => 100, ‘hierarchical’ => false ) );

    Works great.
    Thank you so much hockeyhero4.

    Where did you make this change OliveBurbank? If you could point us to the file you edited that will be great.

    I used the following plugin: Category Order and Taxonomy Terms Order. I can drag and drop the taxonomies exactly where I want them to be

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Property Search Drop Down Order’ is closed to new replies.