- Joined
- Dec 12, 2017
- Messages
- 13
- Reaction score
- 2
How do we go about submitting a change request on the official templates? I have made changes and using a custom template, but I would prefer to use the official template so that I can resume with automatic updates when they arrive. But for our hotel, I can't because of the below issue.
For the "fanvil_hotel.ph.xml" template (Fanvil H2s/H3/H5 phones) (But this request is specifically for the "H5" phone that has the LCD screen), under the BLF Key section there are 6 BLF keys (blf1, blf2, etc.) that can be programed. The standard Template is set to ALWAYS display the BLF "images" over the buttons on the LCD screen (reception, manager, SOS, etc. pictures). Even if the BLF is not programed. They just need to change a "1" to a "0", so that the image disappears if the BLF key is not programmed on that specific extension:
CURRENT (for simplicity, just showing "blf1"):
Resulting Image of Phone (Notice BLF6 is not programed, but still has the "Manager" image displayed):

REQUESTED CHANGE (but for ALL the BLF sections, not just "blf1" as I am depicting here). See change on line 10:
Resulting Image. Notice the "Manager" icon disappeared, because BLF6 was not programmed:

For the "fanvil_hotel.ph.xml" template (Fanvil H2s/H3/H5 phones) (But this request is specifically for the "H5" phone that has the LCD screen), under the BLF Key section there are 6 BLF keys (blf1, blf2, etc.) that can be programed. The standard Template is set to ALWAYS display the BLF "images" over the buttons on the LCD screen (reception, manager, SOS, etc. pictures). Even if the BLF is not programed. They just need to change a "1" to a "0", so that the image disappears if the BLF key is not programmed on that specific extension:
CURRENT (for simplicity, just showing "blf1"):
Code:
{IF ua=Fanvil H3,Fanvil H5}
<Function_Key>
<Function_Key_Entry>
<ID>Fkey1</ID>
{IF blf1}
<Type>1</Type>
<Value>%%blf1%%@1/f%%blf1%%</Value>
<Title>%%blffirstname1%% %%blflastname1%%</Title>
{ELSE}
<Type>1</Type>
<Value></Value>
<Title></Title>
{ENDIF}
</Function_Key_Entry>
<Function_Key_Entry>
Resulting Image of Phone (Notice BLF6 is not programed, but still has the "Manager" image displayed):

REQUESTED CHANGE (but for ALL the BLF sections, not just "blf1" as I am depicting here). See change on line 10:
Code:
{IF ua=Fanvil H3,Fanvil H5}
<Function_Key>
<Function_Key_Entry>
<ID>Fkey1</ID>
{IF blf1}
<Type>1</Type>
<Value>%%blf1%%@1/f%%blf1%%</Value>
<Title>%%blffirstname1%% %%blflastname1%%</Title>
{ELSE}
<Type>0</Type>
<Value></Value>
<Title></Title>
{ENDIF}
</Function_Key_Entry>
<Function_Key_Entry>
Resulting Image. Notice the "Manager" icon disappeared, because BLF6 was not programmed:
