• Resolved MasG

    (@dhevilz)


    hi.. i want to try print page with calculated field form, but this page blank

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

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

    (@codepeople)

    Hello @dhevilz

    The page is blank because you entered the following style definition into the “Customize Form Design” attribute in the “Form Settings” tab:

    @media print{
        body *{visibility:hidden;}
        form.form-for-printing *{visibility:visible !important;}
        form.form-for-printing .ignore{display:none !important;}
    }

    So, you can insert the form shortcode with the class attribute to use your styles’ definition:

    [CP_CALCULATED_FIELDS id="6" class="form-for-printing"]

    Best regards.

    Thread Starter MasG

    (@dhevilz)

    how to hide title and line of column?

    Plugin Author codepeople

    (@codepeople)

    Hello @dhevilz

    You can use the @media print block to hide does element you want to exclude from the printed form.

    For example, to hide the fieldset legends and frame, you can enter the style definition:

    @media print{
    #fbuilder legend{display:none !important;}
    #fbuilder fieldset{border:0 !important;}
    }

    Best regards.

    Thread Starter MasG

    (@dhevilz)

    how to remove page title and meta title space when printing? https://prnt.sc/WqzABdr9bBk8

    Thread Starter MasG

    (@dhevilz)

    and remove 2nd border.
    like this https://prnt.sc/vllfitEcsP77

    Plugin Author codepeople

    (@codepeople)

    Hello @dhevilz

    You can use styles definition like these:

    
    #fbuilder .fform{display:none !important;}
    #fbuilder input,
    #fbuilder textarea{border:0 !important;}
    

    Please, if you need a custom coding service to implement your project, you can contact us directly through the plugin website:

    https://cff.dwbooster.com/customization

    Best regards.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Print Eror’ is closed to new replies.