Implement Branding

Post here if you have some suggestions or you want to request a new feature.
Post Reply
DomDis
Posts: 33
Joined: Sat Mar 18, 2023 7:44 pm

Implement Branding

Post by DomDis »

I see you already allow us to use our own logo.

I would like you to expand this so I can use my own fav-icon

I would also like to be able to specify what link and or image to be used in web links or any other email correspondence from WingFTP

example

Code: Select all

To use our logo in weblinks instead of WingFTP on the email notifications change the file  wftpserver/webclient//weblink_update.html", line 89


cp /wftpserver/webclient/downloadfolder.html /wftpserver/webclient/downloadfolder.html.ORIGINAL
vi  /wftpserver/webclient/downloadfolder.html 
change all  <a href="https://www.wftpserver.com/" target="_blank"><img src="images/logo_s.png" border="0"></a>
to            <a href='https://MyFTP.MyDomain.com/' target='_blank'><img src='https://MyFTP.MyDomain.com/images/logo_s.png' border='0'></a>

cp weblink_update.html weblink_update.html.ORIGINAL.
vi /wftpserver/webclient/weblink_update.html
chnage  <a href='https://www.wftpserver.com/' target='_blank'><img src='https://www.wftpserver.com/images/logo_s.png' border='0'></a> 
to            <a href='https://MyFTP.MyDomain.com/' target='_blank'><img src='https://MyFTP.MyDomain.com/images/logo_s.png' border='0'></a>

cp /wftpserver/webclient/uplink_update.html /wftpserver/webclient/uplink_update.html.ORIGINAL
vi /wftpserver/webclient/uplink_update.html
change all  <a href="https://www.wftpserver.com/" target="_blank"><img src="images/logo_s.png" border="0"></a>
to            <a href='https://MyFTP.MyDomain.com/' target='_blank'><img src='https://MyFTP.MyDomain.com/images/logo_s.png' border='0'></a>

cp /wftpserver/webclient/uploadlink.html  /wftpserver/webclient/uploadlink.htmi.ORIGINAL
vi /wftpserver/webclient/uploadlink.html
change all  <a href="https://www.wftpserver.com/" target="_blank"><img src="images/logo_s.png" border="0"></a>
to            <a href='https://MyFTP.MyDomain.com/' target='_blank'><img src='https://MyFTP.MyDomain.com/images/logo_s.png' border='0'></a>
FTP
Site Admin
Posts: 2080
Joined: Tue Sep 29, 2009 6:09 am

Re: Implement Branding

Post by FTP »

You can add your own logo under "Server > Settings > General Settings > Customized Logo", and html file modification is not recommended, please do it by yourself.
DomDis
Posts: 33
Joined: Sat Mar 18, 2023 7:44 pm

Re: Implement Branding

Post by DomDis »

FTP wrote: Fri Jun 16, 2023 3:40 pm You can add your own logo under "Server > Settings > General Settings > Customized Logo", and html file modification is not recommended, please do it by yourself.
Yes I can add my own logo BUT NOT my own favicon

Yes I can add my own logo BUT you don't use it when sending emails, I had encountered this last time I was testing weblnks. I'm not sure where else you may not use mu own logo.

Rest assured, tech support suggested I change those HTML file. Not sure if it was obvious but I also want to be able to define a URL link that that will be used on the logo image files.

Store Logo, favicon on disk add the URL to the database then do a get and use it in the HTML
FTP
Site Admin
Posts: 2080
Joined: Tue Sep 29, 2009 6:09 am

Re: Implement Branding

Post by FTP »

Favicon as well as many other parts can't be customized. If you really want, please modify the html files by yourself, though it is not recommended.
Post Reply