RestroPress Addon Quantity
By using this extension you can add the quantity features for your add-ons. To enable the addon quantity feature you need to activate the extension and after that go through these steps : Food Items -> Addons -> Here you
By using this extension you can add the quantity features for your add-ons. To enable the addon quantity feature you need to activate the extension and after that go through these steps : Food Items -> Addons -> Here you
In order to use the App after a successful download from the play store, you need to purchase the RestroPress KDS Extension that is available on our website. You have to install the extension as a normal plugin in your
The rpress_should_process_pending filter is used to Allow extensions to filter for their own payment types Process when a payment moves to pending, for Example, Recurring Payments. function process_payment_pending( $process_pending,$payment_id ) { $process_pending = //get pending payment gateway id. }
The rpress_payment_cart_details filter is used to retrieve payment cart details, the filter includes a two-parameters. $art_details ->is an array containing cart items details $ID -> get fooditems id. An example of how you can append additional information: function get_payment_cart_details($cart_details) {
The rpress_payment_completed_date filter is used to retrieve the payment completion date, The filter accepts two parameters. An example of how you can append additional information: function get_completed_date($completed_date){ $completed_date = // get completed date. } add_filter( 'rpress_payment_completed_date','get_completed_date' , 10,2 );
The rpress_get_payment_tax filter is used to get the payment tax, the filter includes a three-parameter. $this->tax is gets all taxes. $this->ID is gets the id. An example of how you can append additional information: function get_payment_tax($tax){ $tax = //return tax
This filter is applied to use the payment subtotal amount data of orders, it is including two parameters. $this->subtotal is got the subtotal value. $this->ID is used to get id. An example of how you can append additional information: function
This filter is applied to use the discounted amount of the payment, it is including two parameters. $total is a variable that stores the total amount. $fees are stored in the amount of the fee. $tax is stored the tax
This filter is applied to use the Payment currency code, it is including two parameters. $currency ->is a string to get currency. $ID ->is used to get id. function get_currency_code( $currency ) { return $currency //return payment currency code. }
This filter is applied to use the list of all available gateways, it is including one parameter. $gateways-> is an array of all the available gateways. An example of how you can append additional information: function get_gateways( $gateways ){ //
Recent Comments