bruceappinletcom
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-VR-view - Add Photo Sphere, 360 video to Wordpress] Broken on iOS 12The problem is, rotation is happening on the ‘top’ or ‘bottom’ of the image.
Forum: Plugins
In reply to: [WP-VR-view - Add Photo Sphere, 360 video to Wordpress] Broken on iOS 12Agreed, seems to be affecting all iPhones.
Forum: Plugins
In reply to: [YITH Live Chat] Google Firebase Critical AlertDitto.
Forum: Plugins
In reply to: [Xeroom] Fee not being sentI’ll follow this up via email with you directly.
Forum: Plugins
In reply to: [Xeroom] Variable Items “Invalid product” at CheckoutI managed to sort this out by manually making the product code under 30 chars
Forum: Plugins
In reply to: [Xeroom] INPUT4 errorNVM, got it sorted, wrong tax type name
Forum: Plugins
In reply to: [Xeroom] Fatal error: ionCube EncoderThanks Peter!
Forum: Plugins
In reply to: [Xeroom] Fatal error: ionCube EncoderThanks!
Forum: Plugins
In reply to: [Xeroom] Fatal error: ionCube EncoderANy chance we can use the unencoded version on our server?
Forum: Reviews
In reply to: [Checkout Address Autocomplete for WooCommerce] They still support this.Sure! Country is South Africa.
Forum: Reviews
In reply to: [Checkout Address Autocomplete for WooCommerce] They still support this.We ended up using a paid solution. Don’t have it present. But install the plugin on a new site and you’ll see. Others have also experienced the same issue.
- This reply was modified 7 years, 2 months ago by bruceappinletcom.
Same problem.
Forum: Plugins
In reply to: [WooCommerce] Show time on order backend broken since Woo 3Based off another snippet I’ve been using, I wrote the below as an alternative workaround.
/* * Show order time as an custom column on backend */ function appinlet_wc_custom_time_column($columns) { $new_array = array(); foreach ($columns as $key => $title) { if ($key == 'order_total') { $new_array['order_time'] = __( 'Time','time-items-column-woocommerce'); } $new_array[$key] = $title; } return $new_array; } add_filter('manage_edit-shop_order_columns', 'appinlet_wc_custom_time_column'); /* process custom columns */ function appinlet_wc_shop_custom_column($column) { if ($column == 'order_items') { echo '<a href="#" class="show_order_items" data-wc-order="'.get_the_ID().'">Show items</a><div id="show_order_items_'.get_the_ID().'"></div>'; } if ($column == 'order_time') { echo '<a href="#" class="show_order_time" data-wc-order="'.get_the_ID().'">Show time</a><div id="show_order_time_'.get_the_ID().'"></div>'; } } add_action('manage_shop_order_posts_custom_column', 'appinlet_wc_shop_custom_column', 10, 2); function appinlet_wc_find_time_ajax_javascript() { if (isset($_GET["post_type"]) && ($_GET["post_type"] != 'shop_order')) { return; } ?> <script> jQuery(document).ready(function($) { $(".show_order_time").click(function() { var order_id = $(this).data("wc-order"); $('#show_order_time_'+order_id).html('loading...'); var data = { 'action': 'appinlet_wc_find_time_ajax', 'order_id': order_id }; $.post(ajaxurl, data, function(response) { $('#show_order_time_'+order_id).html(response); }); }); }); </script> <?php } add_action( 'admin_head-edit.php', 'appinlet_wc_find_time_ajax_javascript' ); function appinlet_wc_find_time_ajax() { $post_id = intval( $_POST['order_id'] ); $post = get_post( $post_id ); $time = get_the_time(__('G:i', 'woocommerce'), $post); echo $time; wp_die(); } add_action( 'wp_ajax_appinlet_wc_find_time_ajax', 'appinlet_wc_find_time_ajax' );
Forum: Plugins
In reply to: [WooCommerce] Show time on order backend broken since Woo 3While using the above snippet still works, I’m now getting this notice in my debug log:
PHP Notice: Undefined variable: post
Forum: Plugins
In reply to: [WooCommerce] WooCommerce 3 no Purchased Column under Orders@pipdig, thanks mate! I’ve also rated your plugin with 5 stars. I encourage anyone using this plugin to give it a good rating.