Hi Glen Rowell,
can you please elaborate issues that’s you face. so we will provide best support.
Thanks
Thread Starter
a4jp
(@a4jpcom)
I can see the debug window in the backend (the black one) but it has both a vertical and horizontal slider. Usually in chrome you can stretch out the boxes and make them bugger but this has been disabled in your plugin for some reason.
This link is just to show how the text boxes can be resized.
https://chrome.google.com/webstore/detail/textbox-tamer/eceidabbdbbeclpobkmooecgilbnekln
Hi Glen Rowell,
This chrome extension will not work with debug plugin log UI. due to Debug log manage in <pre> html tag and this extension only re-size textarea.
To re-size
tag flow following steps
- Please login to your website FTP
- Go to wp-content\plugins\debug/admin/debuglog.php
- change css from #debug-log
- OR
- change following line
echo '<pre id="debug-log">'.htmlentities($content).'</pre>'; to echo '<textarea id="debug-log">'.htmlentities($content).'</textarea>';
hope you will resolved this issue at your end.
Thanks