Title: kcsf's Replies | WordPress.org

---

# kcsf

  [  ](https://wordpress.org/support/users/kcsf/)

 *   [Profile](https://wordpress.org/support/users/kcsf/)
 *   [Topics Started](https://wordpress.org/support/users/kcsf/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kcsf/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kcsf/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kcsf/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kcsf/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kcsf/favorites/)

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/kcsf/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/kcsf/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broadcast] Problem with schedule](https://wordpress.org/support/topic/problem-with-schedule/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/problem-with-schedule/#post-10445378)
 * Log file sent via email, did you get it?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broadcast] Problem with schedule](https://wordpress.org/support/topic/problem-with-schedule/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/problem-with-schedule/#post-10400842)
 * yes, user role is allowed to broadcast scheduled posts.
    we ran it again – problem
   still exists.
 * In the log file, for the second site, the future date is set:
    WP_Post::__set_state(
   array( ‘post_author’ => ’18’, ‘post_date’ => ‘2018-06-18 09:00:51’, ‘post_date_gmt’
   => ‘2018-06-18 09:00:51’, ‘post_content’ =>
 * However – the post is actually published & live with the future date.
    We have
   to go edit the post & toggle the status – & then push “Schedule” to unpublish
   it.
 * Where do you want me to send the complete log file?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broadcast] Problem with schedule](https://wordpress.org/support/topic/problem-with-schedule/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/problem-with-schedule/#post-10392672)
 * We are experiencing the same problem.
    Do you have a solution?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Customer List for WooCommerce] Feature request thread](https://wordpress.org/support/topic/feature-request-thread-2/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [8 years, 7 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 );
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Customer List for WooCommerce] Feature request thread](https://wordpress.org/support/topic/feature-request-thread-2/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [8 years, 7 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>’; }
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Customer List for WooCommerce] Feature request thread](https://wordpress.org/support/topic/feature-request-thread-2/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [8 years, 7 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;)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Customer List for WooCommerce] Feature request thread](https://wordpress.org/support/topic/feature-request-thread-2/)
 *  [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?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Customer List for WooCommerce] Feature request thread](https://wordpress.org/support/topic/feature-request-thread-2/)
 *  [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!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kanban Boards for WordPress] BuddyPress suport!!!](https://wordpress.org/support/topic/buddypress-suport/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/buddypress-suport/#post-8930469)
 * +1 for buddypress support!
 * – Integrate with Activity Streams (should be really easy to do this)
    – Assign
   boards &/or projects to BuddyPress Groups (all members of the group are assigned
   to the board/project as users) – Add board/project tab to Groups. – Add “My Tasks”
   tab to Buddypress User Profile page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wp-D3] Plugin reformatting unrelated shortcode output with wpautop](https://wordpress.org/support/topic/plugin-reformatting-unrelated-shortcode-output-with-wpautop/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/plugin-reformatting-unrelated-shortcode-output-with-wpautop/#post-7302221)
 * fyi, problem still exists in Version 2.3
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wp-D3] Plugin reformatting unrelated shortcode output with wpautop](https://wordpress.org/support/topic/plugin-reformatting-unrelated-shortcode-output-with-wpautop/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/plugin-reformatting-unrelated-shortcode-output-with-wpautop/#post-7302220)
 * same problem here – took us an hour to isolate this plugin was the cause of it.
   thanks for the headsup the_enn – the remove wpautop filter doesn’t work without
   the ’90’ in it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AngularJS for WordPress] newPost post_type: not creating cpt](https://wordpress.org/support/topic/newpost-post_type-not-creating-cpt/)
 *  Thread Starter [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [11 years ago](https://wordpress.org/support/topic/newpost-post_type-not-creating-cpt/#post-6019443)
 * nope – haven’t enabled that on any page yet.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AngularJS for WordPress] newPost post_type: not creating cpt](https://wordpress.org/support/topic/newpost-post_type-not-creating-cpt/)
 *  Thread Starter [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [11 years ago](https://wordpress.org/support/topic/newpost-post_type-not-creating-cpt/#post-6019391)
 * That fixed it, U’DaMan!
 * Couple things to note:
    1. WordPress didn’t recognize an update was available,
   I had to download from here and install. (I think you have to increment the version
   number)
 * 2. New bug:
    When plugin is enabled, it breaks the default “/my-account” login
   form w/woocommerce. I dug around the source and found this loading on the page:
 * <div ng-app=”wpAngularPlugin” class=”ng-scope”>
 * Also, it appears that is loading on all cpt’s. The only place it doesn’t appear
   to be loading is on the main blog page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] database error message](https://wordpress.org/support/topic/database-error-message-7/)
 *  [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/database-error-message-7/#post-5842775)
 * same here..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced iFrame] URL Forward Parameter: name – returns 404](https://wordpress.org/support/topic/url-forward-parameter-name-returns-404/)
 *  Thread Starter [kcsf](https://wordpress.org/support/users/kcsf/)
 * (@kcsf)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/url-forward-parameter-name-returns-404/#post-4490623)
 * Fantastic…can you send us a copy? It’s kind of urgent…or should we download the
   pro demo (where do we get it)?
 * Thanks again..

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

1 [2](https://wordpress.org/support/users/kcsf/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/kcsf/replies/page/2/?output_format=md)