I need to remove the contents of
<p class="print_pdf">
from a single page on my site.
I cant use CSS, and I cant edit the index file to remove it as its XML and an element that loads on every page of our catalog site.
I've tried for example
$( "p.print_pdf" ).replaceWith( "" );
Without any luck
You're printing a page and you want to remove the print icon when printing, right?
So, you can use CSS for that:
@media print
{
.print_pdf, .print_pdf *
{
display: none !important;
}
}