PDA

View Full Version : Change title*


ericpsf
08-08-2008, 08:39 PM
Hi Brian,

May I enquire where to change the "title*" to something like "Company" name in the submit entry?
And add a descriptive sentence possibly.

Thank you.

Brian
08-11-2008, 02:59 PM
That would be located in the 'ADV_DYNA_ADD_EDIT' template.

Our Sponsors
 

ericpsf
08-11-2008, 07:55 PM
Hi Brian,

I use the find function and found that there are plenty of "title" wordings inside :eek:

Do I have to change every single of it to "company" for example??

Thank you.

PhilMcKrackon
08-11-2008, 09:30 PM
Just add this to your 'vba_dyna_newentry_addentry' plugin hook location.


$vbphrase[title] = 'Company';


For multiple instances...


if (ADV_DYNA_PREFIX == 'DYNAMICS PREFIX HERE')
{
$vbphrase[title] = 'Company';
}

Our Sponsors
 

ericpsf
08-12-2008, 12:04 AM
Hi PhilMcKrackon,

Thank you for the tips!:)