Buton text change code in woodmart

PHOTO EMBED

Wed Jun 12 2024 19:18:26 GMT+0000 (Coordinated Universal Time)

Saved by @Promakers2611

	add_filter('woocommerce_product_add_to_cart_text', 'custom_woocommerce_product_add_to_cart_text');

	function custom_woocommerce_product_add_to_cart_text($text) {
		global $product;
		if ($product->is_type('external')) {
			return __('See Prices', 'woocommerce');
		}
		return $text;
	}
content_copyCOPY