Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post 
Post Help With Black Pearl 
 
hi i need help removing 1 and to hide 2 if user is not loged in pls help.
 
 



 
igorSend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Help With Black Pearl 
 
It's not a template problem and has nothing to do with Black Pearl. ? It's permission settings with phpBB3 forum administration.

Your question belongs at the phpBB3 support forums, where you will probably find the answers.
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: Help With Black Pearl 
 
Lopalong wrote: [View Post]
It's not a template problem and has nothing to do with Black Pearl. ? It's permission settings with phpBB3 forum administration.

Your question belongs at the phpBB3 support forums, where you will probably find the answers.


aaa... its in the black pearl's code mate not in phpbb3 (i know what i am talking about because i tested but cant remove it)

il try on phpbb forums to tks any way
 



 
igorSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Help With Black Pearl 
 
So you want to remove the column permanently, and hide the gradient only when someone is not logged in?

Correct?  
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: Help With Black Pearl 
 
The blank column is for topic icons... as subSilver does.

The header I don't know why... can you provide a link?
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Help With Black Pearl 
 
yea i want to remove it permanently and that heder (2) i want to hide it if user is not loged in not just the gradient the whole column i hope u understand.

here i found a forum that has this modification:
 
 



 
igorSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Help With Black Pearl 
 
I guess they disabled topic icons...

To phisically remove that column you have to edit viewforum_body.html:

FIND
Code: [Download] [Hide] [Select]
    <tr>
        <!-- IF S_TOPIC_ICONS -->
            <th colspan="3">&nbsp;{L_TOPICS}&nbsp;</th>
        <!-- ELSE -->
            <th colspan="2">&nbsp;{L_TOPICS}&nbsp;</th>
        <!-- ENDIF -->
        <th>&nbsp;{L_AUTHOR}&nbsp;</th>
        <th>&nbsp;{L_REPLIES}&nbsp;</th>
        <th>&nbsp;{L_VIEWS}&nbsp;</th>
        <th>&nbsp;{L_LAST_POST}&nbsp;</th>
    </tr>

    <!-- BEGIN topicrow -->

        <tr>
            <td class="row1" width="25" align="center">{topicrow.TOPIC_FOLDER_IMG}</td>
            <!-- IF S_TOPIC_ICONS -->
                <td class="row1" width="25" align="center"><!-- IF topicrow.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}" width="{topicrow.TOPIC_ICON_IMG_WIDTH}" height="{topicrow.TOPIC_ICON_IMG_HEIGHT}" alt="" title="" /><!-- ENDIF --></td>
            <!-- ENDIF -->
            <td class="row1">
                <!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a><!-- ENDIF -->
                {topicrow.ATTACH_ICON_IMG} <!-- IF topicrow.S_HAS_POLL or topicrow.S_TOPIC_MOVED --><b>{topicrow.TOPIC_TYPE}</b> <!-- ENDIF --><a title="{L_POSTED}: {topicrow.FIRST_POST_TIME}" href="{topicrow.U_VIEW_TOPIC}"class="topictitle">{topicrow.TOPIC_TITLE}</a>
                <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
                    <a href="{topicrow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a>&nbsp;
                <!-- ENDIF -->
                <!-- IF topicrow.S_TOPIC_REPORTED -->
                    <a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a>&nbsp;
                <!-- ENDIF -->
                <!-- IF topicrow.PAGINATION -->
                    <p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
                <!-- ENDIF -->
            </td>
            <td class="row2" width="130" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
            <td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
            <td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
            <td class="row1" width="140" align="center">
                <p class="topicdetails" style="white-space: nowrap;">{topicrow.LAST_POST_TIME}</p>
                <p class="topicdetails">{topicrow.LAST_POST_AUTHOR_FULL}
                    <a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a>
                </p>
            </td>
        </tr>

    <!-- BEGINELSE -->

        <tr>
            <!-- IF S_TOPIC_ICONS -->
                <td class="row1" colspan="7" height="30" align="center" valign="middle"><span class="gen"><!-- IF not S_SORT_DAYS -->{L_NO_TOPICS}<!-- ELSE -->{L_NO_TOPICS_TIME_FRAME}<!-- ENDIF --></span></td>
            <!-- ELSE -->
                <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen"><!-- IF not S_SORT_DAYS -->{L_NO_TOPICS}<!-- ELSE -->{L_NO_TOPICS_TIME_FRAME}<!-- ENDIF --></span></td>
            <!-- ENDIF -->
        </tr>
    <!-- END topicrow -->

    <tr><td class="cat-bottom" colspan="<!-- IF S_TOPIC_ICONS -->7<!-- ELSE -->6<!-- ENDIF -->">&nbsp;</td></tr>


