How to make the recurring box for membership recurring “Checked” by default
In wprentals\user_dashboard_packs.php file at line 65 you have
input type="checkbox" name="pack_recuring" id="pack_recuring" value="1"
replace that with
input checked type="checkbox" name="pack_recuring" id="pack_recuring" value="1"
How to hide Recurring box for membership submission
#pack_recuring {
display: none;
}
[for="pack_recuring"] {
display: none!important;
}