Topic: Post new topic
How link "Post new topic" change with image:
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → Post new topic
Find, ~line 64 in viewforum.php:
$post_link = "\t\t".'<p class="postlink conr"><a href="post.php?fid='.$id.'">'.$lang_forum['Post topic'].'</a></p>'."\n";
Replace it with:
$post_link = "\t\t".'<p class="postlink conr"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_topic.gif" alt="'.$lang_forum['Post topic'].'" /></p>'."\n";
would this work for you?
ooo he beat me with a better solution!
Thanks elbekko
edit// and "Post reply" ? Where line change in viewforum.php
sorry for my english
Change lines ~115 and ~124 in viewtopic.php If you have some basic HTML knowlegde, I suppose you can do it
search for
$post_link = '<a href="post.php?tid='.$id.'">'.$lang_topic['Post reply'].'</a>';
replace with
$post_link = "\t\t".'<p class="postlink conr"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_reply.gif" alt="'.$lang_topic['Post reply'].'" /></p>'."\n";
i think
then just line 124 like elbekko said
Something like that I suppose
Oh, and I just see an error in the first one... you can't click on it So I advise to put the link back...
viewforum.php:
$post_link = "\t\t".'<p class="postlink conr"><a href="post.php?fid='.$id.'"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/new_topic.gif" alt="'.$lang_forum['Post topic'].'" /></a></p>'."\n";
viewtopic.php: (both lines)
$post_link = '<a href="post.php?tid='.$id.'"><img src="http://www.ginkworld.sakamuyo.net/Themes/gink/images/reply.gif" alt="'.$lang_topic['Post reply'].'" /></a>';
PunBB Forums → PunBB 1.2 troubleshooting → Post new topic
Powered by PunBB, supported by Informer Technologies, Inc.