Hi, where can I add the print.css file? Also I need to know where to add the link to that CSS file.
We need to print only the form inside Formidable, View Entries, view individual entries (<table class=”form-table”>.
Thanks.
WordPress Forms
Hi, where can I add the print.css file? Also I need to know where to add the link to that CSS file.
We need to print only the form inside Formidable, View Entries, view individual entries (<table class=”form-table”>.
Thanks.
Formidable is a dream come true! It works like magic.
Fitz (Fitz Magic)Formidable is perhaps the single most useful WP plugin I've ever come across - wonderful product and I must also say extremely fast support response.
John BowdenCopyright © 2013 Strategy11, LLC
September 28, 2012 at 2:29 pm
Please take a look at these resources on adding Print.css to your page. This isn't really a Formidable Pro question, but a general web development/WordPress question:
http://www.onextrapixel.com/2009/05/05/how-to-create-a-simple-print-css-for-your-site/
http://line25.com/tutorials/handy-tips-for-creating-a-print-css-stylesheet
http://www.intensivstation.ch/en/css/print/
October 1, 2012 at 8:29 am
I disagree Steve. The info you have shared is a wealth of information if one was looking to only create a print.css for the entire site.
What my client needs is a print.css for just the admin section and just for the formidable table area. I have added print.css to websites before, but perhaps I misunderstand something.
Alex
October 1, 2012 at 12:35 pm
Wouldn't the process of adding print.css that hides everything in the admin section except the formidable table area be the same? Formidable Pro doesn't have this functionality built it, and I am not aware of any documented customizations that make this possible, so you may need to work this one out with the help of those resources linked to above.
You need to hide everything on the page using display:none CSS then show only the table with something like:
table.wp-list-table {display:block;}
October 1, 2012 at 4:20 pm
Thanks. So far, I have not found a way to force a print.css stylesheet to show up in the ADMIN area. This is very important as we are trying to print the forms from the Dashboard/Formidable/View.
Any idea how to "hook" the print.css to the admin area?
October 1, 2012 at 4:27 pm
Please use google or hire a developer to help with this.
https://www.google.com/search?q=how+to+load+a+stylesheet+in+WordPress+Admin&oq=how+to+load+a+stylesheet+in+WordPress+Admin&sugexp=chrome,mod=6&sourceid=chrome&ie=UTF-8
October 2, 2012 at 11:33 am
Thanks Steve. I was able to use
<?php
if( is_admin()) {
wp_enqueue_style('print_css', $themedir . "/wp-content/themes/mydesigns/print.css");
}
?>
Now my print.css files are showing up in the Admin area and I am able to make changes to what prints out from Formidable/Form Entries/View Entries/entry
Thanks alot for all the assistance! Love the program!
Topic closed.