Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support mbrsolution

    (@mbrsolution)

    Hi unfortunately at the moment there is not tick box option for the terms and conditions.

    An alternative would be, add some text above or below the button. The text would say something like by clicking on the submit button you agree to the terms and condition and add a URL link to the terms and conditions page.

    Thread Starter webgalway

    (@webgalway)

    Ok might be good idea to add this, thanks for the suggestion, will see if I get away with that before trying to custom code it in..

    Thread Starter webgalway

    (@webgalway)

    Well he really wanted that checkbox.. used some javascript on join page to do the job, have included it below in case it’s of any use to someone else..

    <script type=”text/javascript”>
    function $_(IDS) { return document.getElementById(IDS); }
    function toggle(Info) {
    var CState = $_(Info);
    if (CState.style.display != “none”) { CState.style.display = “none”; }
    else { CState.style.display = “block”; }
    }
    function HideElem(IDS1, IDS2) {
    toggle(IDS1);
    toggle(IDS2);
    }
    </script>
    Membership Link activated after agreeing to terms and conditions below.
    <span id=”CBox0″>
    <input type=”checkbox” name=”CBox0″ value=”A” onchange=”HideElem(‘TBox0’)”>Tick to agree to Terms and Conditions
    </span>
    <div id=”TBox0″ name=”TBox0″ style=”display:none”>[swpm_payment_button id=58]</div>

    Plugin Support mbrsolution

    (@mbrsolution)

    @webgalway thank you for sharing your solution. I am sure many will find your script useful.

    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘terms & conditions tickbox’ is closed to new replies.