Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode

Stops content going to top

<?php
 //Add Shortcodes
function add_vatlist_shortcode() {
	ob_start();
	get_template_part('templates/vat_rates_all', 'page');
    
return ob_get_clean();


}
add_shortcode( 'vatrates', 'add_vatlist_shortcode' );
?>