function enqueue_custom_script() {
?>
function changeCurrencySymbol(newSymbol) {
var symbolElements = document.querySelectorAll('.page-id-16196 .account-orders-table .woocommerce-Price-currencySymbol');
symbolElements.forEach(function(element) {
element.textContent = newSymbol;
});
}
// Example usage: Change symbol to '$'
changeCurrencySymbol('$');