Hi Yuniar,
I was looking for a way to hide the payment "total" amount of the first page of a multi-page form, and I found this post...https://www.machform.com/forums/topic/hide-total-price-only-on-the-first-page-of-a-multipage-form
I managed to get things to work similarly by updating the code to:
$(function(){
if ($('input[name=page_number]').val() == '1') {
$(".total_payment").hide();
}
});
But is there a better way of doing this?
Ideally, I'd like to be able to target MachForm-prefixed code, but I couldn't find a modern equivalent of .ap_tp_num_active
Any advice is appreciated!
-Megan