Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Editing Admin Manager

Quote Reply
Editing Admin Manager
I would like to edit the add field of the Admin Manager. Where is the add html for the Admin Manager. I would like to change the Email to include my email.
Quote Reply
Re: Editing Admin Manager In reply to
In Links.def, there is:

Code:
Description => [5, 'alpha', '40x3', 500, 0, '', ''],
'Contact Name' => [6, 'alpha', 40, 75, 1, '', ''],
'Contact Email' => [7, 'alpha', 40, 75, 1, '', '.+@.+\..+'],
Hits => [8, 'numer', 10, 10, 1, '0', '\d+'],

Replace:
Code:
'Contact Email' => [7, 'alpha', 40, 75, 1, '', '.+@.+\..+'],

With:
Code:
'Contact Email' => [7, 'alpha', 40, 75, 1, 'your@email.address', '.+@.+\..+'],

where your@email.address is your email address

------------------
Quote Reply
Re: Editing Admin Manager In reply to
Thanks for the fast reply. The answer worked here.
Tomh
Quote Reply
Re: Editing Admin Manager In reply to
Glad to know some of my code hacking worked.

------------------
Quote Reply
Re: Editing Admin Manager In reply to
Hi Tomh, Jimz,

if you use this method, start your add.cgi an check out the email field. It is filled with your@email.address.
Quote Reply
Re: Editing Admin Manager In reply to
It shoulden't. The add template has the forms hard-coded in. The admin script on the other hand, dynamically builds the forms. Have you tried it?

------------------
Quote Reply
Re: Editing Admin Manager In reply to
Hi, The add.cgi, at least the add form, for
user link contributions does not have my Email address after editing the links.def. My Email address only shows up in the Links Manager Administration add form. So far it works fine. Thanks for your time. Tomh