• Resolved peter-a

    (@peter-a)


    I was using custom code in functions.php to add footer text to the bottom of every post. It is inside the loop, but just after the_content. When I upgraded to 3.3.3, this footer text no longer shows up in the print version.

    And this solution via the custom CSS option doesn’t work now, either:

    @media print {
      #pf-print-area:after{
       content:"This is my footer";
       position: absolute;
       bottom: 0;
      }
     }

    http://wordpress.org/plugins/printfriendly/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Print & PDF by PrintFriendly

    (@printfriendly)

    Thanks for reporting. We’re looking into it as a top priority.

    Plugin Author Print & PDF by PrintFriendly

    (@printfriendly)

    Can you send me the URL of a page I can observe the problem?

    Thread Starter peter-a

    (@peter-a)

    Right now the site is not publicly accessible, but if you provide an e-mail address, I can send you a login.

    Also, I have temporarily rolled back to v3.3.2 of the plugin as a workaround. But here’s how the relevant text appears in the source code:

    <section class="entry">
    <div class="printfriendly pf-alignright"><a href="http://www.printfriendly.com/print?url=http://mydomain.org/2013/10/fourth-in-a-series/" rel="nofollow" onclick="window.print();if(typeof(_gaq) != 'undefined') { _gaq.push(['_trackEvent','PRINTFRIENDLY', 'print', 'NULL']);} return false;"><span class="printfriendly-text2 printandpdf"><img style="border:none;margin-right:6px;" src="http://cdn.printfriendly.com/pf-print-icon.gif" width="16" height="15" alt="Print Friendly Version of this page" />Print <img style="border:none;-webkit-box-shadow:none; box-shadow:none;margin:0 6px" src="http://cdn.printfriendly.com/pf-pdf-icon.gif" width="12" height="12" alt="Get a PDF version of this webpage" />PDF</span></a></div><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.</p>
    <p class="copyright"><b>All content © My Name, all rights reserved.</b><span class="delete-no"> No content may be reproduced by any means for commercial purposes or mass circulation without prior written permission from the webmaster. You are welcome to download for your own personal reading.</span></p>

    I had to add that <span class=”delete-no”> tag because when I just used <p class=”copyright”>, everything after </b> was deletable in PrintFriendly. And the custom CSS had no effect.

    Plugin Author Print & PDF by PrintFriendly

    (@printfriendly)

    You can email me at taylor@printfri…ly.com.

    Plugin Author Print & PDF by PrintFriendly

    (@printfriendly)

    Remove the @media print from the CSS.

    Then it will appear in the preview as well as the printed page.

    Like this…

    #pf-print-area:after{
       content:"This is my footer";
       position: absolute;
       bottom: 0;
      }
    Thread Starter peter-a

    (@peter-a)

    This approach didn’t work for me. I upgraded to v3.3.4 and added that to my CSS. It doesn’t show up in either the preview or the printed page.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Custom footer broken in 3.3.3’ is closed to new replies.