Title: Drop Down for &#8220;Listing Information&#8221;?
Last modified: July 27, 2017

---

# Drop Down for “Listing Information”?

 *  Resolved [bfchris](https://wordpress.org/support/users/bfchris/)
 * (@bfchris)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/using-paypal-module-drop-down-for-pricing/)
 * Love this plug! It’s helped me upgrade an old classified system for my customer.
   
   Question..Is it possible to have the listing “prices” in either a dropdown or
   collapsible box perhaps? I have to have 52 different variants in price, and it
   would just create a super long form. Ideas? I’m using the PayPal module for sales.
 * [https://pasteboard.co/GCSZ0hh.png](https://pasteboard.co/GCSZ0hh.png)
 * Chris
    -  This topic was modified 8 years, 10 months ago by [bfchris](https://wordpress.org/support/users/bfchris/).
    -  This topic was modified 8 years, 10 months ago by [bfchris](https://wordpress.org/support/users/bfchris/).
    -  This topic was modified 8 years, 10 months ago by [bfchris](https://wordpress.org/support/users/bfchris/).

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

 *  Thread Starter [bfchris](https://wordpress.org/support/users/bfchris/)
 * (@bfchris)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/using-paypal-module-drop-down-for-pricing/#post-9358377)
 * Ideally, it’d be cool to have it work how the “category” drop down works. Is 
   this possible?
 * Chris
 *  Plugin Author [Greg Winiarski](https://wordpress.org/support/users/gwin/)
 * (@gwin)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/using-paypal-module-drop-down-for-pricing/#post-9359561)
 * Hi, the easiest way to do that is to convert the pricings list to scrollable 
   element, you can do that by adding the code below in wp-admin / Appearance / 
   Customize / Additional CSS panel
 *     ```
       .adverts-pricings-list {
           overflow-y: scroll;
           max-height: 150px;
       }
       ```
   
 * Converting it to dropdown is possible as well, but this will require quite a 
   lot of custom programming and is beyond the free support offered here, sorry.
 *  Thread Starter [bfchris](https://wordpress.org/support/users/bfchris/)
 * (@bfchris)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/using-paypal-module-drop-down-for-pricing/#post-9360474)
 * Greg:
 * Big Thanks! That suits my needs and makes it look much better.
 * Another question: It appears that the pricing fields are listed in descending
   order newest>oldest, how can I reverse that, so the 1st pricing field I entered
   will appear in the top of the order?
 * Chris
 *  Thread Starter [bfchris](https://wordpress.org/support/users/bfchris/)
 * (@bfchris)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/using-paypal-module-drop-down-for-pricing/#post-9363462)
 * All sorted. Thanks Greg for your help. If anyone else wants to know how to adjust
   the pricing fields it’s as follows:
 * Modify the array on line 283 of /wpadverts/addons/payments/payments.php to:
 * $pricings = new WP_Query( array(
    ‘post_type’ => ‘adverts-pricing’, ‘post_status’
   => ‘draft’, ‘orderby’ => ‘ID’, ‘order’ => ‘ASC’, ‘posts_per_page’=>-1, ) );

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

The topic ‘Drop Down for “Listing Information”?’ is closed to new replies.

 * ![](https://ps.w.org/wpadverts/assets/icon-256x256.png?rev=2423472)
 * [WPAdverts - Classifieds Plugin](https://wordpress.org/plugins/wpadverts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wpadverts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wpadverts/)
 * [Active Topics](https://wordpress.org/support/plugin/wpadverts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpadverts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpadverts/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [bfchris](https://wordpress.org/support/users/bfchris/)
 * Last activity: [8 years, 10 months ago](https://wordpress.org/support/topic/using-paypal-module-drop-down-for-pricing/#post-9363462)
 * Status: resolved