The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums

    No post, new topic buttons

    avatar
    Guest
    Guest


    Solved No post, new topic buttons

    Post by Guest Sun 28 Jun - 13:59

    There's no sign of new topic button when I open a forum on my forum. o.o
    Just added a new skin and changed the forum version to punbb and no button can be seen, although I added it @ pic management. Now no new topics can be opened.  
    Zen

    Spoiler:


    What did I do wrong? mwii
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: No post, new topic buttons

    Post by Ange Tuteur Wed 1 Jul - 9:37

    @Diana considering that I can't find it in the HTML, I think it might be missing from the template. blackeye

    Can you check to see if your viewforum_body template contains {U_POST_NEW_TOPIC} ? If you can't find it, then it's missing. In which case, you can provide me the template or I can give instructions for adding it.
    avatar
    Guest
    Guest


    Solved Re: No post, new topic buttons

    Post by Guest Wed 1 Jul - 21:43

    I think it's there. Shocked
    Spoiler:
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: No post, new topic buttons

    Post by Ange Tuteur Fri 3 Jul - 3:51

    It looks like one of the auth tags is preventing it from showing. Try replacing the template with the following :
    Code:
    {BOARD_INDEX}

    <div class="main paged">
      <div class="paged-head clearfix">
          <p class="paging">{PAGINATION}</p>
          <!-- BEGIN switch_user_authpost -->
          <p class="posting"><a href="{U_POST_NEW_TOPIC}" class="button flat blue">Új hosszászólás</a>&nbsp;</p>
          <!-- END switch_user_authpost -->
      </div>

      {TOPICS_LIST_BOX}

      <div class="paged-foot clearfix">
          <p class="paging">{PAGINATION}</p>
          <!-- BEGIN switch_user_authpost -->
          <p class="posting"><a href="{U_POST_NEW_TOPIC}" class="button flat blue">Új hosszászólás</a>&nbsp;</p>
          <!-- END switch_user_authpost -->
      </div>

    </div>
    <div class="pun-crumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
      <p class="crumbs"><a href="{U_INDEX}" itemprop="url"><span itemprop="title">{L_INDEX}</span></a><strong>{NAV_CAT_DESC}</strong></p>
    </div>

    <div id="pun-info" class="main">
      <div class="main-content">
          <div id="stats">
            <p class="right">{L_MODERATOR} : {MODERATORS}</p>
            {LOGGED_IN_USER_LIST}
          </div>
          <div id="onlinelist">
            <p>{L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}</p>
          </div>
      </div>
    </div>
    <!-- BEGIN switch_user_logged_in -->
    <div id="pun-visit" class="clearfix">
      <ul>
          <li>
                <script type="text/javascript">//<![CDATA[
                var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
                var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
                var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
                var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
                var url_tellfriend = '{U_TELLFRIEND_JS_PLUS_MENU}';
                insert_plus_menu_new('f{FORUM_ID}&amp;f={FORUM_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
            //]]>
            </script>
          </li>
            <li><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></li>
            <li><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></li>
            <li><a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a></li>
      </ul>
      <p>{LOGGED_AS}. {LAST_VISIT_DATE}</p>
    </div>
    <!-- END switch_user_logged_in -->
    <!-- BEGIN switch_user_logged_out -->
    <div id="pun-visit">
      <p>{L_NOT_CONNECTED} {L_LOGIN_REGISTER}</p>
    </div>
    <!-- END switch_user_logged_out -->


    <!-- BEGIN switch_legend -->
    <ul class="pun-legend">
      <li><img src="{FOLDER_NEW_IMG}" alt="{L_FOLDER_NEW_IMG}" />&nbsp;{L_FOLDER_NEW_IMG}</li>
      <li><img src="{FOLDER_HOT_NEW_IMG}" alt="{L_FOLDER_HOT_NEW_IMG}" />&nbsp;{L_FOLDER_HOT_NEW_IMG}</li>
      <li><img src="{FOLDER_LOCKED_NEW_IMG}" alt="{L_FOLDER_LOCKED_NEW_IMG}" />&nbsp;{L_FOLDER_LOCKED_NEW_IMG}</li>
    </ul>
    <ul class="pun-legend">
      <li><img src="{FOLDER_IMG}" alt="{L_FOLDER_IMG}" />&nbsp;{L_FOLDER_IMG}</li>
      <li><img src="{FOLDER_HOT_IMG}" alt="{L_FOLDER_HOT_IMG}" />&nbsp;{L_FOLDER_HOT_IMG}</li>
      <li><img src="{FOLDER_LOCKED_IMG}" alt="{L_FOLDER_LOCKED_IMG}" />&nbsp;{L_FOLDER_LOCKED_IMG}</li>
    </ul>
    <ul class="pun-legend">
      <li><img src="{FOLDER_ANNOUNCE_IMG}" alt="{L_FOLDER_ANNOUNCE_IMG}" />&nbsp;{L_FOLDER_ANNOUNCE_IMG}</li>
      <li><img src="{FOLDER_STICKY_IMG}" alt="{L_FOLDER_STICKY_IMG}" />&nbsp;{L_FOLDER_STICKY_IMG}</li>
      <li><img src="{FOLDER_GLOBAL_ANNOUNCE_IMG}" alt="{L_FOLDER_GLOBAL_ANNOUNCE_IMG}" />&nbsp;{L_FOLDER_GLOBAL_ANNOUNCE_IMG}</li>
    </ul>
    <!-- END switch_legend -->

    That should fix it. thumleft
    avatar
    Guest
    Guest


    Solved Re: No post, new topic buttons

    Post by Guest Fri 3 Jul - 10:52

    Wow, it works! THANK YOU!! ùù
    Solved, thanks for the help. Mr. Green
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: No post, new topic buttons

    Post by Ange Tuteur Fri 3 Jul - 13:18

    No problem ^^

    Topic archived

    Have a nice day. Smile

      Current date/time is Wed 13 Nov - 18:42