PDA

View Full Version : Copyright Text Input Box Size


Falcon Capt
05-31-2014, 06:49 PM
Currently the Copyright Text input box in the AdminCP (Settings > Options > Site Name / URL / Contact Details) is a single line that is only about 40 characters long (visible), is there an easy way to make it large and multi-row (Like the "Contact Us" input area slightly above the Copyright Input area) to easily display longer Copyright inputs?

kh99
06-01-2014, 06:22 PM
You could execute the following sql:
UPDATE setting SET optioncode='textarea' WHERE varname='copyrighttext'

or make the change in phpMyAdmin.

As usual, be very careful doing this since an error could cause problems with your forum operation.

Edit: oh, I probably should have also mentioned that the "right" (and possibly easier) way to do this is to put your site in debug mode, then use the "Edit" link that will appear in the admincp next to the copyright text option, and change the "Option Code" field to textarea. But I thought it might be easier to do a query than to turn on debug mode just for this one change.

Falcon Capt
06-02-2014, 09:05 PM
You could execute the following sql:
UPDATE setting SET optioncode='textarea' WHERE varname='copyrighttext'

or make the change in phpMyAdmin.

As usual, be very careful doing this since an error could cause problems with your forum operation.

Edit: oh, I probably should have also mentioned that the "right" (and possibly easier) way to do this is to put your site in debug mode, then use the "Edit" link that will appear in the admincp next to the copyright text option, and change the "Option Code" field to textarea. But I thought it might be easier to do a query than to turn on debug mode just for this one change.How do you turn on "Debug" Mode??? I have never seen this function (I am on 4.1.12).

kh99
06-02-2014, 09:13 PM
You can edit your comfig.php and set a variable. Here's an article that shows how, and also talks about some ways to enable it only for admins (because you don't really want to enable it for everyone, at least not for any longer than you need): https://vborg.vbsupport.ru/showthread.php?t=265999

Falcon Capt
06-02-2014, 09:13 PM
You can edit your comfig.php and set a variable. Here's an article that shows how, and also talks about some ways to enable it only for admins: https://vborg.vbsupport.ru/showthread.php?t=265999

Awesome, thank you!

--------------- Added 1401752207 at 1401752207 ---------------

It appears the non-"textarea" input boxes on that page are set to 266px in width, any way to increase that number?