onclick not working since move from HTML to WP

I would try separating the html from the javascript. i.e. not using “onclick” in html but instead using addEventListener. <a href=”javascript:document.searchform.submit();” class=”btn_reserve”>Reserve Now!</a> <script> document.querySelector(‘.btn_reserve’).addEventListener(“click”, function(e) { // it seems like this line won’t return a URL and will instead submit the form. // I would double check it. var url = document.searchform.submit(); goog_report_conversion(url); }); … Read more

How WP does Mortgage affordability calculation

They’ve created an algorithm to determine what amount the user can afford based on the user’s previous answers. You need that algorithm/equation. WordPress has nothing to do with how the price is determined… This is not a question for this forum. It’s a question that you should ask a realtor or a mortgage professional, I’m … Read more