Switch to full style
Support for phpbb3 & codemiles styles
Post a reply

remove page title

Sun Nov 30, 2008 1:36 am

Hey everyone . if you want to remove the part of title that is not related to topic title , for example L codemiles.com view topic ... topic title ..
here how to do this .


Open: viewtopic.php
Find:
Code:
<?php     
page_header
($user->lang['VIEW_TOPIC'] . ' - ' . $topic_data['topic_title']);
  


Replace with:
Code:
<?php
page_header
($topic_data['topic_title']);


Open: viewforum.php
Code:
<?php page_header($user->lang['VIEW_FORUM'] . ' - ' . $forum_data['forum_name']);


Replace with:
Code:
<?php
page_header
($forum_data['forum_name']);




Post a reply
  Related Posts  to : remove page title
 How to change this title • ?     -  
 get url, title and url sent parameters with JQuery     -  
 Image Scroller-scrollbar-LINE_UP,LINE_DOWN-PAGE-UP-PAGE-DOWN     -  
 Remove Indentation     -  
 Remove all the vowels from a string     -  
 Remove border of the linked image     -  
 Remove a portion of the array and replace it with something     -  
 Add and Remove CSS classes to html tag dynamically     -  
 Remove ordered list numbers     -  
 Remove default window icon from JFrame     -