kcsf
Forum Replies Created
-
Forum: Plugins
In reply to: [Broadcast] Problem with scheduleLog file sent via email, did you get it?
Forum: Plugins
In reply to: [Broadcast] Problem with scheduleyes, 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
In reply to: [Broadcast] Problem with scheduleWe are experiencing the same problem.
Do you have a solution?Forum: Plugins
In reply to: [Product Customer List for WooCommerce] Feature request threadwe 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
In reply to: [Product Customer List for WooCommerce] Feature request threadGreat,
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
In reply to: [Product Customer List for WooCommerce] Feature request threadok, in the meantime – will you point us to the file that generates the list, perhaps we can add the code ourselves;)
Forum: Plugins
In reply to: [Product Customer List for WooCommerce] Feature request threadGreat!!
Possible ETA?
Forum: Plugins
In reply to: [Product Customer List for WooCommerce] Feature request threadDisplay Options for Front-End shortcode.
– ie. Firstname, Lastname, Amount, Product Variation, Avatar!Forum: Plugins
In reply to: [Kanban Boards for WordPress] BuddyPress suport!!!+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
In reply to: [Wp-D3] Plugin reformatting unrelated shortcode output with wpautopfyi, problem still exists in Version 2.3
Forum: Plugins
In reply to: [Wp-D3] Plugin reformatting unrelated shortcode output with wpautopsame 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
In reply to: [AngularJS for WordPress] newPost post_type: not creating cptnope – haven’t enabled that on any page yet.
Forum: Plugins
In reply to: [AngularJS for WordPress] newPost post_type: not creating cptThat 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
In reply to: [Code Snippets] database error messagesame here..
Forum: Plugins
In reply to: [Advanced iFrame] URL Forward Parameter: name – returns 404Fantastic…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..