• Resolved loppisinorge

    (@loppisinorge)


    Hi!

    I have made a calculator that let’s College students figure out their GPA.

    Now i want to make a calculator that let’s High School students figure out their GPA.

    I have made a breife design og how i plan to do so.
    Please look at the attached picture.

    My questions is, is this doable?
    Can i have a two separate calculators, just by the push of a button?

    The calculator being used now, is for College students.

    Best regards!

    Link for picture:
    https://postimg.cc/Xrf71ZwJ

    • This topic was modified 1 year, 3 months ago by loppisinorge.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @loppisinorge

    You can create two separate forms and insert their shortcodes on the same page and two links to display one of the forms at once. But the code on the page is independent of the forms.

    <a href="javascript:void();" onclick="jQuery('.form-a').show();jQuery('.form-b').hide();">Form A</a>
    <a href="javascript:void();" onclick="jQuery('.form-b').show();jQuery('.form-a').hide();">Form B</a>
    
    <div class="form-a">[CP_CALCULATED_FIELDS id="1"]</div>
    <div class="form-b" style="display:none;">[CP_CALCULATED_FIELDS id="2"]</div>

    Best regards.

    Thread Starter loppisinorge

    (@loppisinorge)

    Can you make a short video of how to do so?

    Plugin Author codepeople

    (@codepeople)

    Hello @loppisinorge

    Even better, the plugin includes a template you can use as the starting point for your project. Please, watch the following video.

    https://resources.developers4web.com/cff/tmp/2023/02/21/video-optional-fields_o.mp4

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Activate button to have two Calculators’ is closed to new replies.