Custom Fields

Custom fields are a feature in SudoWorkspace that allow you to add fields based on your needs. With this ability, SudoWorkspace can easily fit your company’s requirements.

Follow the steps to add a new custom field.

Click Save and check the field where you have added.

Custom fields in multiple languages

This is the main example for the German language; you can apply to same steps for other languages where you want the custom fields to be translated.

In application/language/german create a file custom_lang.php

Navigate to Setup->Custom fields . In the table, there is a SLUG column; copy this slug.

In the file custom_lang.php you created in the language folder, you are trying to translate the custom field, add the following code:

<?php

$lang['cf_translate_ADD_SLUG_HERE'] = 'My Custom Field in German';

<?php

$lang['cf_translate_ADD_SLUG_HERE'] = 'My Custom Field in German';

<?php

$lang['cf_translate_ADD_SLUG_HERE'] = 'My Custom Field in German';

Eq. if your custom field slug is named leads_regions , the lang key should look like this:

$lang['cf_translate_leads_regions'] = 'My Custom Field in German';
$lang['cf_translate_leads_regions'] = 'My Custom Field in German';
$lang['cf_translate_leads_regions'] = 'My Custom Field in German';