REPLACE WITH

Code: [Download] [Hide] [Select]
    <tr>
            <th colspan="2">&nbsp;{L_TOPICS}&nbsp;</th>
        <th>&nbsp;{L_AUTHOR}&nbsp;</th>
        <th>&nbsp;{L_REPLIES}&nbsp;</th>
        <th>&nbsp;{L_VIEWS}&nbsp;</th>
        <th>&nbsp;{L_LAST_POST}&nbsp;</th>
    </tr>

    <!-- BEGIN topicrow -->

        <tr>
            <td class="row1" width="25" align="center">{topicrow.TOPIC_FOLDER_IMG}</td>
            <td class="row1">
                <!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a><!-- ENDIF -->
                {topicrow.ATTACH_ICON_IMG} <!-- IF topicrow.S_HAS_POLL or topicrow.S_TOPIC_MOVED --><b>{topicrow.TOPIC_TYPE}</b> <!-- ENDIF --><a title="{L_POSTED}: {topicrow.FIRST_POST_TIME}" href="{topicrow.U_VIEW_TOPIC}"class="topictitle">{topicrow.TOPIC_TITLE}</a>
                <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
                    <a href="{topicrow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a>&nbsp;
                <!-- ENDIF -->
                <!-- IF topicrow.S_TOPIC_REPORTED -->
                    <a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a>&nbsp;
                <!-- ENDIF -->
                <!-- IF topicrow.PAGINATION -->
                    <p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
                <!-- ENDIF -->
            </td>
            <td class="row2" width="130" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
            <td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
            <td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
            <td class="row1" width="140" align="center">
                <p class="topicdetails" style="white-space: nowrap;">{topicrow.LAST_POST_TIME}</p>
                <p class="topicdetails">{topicrow.LAST_POST_AUTHOR_FULL}
                    <a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a>
                </p>
            </td>
        </tr>

    <!-- BEGINELSE -->

        <tr>
                <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen"><!-- IF not S_SORT_DAYS -->{L_NO_TOPICS}<!-- ELSE -->{L_NO_TOPICS_TIME_FRAME}<!-- ENDIF --></span></td>
        </tr>
    <!-- END topicrow -->

    <tr><td class="cat-bottom" colspan="6">&nbsp;</td></tr>

 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Help With Black Pearl 
 
Mighty Gorgon wrote: [View Post]
I guess they disabled topic icons...

To phisically remove that column you have to edit viewforum_body.html:

