contact form doesn’t print | WordPress.org

[ad_1]

Hey,

You use this addons for CF7

The plugin suggested by @iffikhan30 will let you view and print the submitted data.

If you want to print the form itself (along with the rest of the page.. but not the submitted data)…

Why can’t I print the form?

That’s because your theme has CSS code that hides forms (and many other elements) from being printed. This is done to ensure a clean printout of the main content, without the sidebar, navigation links and other interactive elements that are not necessary for print.

You can use the following custom CSS to override the theme’s print CSS that hides the form and its fields (put it in APPEARANCE => CUSTOMIZE => ADDITIONAL CSS):

@media print {
    form, select, textarea, input:not([type="submit"]), button:not([id="menu-toggle"]) {
         display: unset;
    }
    textarea {height: 130px;}
}

Please take note of the following:

1) I left out the SUBMIT button using the code input:not([type="submit"]), as that may not be necessary on printed paper. If you want to print the submit button as well, change this to just input.

2) I’ve added code to show all buttons, except the mobile hamburger menu: code is button:not([id="menu-toggle"])

3) I’ve added extra code textarea {height: 130px;} to reduce the height of the textarea (multi-line message field) when printed. You may remove this line completely, or adjust the height as necessary.

4) Finally, if you only want to print the form’s field labels but not the input boxes, use the following simplified code INSTEAD of the above:

@media print {form {display: unset;} }

Good luck!

Wow, thank you guys!

I will certainly check this out.

In the meantime I got the idea to switch themes and voiala, it works. It still works after switching back to the original theme. Strange …

Keep up the good work …

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer