WC_Email_Customer_POS_Refunded_Order::get_pos_store_nameprivateWC 1.0

Get the store name 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_name();

WC_Email_Customer_POS_Refunded_Order::get_pos_store_name() code WC 10.7.0

private function get_pos_store_name() {
	return $this->format_string(
		get_option( 'woocommerce_pos_store_name', PointOfSaleDefaultSettings::get_default_store_name() )
	);
}