Title: tp911's Replies | WordPress.org

---

# tp911

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

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

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Change status of the order through REST API](https://wordpress.org/support/topic/change-status-of-the-order-through-rest-api/)
 *  Thread Starter [tp911](https://wordpress.org/support/users/tp911/)
 * (@tp911)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/change-status-of-the-order-through-rest-api/#post-13453008)
 * Hi, Thanks for the answer. Yeah, i follow the documentation.
    However, i get “
   Request failed with status code 404”, when i perform this request.
 * Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Get Order list from Woocommerce REST API for today date](https://wordpress.org/support/topic/get-order-list-from-woocommerce-rest-api-for-today-date/)
 *  Thread Starter [tp911](https://wordpress.org/support/users/tp911/)
 * (@tp911)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/get-order-list-from-woocommerce-rest-api-for-today-date/#post-13421439)
 * If you want to get orders that received in a specific time then you can use after&
   before filters…From Woocommerce REST documentation.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce PayPal Checkout Payment Gateway] Paypal Express checkout is hiding WC notice](https://wordpress.org/support/topic/paypal-express-checkout-is-hiding-wc-notice/)
 *  Thread Starter [tp911](https://wordpress.org/support/users/tp911/)
 * (@tp911)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/paypal-express-checkout-is-hiding-wc-notice/#post-13390322)
 * Below is my code…
 *     ```
       add_action( 'woocommerce_checkout_process' , 'required_min_cart_subtotal_amount');
       // Only run in the Cart or Checkout pages
       function required_min_cart_subtotal_amount() {
   
       	if( is_checkout()) {
       		global $woocommerce;
   
       		// Set the minimum order amount and shipping zone before checking out
               $minimum = 12;
       	  	$county1 	= array(000001);
       		$county2 	= array(000002);
   
       		// Defining var total amount      
               $cart_tot_order = WC()->cart->total;
   
       		if( $cart_tot_order < 8 && in_array( WC()->customer->get_shipping_postcode(), $county1 )  ) {
       			// Display error message
       			 wc_add_notice( sprintf( '<strong>Eine Mindestbestellmenge von $% s ist erforderlich, um an Ihre Adresse zu liefern.</strong>' 
       	        	. '<br />Aktueller Auftrag: $%s.',
       	        	8,
                       $cart_tot_order	),
       	        'error' );
   
       		} elseif( $cart_tot_order < 10 && in_array( WC()->customer->get_shipping_postcode(), $county2) ) {
       				// Display error message
       	        wc_add_notice( sprintf( '<strong>Eine Mindestbestellmenge von $% s ist erforderlich, um an Ihre Adresse zu liefern.</strong>' 
       	        	. '<br />Aktueller Auftrag: $%s.',
       	        	10,
                       $cart_tot_order	),
       	        'error' );
       			}
       }
       ```
   
    -  This reply was modified 5 years, 8 months ago by [tp911](https://wordpress.org/support/users/tp911/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Store Hours for WooCommerce] Displaying different messages when store is closed](https://wordpress.org/support/topic/displaying-different-messages-when-store-is-closed/)
 *  Thread Starter [tp911](https://wordpress.org/support/users/tp911/)
 * (@tp911)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/displaying-different-messages-when-store-is-closed/#post-13363055)
 * Hi, thanks for the reply. Where should i insert this functionality?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Anywhere & Create PDFs of Order Receipts, Invoices, Labels & More.] Prices showing excluded tax in Customer order Receipt](https://wordpress.org/support/topic/prices-showing-excluded-tax-in-customer-order-receipt/)
 *  Thread Starter [tp911](https://wordpress.org/support/users/tp911/)
 * (@tp911)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/prices-showing-excluded-tax-in-customer-order-receipt/#post-13352173)
 * Sure…
    Check out the pics attached here…. [https://ibb.co/JycVMpy](https://ibb.co/JycVMpy)
   [https://ibb.co/wKq1zy0](https://ibb.co/wKq1zy0)
 * Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Anywhere & Create PDFs of Order Receipts, Invoices, Labels & More.] Prices showing excluded tax in Customer order Receipt](https://wordpress.org/support/topic/prices-showing-excluded-tax-in-customer-order-receipt/)
 *  Thread Starter [tp911](https://wordpress.org/support/users/tp911/)
 * (@tp911)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/prices-showing-excluded-tax-in-customer-order-receipt/#post-13351826)
 * yeah , that’s my question.
    But i am having the settings like Including Tax to
   Display prices in the shop too….
 * But still i am having the prices for items in the cart, is after tax…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Anywhere & Create PDFs of Order Receipts, Invoices, Labels & More.] Prices showing excluded tax in Customer order Receipt](https://wordpress.org/support/topic/prices-showing-excluded-tax-in-customer-order-receipt/)
 *  Thread Starter [tp911](https://wordpress.org/support/users/tp911/)
 * (@tp911)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/prices-showing-excluded-tax-in-customer-order-receipt/#post-13351291)
 * Thanks for the reply. I understood how Tax works in Woocommerce. If “Include 
   Tax ” option selected, then subtotal and total will be same in Woocommerce, i
   knew that, at the same time the price of each item in the cart will be the normal
   price.
    I am having this option but in Woocommerce cart, its just fine. But in
   the print template the price of each items are different wich means the prices
   are shown after deduct the teax value, we really do not want to show in that 
   way. Also the separate line for tax is great fro us too. But why the prices of
   the items are showing like that? That’s our problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Separate web app for List new orders](https://wordpress.org/support/topic/separate-web-app-for-list-new-orders/)
 *  Thread Starter [tp911](https://wordpress.org/support/users/tp911/)
 * (@tp911)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/separate-web-app-for-list-new-orders/#post-13204218)
 * Thanks for the suggestion. I will look in to it.

Viewing 8 replies - 1 through 8 (of 8 total)