Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
Silentwarrior

threads wichtig machen

Recommended Posts

ich nochmal,

wenn ich einen thread eichtig machen fügt das ipb in der topicübersicht 2 neue zeilen ein .. in denen steht "Themen von besonderer Bedeutung"

ich möchte beide zeilen entfernen, was muss ich wo machen??

danke!

Share this post


Link to post

ich möchte beide zeilen entfernen, was muss ich wo machen??

Skin bearbeiten. :lol:

Datei skin_forums.php und da sind es die beiden Funktionen.

function render_pinned_start() {
global $ibforums;
return <<<EOF
   <!-- START PINNED -->
   <tr>
     <td align='center' class='darkrow1'>&nbsp;</td>
     <td align='center' class='darkrow1'>&nbsp;</td>
  <td align='left' class='darkrow1' colspan='5' style='padding:6px'><b>{$ibforums->lang['pinned_start']}</b></td>
   </tr>
EOF;
}

function render_pinned_end() {
global $ibforums;
return <<<EOF
   <!-- END PINNED -->
   <tr>
     <td align='center' class='darkrow1'>&nbsp;</td>
     <td align='center' class='darkrow1'>&nbsp;</td>
  <td align='left' class='darkrow1' colspan='5' style='padding:6px'><b>{$ibforums->lang['regular_topics']}</b></td>
   </tr>
EOF;
}

Share this post


Link to post

Schon mal im ACP probiert das einzustellen?

ACP => System Settings => Topics, Posts & Polls => Topic prefix for PINNED topics

Dort dann mal folgendes eingeben und schauen, ob es klappt.

<span style='color:red'>Wichtig:</span>

Share this post


Link to post

Doch es geht schon, wenn man normale Anführungszeichen nimmt, da die anderen herausgefiltert werden. ;)

<span style="color:red">Wichtig:</span>

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×