Astra_Woocommerce::change_cart_close_icon( string $string )

Change cart close icon.


Description


Parameters

$string

(string) (Required) Close button html.


Return

(string) $string Close button html.


Source

File: inc/compatibility/woocommerce/class-astra-woocommerce.php

		public function change_cart_close_icon( $string ) {
			$string = str_replace( '×', Astra_Builder_UI_Controller::fetch_svg_icon( 'close', false ), $string );
			return $string;
		}

Changelog

Changelog
Version Description
3.9.0 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.