Title: Feature request thread
Last modified: August 5, 2017

---

# Feature request thread

 *  ResolvedPlugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/feature-request-thread-2/)
 * Please write all your feature requests here.

Viewing 15 replies - 1 through 15 (of 44 total)

1 [2](https://wordpress.org/support/topic/feature-request-thread-2/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/feature-request-thread-2/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/feature-request-thread-2/page/2/?output_format=md)

 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9383946)
 * Request by [@boreas04](https://wordpress.org/support/users/boreas04/):
    Make 
   a column for each variation
 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9402003)
 * Request by [@trebla](https://wordpress.org/support/users/trebla/):
    – Complete
   shortcode table – Possibility for multiple products in same table for shortcodes
 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9402007)
 * Request by [@toniem](https://wordpress.org/support/users/toniem/):
    – Setting
   to hide partially refunded orders
 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9416355)
 * Request by [@mmagnani](https://wordpress.org/support/users/mmagnani/):
    – Column
   for custom fields
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9498423)
 * Display Options for Front-End shortcode.
    – ie. Firstname, Lastname, Amount, 
   Product Variation, Avatar!
 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9500135)
 * Thanks for the suggestion! It’s in the works!
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9501409)
 * Great!!
 * Possible ETA?
 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9507071)
 * Unfortunately not, september is a really busy month for me, maybe beginning of
   next month when things calm down.
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9522602)
 * ok, in the meantime – will you point us to the file that generates the list, 
   perhaps we can add the code ourselves;)
 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9523003)
 * Sure!
 * That file would be in /views/shortcode.php
 * You can refer to /views/table-customer-list.php for the woocommerce functions
   I am using in the backend.
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9523074)
 * Great,
    We hacked it for our purposes.. it’s pretty ugly, but it works!
 *  if($wpcl_orders) {
    $output .= ‘<table class=”ecvbackers”>’; foreach($wpcl_orders-
   >posts as $wpcl_order) { $order = new WC_Order($wpcl_order->ID); $billmail = 
   $order->get_billing_email(); $output .= ‘<tr>’; $output .= ‘<td class=”ecvavatar”
   >’ . get_avatar($billmail) . ‘</td>’; $output .= ‘<td class=”ecvname”>’ . $order-
   >get_billing_first_name() . ‘ ‘ . $order->get_billing_last_name() . ‘</td>’;
 *  //if($customer_atts[‘quantity’] == true) {
    if (sizeof($order->get_items())>
   0) { $singlecount = ”; foreach($order->get_items() as $item) { if( $item[‘product_id’]
   == $post_id ) { $productcount[] = $item[‘qty’]; $singlecount+= $item[‘qty’]; }
   foreach($item->get_meta_data() as $itemvariation) { $ecvarkey = wc_attribute_label(
   $itemvariation->key); $ecvarname = wc_attribute_label($itemvariation->value);//
   echo ‘**‘ . wc_attribute_label($itemvariation->key) . ‘**:  ‘ . wc_attribute_label(
   $itemvariation->value) . ‘<br />’; } }
 *  $items[‘order-qty’] = $singlecount;
    //$output .= ‘<td class=”count”>’ . $singlecount.‘
   </td>’; } //} $output .= ‘<td class=”ecvperk”>’ . $ecvarkey . ‘: ‘ . $ecvarname.‘
   </td>’; $output .= ‘<td class=”ecvtotal”>’ . $order->get_formatted_order_total().‘
   </td>’; $output .= ‘</tr>’; } $output .= ‘</table>’; }
 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9529465)
 * That will do it! I’ll consider this when updating the shortcode, thank-you!
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9532295)
 * we cleaned it up a bit & added some if statements for additional customer_atts:
 *  $customer_atts = shortcode_atts( array(
    ‘product’ => get_the_id(), ‘avatar’
   => true, ‘perks’ => true, ‘amount’ => true, ‘quantity’ => false, ), $atts );
 *  Plugin Author [Kokomo](https://wordpress.org/support/users/kokomoweb/)
 * (@kokomoweb)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9620656)
 * Request by [@mantebose](https://wordpress.org/support/users/mantebose/):
 * Possibility to add the sum of products bought via shortcode
 *  [cccx](https://wordpress.org/support/users/cccx/)
 * (@cccx)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/feature-request-thread-2/#post-9639948)
 * An option to see the total amount of ordered products, but only the ones visible
   after filtering by search phrase

Viewing 15 replies - 1 through 15 (of 44 total)

1 [2](https://wordpress.org/support/topic/feature-request-thread-2/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/feature-request-thread-2/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/feature-request-thread-2/page/2/?output_format=md)

The topic ‘Feature request thread’ is closed to new replies.

 * ![](https://ps.w.org/wc-product-customer-list/assets/icon-256x256.gif?rev=3531446)
 * [Product Customer List for WooCommerce](https://wordpress.org/plugins/wc-product-customer-list/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wc-product-customer-list/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wc-product-customer-list/)
 * [Active Topics](https://wordpress.org/support/plugin/wc-product-customer-list/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wc-product-customer-list/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wc-product-customer-list/reviews/)

## Tags

 * [Comments](https://wordpress.org/support/topic-tag/comments/)
 * [order notes](https://wordpress.org/support/topic-tag/order-notes/)

 * 44 replies
 * 2 participants
 * Last reply from: [csands](https://wordpress.org/support/users/csands/)
 * Last activity: [6 years ago](https://wordpress.org/support/topic/feature-request-thread-2/page/3/#post-12899172)
 * Status: resolved