Pages Element
Display a list of sub pages of a selected page in a beautiful way. Very useful if you need to link to sub pages from a parent page.
Default Style
Sorry, no pages was found
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) { case 'VND': $currency_symbol = 'VNĐ'; break; } return $currency_symbol; }
Sorry, no pages was found