• Resolved tilou

    (@tilou)


    Hello, I am trying to create a summary page. But in the summary page for the slider, it only displays the “field caption”. Is it possible to display also the “Min Corner Caption” and the “Max Corner Caption”? Or better can it show the slide as in the form?

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

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

    (@codepeople)

    Hello @tilou

    Thank you very much for using our plugin. The plugin displays only the fields’ labels and values in the summary. If you want to generate a custom summary, you should generate it by yourself.

    For example, if you insert an “HTML Content” field in the form with a div tag as its content:

    <div class="summary-here"></div>

    You can insert a calculated field to generate the summary and display it in the tag:

    (function(){
    var summary = '';
    summary += 'Label of first field: '+fieldname1+'<br>';
    summary += 'Label of second field: '+fieldname2+'<br>';
    
    jQuery('.summary-here').html(summary);
    })()

    Best regards.

    Thread Starter tilou

    (@tilou)

    Thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Slider Summary’ is closed to new replies.