Welcome text

Everything related to Hesk - helpdesk software

Moderator: mkoch227

Post Reply
mvraven
Posts: 32
Joined: Mon Nov 30, 2009 3:34 pm

Welcome text

Post by mvraven »

/*************************************
Title:
Version:
Author:
Demo:
Download:
Website:

Short description:


*************************************/

I would like to add some welcome information for the visitor at the index page above the 2 options "send" and "watch".
Where do i add that?
Klemen
Site Admin
Posts: 10136
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Open index.php file in a plain text editor and find lines 685-688:

Code: Select all

<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="50%">
<!-- START SUBMIT -->
(just search for <!-- START SUBMIT --> and you will find the correct <table ...> tag) then paste the HTML code you wish just above that, for example:

Code: Select all

<p>Welcome to XY</p>
.

The modified code would look like

Code: Select all

<p>Welcome to XY</p>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="50%">
<!-- START SUBMIT -->
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
mvraven
Posts: 32
Joined: Mon Nov 30, 2009 3:34 pm

Thnx!

Post by mvraven »

Thnx for youre help. It works perfect!

Thnx!
Post Reply