Page 1 of 1
Adjust text PDF Print Button
Posted: 27 Mar 2024, 06:54
by Webteur
How can I adjust the text of the PDF Print Button in the Frontend?
Re: Adjust text PDF Print Button
Posted: 29 Mar 2024, 14:42
by Jan
Re: Adjust text PDF Print Button
Posted: 13 Nov 2024, 20:11
by kevinmorris0
To change the text of the PDF Print Button, you can use JavaScript or CSS. If the button has a unique ID or class, you could use JavaScript to target it and set a new innerHTML value, like this:
javascript
Copy code
document.getElementById('pdfPrintButton').innerText = 'New Button Text';
Alternatively, if you're using a plugin, check its settings to see if it provides an option to customize button text. This method should give you control over the text displayed on the button in the frontend.