aa1235561
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Order Status for WooCommerce] Order bulk actions not showingIt’s the bug
alg_get_custom_order_statuses_from_cptfunction. Check the folder in/includes/class-alg-wc-custom-order-statuses-core.php. This function is not solid to hanlde the bulk action.Turn back to usealg_get_custom_order_statuseswould be alright. Hope the author could resolve this issue rapidly./includes/class-alg-wc-custom-order-statuses-core.php . . .public function register_order_custom_status_bulk_actions( $bulk_actions ) { // $custom_order_statuses = alg_get_custom_order_statuses_from_cpt( true ); // <-- there is the bug happend. $custom_order_statuses = alg_get_custom_order_statuses( true ); // Turn back to deprecated(maybe) function. foreach ( $custom_order_statuses as $slug => $label ) { // translators: New Status. $bulk_actions[ 'mark_' . $slug ] = sprintf( __( 'Change status to %s', 'custom-order-statuses-woocommerce' ), $label ); } return $bulk_actions; }Forum: Fixing WordPress
In reply to: turn off auto formatting in code editor@sitebay that’s the simple and clean way s far. Auto-formated is real tragedy in the code editor with non-intelligent auto put the random auto close tag into everywhere.
Forum: Reviews
In reply to: [WP Store Locator] Excellent WorkThe filter wpsl_store_data couldn’t accept the array element unset, it still displays the whole array. But instead for the filter, I put the condition logical with mod wpsl-gmap.min.js.
Invoice is base with the order. If you want to set the
Invoice mebefore completing the order, you have found the hook of document create a hook, then set up the order is null action.