modify personalization

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
nalzate
Posts: 22
Joined: 05 Dec 2023, 20:47
Location: Colombia

modify personalization

Post by nalzate »

Hello, in which file can these types of customizations be modified?

I want to modify the years that appear in the select.

This is the image: https://ibb.co/RhM8sR2
atrol
Site Admin
Posts: 8378
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: modify personalization

Post by atrol »

Copy to config_inc.php and adjust to your needs

Code: Select all

/**
 * Number of years in the past that custom date fields will display in
 * drop down boxes.
 * @global integer $g_backward_year_count
 */
$g_backward_year_count = 4;

/**
 * Number of years in the future that custom date fields will display in
 * drop down boxes.
 * @global integer $g_forward_year_count
 */
$g_forward_year_count = 4;
Please use Search before posting and read the Manual
Post Reply