Home Forums Jevelin Theme How to make "purchase package" button open in new window? Reply To: How to make "purchase package" button open in new window?

Home Forums Jevelin Theme How to make "purchase package" button open in new window? Reply To: How to make "purchase package" button open in new window?

Solution for this topic

Could you please try using below CSS code instead of above shared?

 

function add_pricing_button_custom_scripts(){ ?>
	<script type="text/javascript">
		jQuery(document).ready(function($){
			$("#page-container .sh-pricing-content-center a.sh-pricing-button").attr("target","_blank");
		});
	</script>
<?php }
add_action('wp_footer', 'add_pricing_button_custom_scripts', 99);