rpress_payment_user_ip

This filter is applied to use to retrieve payment IP, it is including two parameters. apply_filters( ‘rpress_payment_user_ip’, $this->ip, $this->ID, $this ); $this->ip is to get payment IP address $this->ID is used to get id. $this is used to get access

rpress_payment_customer_id

This filter is applied to use the payment customer ID, it is including two parameters. $customer_id -> get the int value of customer-id $ID -> is used to get id. An example of how you can append additional information: function

rpress_payment_user_id

This filter is applied to use the payment user id, it is including two parameters. $this->user_id is to get user id. $this->ID is used to get id. An example of how you can append additional information: function get_user_id( $user_id ){

rpress_payment_user_email

This filter is applied to use the retrieve payment email, it is including two parameters. $email -> is to get the email. $ID  -> is used to get id. function get_payment_user_email( $email ){ //its return email id of user return

rpress_payment_meta_user_info

This filter is applied to use the retrieved payment user info, it is including two parameters. $user_info -> is to get user info. $ID -> is used to get id. An example of how you can append additional information: function

rpress_payment_address

This filter is applied to use the payment billing address, it is including two parameters. $address -> is a function used to get the payment billing address. $ID  -> is used to get id. An example of how you can

rpress_payment_number

This filter is applied to use the payment number, it is including two parameters. $number -> is a function used to get the number. $ID -> is used to get id. function get_payment_number() { //its return the payment number. return

rpress_payment_meta_fooditems

This filter is applied to use the payment food items on payment, it is including two parameters. $fooditems -> get food items. $ID -> is used to get id. function get_meta_fooditems( $fooditems ){ //its return fooditems meta. return $fooditems; }

rpress_payment_unlimited_fooditems

This filter is applied to use the payment unlimited file food items status, it is including two parameters. apply_filters( ‘rpress_payment_unlimited_fooditems’, $this->unlimited, $this->ID, $this ); $this->unlimited bool Is unlimited. $this->ID is used to get id. $this is used to get access

rpress_update_payment_meta_

This filter is applied to use to update the post meta, it is including three parameters. $meta_key -> the meta key to update. $meta_value -> the meta value. $ID ->is used to get id. function update_payment_meta( $meta_key,$meta_value ) { //