If you want to print a conversation (or PDF) from ChatGPT, as of this writing the CSS makes it cut off everything after the first page.
Here's a simple little hack to enable printing the entire conversation.
Open the Javascript Console (Ctrl-Shift-J) or Developer Tools (Ctrl-Shift-I). Make sure the focus is on the console prompt >
.
Paste and run this:
document.querySelectorAll('.overflow-hidden').forEach(element => {
element.classList.remove('overflow-hidden');
})
You should then be able to print (or convert to PDF) entire conversations more easily. Note that you may have to make sure the entire conversation is loaded into your browser because long ones are split up into segments.
When finished printing, simply reload the page (F5) to go back to the way it was.