WC_Email_Customer_POS_Refunded_Order::get_pos_store_address
Get the store address from POS settings.
Method of the class: WC_Email_Customer_POS_Refunded_Order{}
No Hooks.
Returns
String.
Usage
// private - for code of main (parent) class only $result = $this->get_pos_store_address();
WC_Email_Customer_POS_Refunded_Order::get_pos_store_address() WC Email Customer POS Refunded Order::get pos store address code WC 10.8.1
private function get_pos_store_address() {
return $this->format_string(
get_option( 'woocommerce_pos_store_address', PointOfSaleDefaultSettings::get_default_store_address() )
);
}