Script URL: Linkman
Version of script: 2.0.2
Hosting company: -
URL of phpinfo.php: -
URL of session_test.php: -
What terms did you try when SEARCHING for a solution: Yes
Write your message below: Where do I change the Link title on the links.php page? Also where are we suppose to add meta tags? And where do I add a logo to the links.php page?
I purchased the licens key. Thanks for a great product!
Linkman 2.0.2 Page title and Meta tags
Re: Linkman 2.0.2 Page title and Meta tags
It's in the language/en-US/public.php file. I recommend opening it with a powerful text editor that will save the file in the correct encoding, for example Notepad++, then find the line that contains 't_links'
Both can go in templates/default/layout.tpl.phpmattvegas wrote: Sat Jun 30, 2018 7:35 pmAlso where are we suppose to add meta tags? And where do I add a logo to the links.php page?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
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


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
Re: Linkman 2.0.2 Page title and Meta tags
I'm using dreamweaver.
Thank you for fast reply and a great site. Keep up the good work. Excellent products.
Thank you for fast reply and a great site. Keep up the good work. Excellent products.
Re: Linkman 2.0.2 Page title and Meta tags
In LinkMan 2.0.2:
Page title – Open links.php and look near the top <head> section. You’ll see a <title> tag (usually using <?php echo $SETTINGS['title']; ?>). You can edit it directly, or change the value in config.php ($SETTINGS['title']).
Meta tags – Add them manually inside the <head> section of links.php (just below <title>). For example:
<meta name="description" content="Your description here">
<meta name="keywords" content="links, directory, etc">
Logo – Insert your logo image inside the <body> section of links.php where you want it displayed, e.g.:
<img src="images/logo.png" alt="My Site Logo">
That way, your customizations stay with the template file.
Page title – Open links.php and look near the top <head> section. You’ll see a <title> tag (usually using <?php echo $SETTINGS['title']; ?>). You can edit it directly, or change the value in config.php ($SETTINGS['title']).
Meta tags – Add them manually inside the <head> section of links.php (just below <title>). For example:
<meta name="description" content="Your description here">
<meta name="keywords" content="links, directory, etc">
Logo – Insert your logo image inside the <body> section of links.php where you want it displayed, e.g.:
<img src="images/logo.png" alt="My Site Logo">
That way, your customizations stay with the template file.