• Resolved stephenbolu

    (@stephenbolu)


    Please how can I make the balance not to be clickable when a user click on the balance it will redirect them to another page which have deactivate so I don’t want it to redirect them again to any page but it is still Clickable I don’t want it to be able to click or redirect user to another page just to be one no clickable

Viewing 1 replies (of 1 total)
  • Plugin Author Subrata Mal

    (@subratamal)

    @stephenbolu You can do that using javascript code.

    <script type="text/javascript">
    	jQuery(document).ready(function($){
    		$('.woo-wallet-icon-wallet').parent().on('click', function(e){
    			e.preventDefault();
    		})
    	});
    </script>

    add the attached code in the theme footer.php file.

Viewing 1 replies (of 1 total)
  • The topic ‘Balance clickable’ is closed to new replies.