FIND
Code: [Download] [Hide] [Select]
    <tr>
        <!-- IF S_TOPIC_ICONS -->
            <th colspan="3">&nbsp;{L_TOPICS}&nbsp;</th>
        <!-- ELSE -->
            <th colspan="2">&nbsp;{L_TOPICS}&nbsp;</th>
        <!-- ENDIF -->
        <th>&nbsp;{L_AUTHOR}&nbsp;</th>
        <th>&nbsp;{L_REPLIES}&nbsp;</th>
        <th>&nbsp;{L_VIEWS}&nbsp;</th>
        <th>&nbsp;{L_LAST_POST}&nbsp;</th>
    </tr>

    <!-- BEGIN topicrow -->

        <tr>
            <td class="row1" width="25" align="center">{topicrow.TOPIC_FOLDER_IMG}</td>
            <!-- IF S_TOPIC_ICONS -->
                <td class="row1" width="25" align="center"><!-- IF topicrow.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}" width="{topicrow.TOPIC_ICON_IMG_WIDTH}" height="{topicrow.TOPIC_ICON_IMG_HEIGHT}" alt="" title="" /><!-- ENDIF --></td>
            <!-- ENDIF -->
            <td class="row1">
                <!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a><!-- ENDIF -->
                {topicrow.ATTACH_ICON_IMG} <!-- IF topicrow.S_HAS_POLL or topicrow.S_TOPIC_MOVED --><b>{topicrow.TOPIC_TYPE}</b> <!-- ENDIF --><a title="{L_POSTED}: {topicrow.FIRST_POST_TIME}" href="{topicrow.U_VIEW_TOPIC}"class="topictitle">{topicrow.TOPIC_TITLE}</a>
                <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
                    <a href="{topicrow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a>&nbsp;
                <!-- ENDIF -->
                <!-- IF topicrow.S_TOPIC_REPORTED -->
                    <a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a>&nbsp;
                <!-- ENDIF -->
                <!-- IF topicrow.PAGINATION -->
                    <p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
                <!-- ENDIF -->
            </td>
            <td class="row2" width="130" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
            <td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
            <td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
            <td class="row1" width="140" align="center">
                <p class="topicdetails" style="white-space: nowrap;">{topicrow.LAST_POST_TIME}</p>
                <p class="topicdetails">{topicrow.LAST_POST_AUTHOR_FULL}
                    <a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a>
                </p>
            </td>
        </tr>

    <!-- BEGINELSE -->

        <tr>
            <!-- IF S_TOPIC_ICONS -->
                <td class="row1" colspan="7" height="30" align="center" valign="middle"><span class="gen"><!-- IF not S_SORT_DAYS -->{L_NO_TOPICS}<!-- ELSE -->{L_NO_TOPICS_TIME_FRAME}<!-- ENDIF --></span></td>
            <!-- ELSE -->
                <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen"><!-- IF not S_SORT_DAYS -->{L_NO_TOPICS}<!-- ELSE -->{L_NO_TOPICS_TIME_FRAME}<!-- ENDIF --></span></td>
            <!-- ENDIF -->
        </tr>
    <!-- END topicrow -->

    <tr><td class="cat-bottom" colspan="<!-- IF S_TOPIC_ICONS -->7<!-- ELSE -->6<!-- ENDIF -->">&nbsp;</td></tr>


REPLACE WITH

Code: [Download] [Hide] [Select]
    <tr>
            <th colspan="2">&nbsp;{L_TOPICS}&nbsp;</th>
        <th>&nbsp;{L_AUTHOR}&nbsp;</th>
        <th>&nbsp;{L_REPLIES}&nbsp;</th>
        <th>&nbsp;{L_VIEWS}&nbsp;</th>
        <th>&nbsp;{L_LAST_POST}&nbsp;</th>
    </tr>

    <!-- BEGIN topicrow -->

        <tr>
            <td class="row1" width="25" align="center">{topicrow.TOPIC_FOLDER_IMG}</td>
            <td class="row1">
                <!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a><!-- ENDIF -->
                {topicrow.ATTACH_ICON_IMG} <!-- IF topicrow.S_HAS_POLL or topicrow.S_TOPIC_MOVED --><b>{topicrow.TOPIC_TYPE}</b> <!-- ENDIF --><a title="{L_POSTED}: {topicrow.FIRST_POST_TIME}" href="{topicrow.U_VIEW_TOPIC}"class="topictitle">{topicrow.TOPIC_TITLE}</a>
                <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
                    <a href="{topicrow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a>&nbsp;
                <!-- ENDIF -->
                <!-- IF topicrow.S_TOPIC_REPORTED -->
                    <a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a>&nbsp;
                <!-- ENDIF -->
                <!-- IF topicrow.PAGINATION -->
                    <p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
                <!-- ENDIF -->
            </td>
            <td class="row2" width="130" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
            <td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
            <td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
            <td class="row1" width="140" align="center">
                <p class="topicdetails" style="white-space: nowrap;">{topicrow.LAST_POST_TIME}</p>
                <p class="topicdetails">{topicrow.LAST_POST_AUTHOR_FULL}
                    <a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a>
                </p>
            </td>
        </tr>

    <!-- BEGINELSE -->

        <tr>
                <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen"><!-- IF not S_SORT_DAYS -->{L_NO_TOPICS}<!-- ELSE -->{L_NO_TOPICS_TIME_FRAME}<!-- ENDIF --></span></td>
        </tr>
    <!-- END topicrow -->

    <tr><td class="cat-bottom" colspan="6">&nbsp;</td></tr>


tks alot    
 



 
igorSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Help With Black Pearl 
 
You are welcome.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron