help : new options Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

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.
3 posters

    help : new options

    avatar
    zibeno7
    Forumember


    Posts : 53
    Reputation : 2
    Language : polski

    In progress help : new options

    Post by zibeno7 January 9th 2015, 7:47 pm

    Hello ... I have a question ...

    whether it is possible to add two new options on the main forum page? alongside such options as: View posts since last visit View your posts • View unanswered posts • which are located in the upper part of the forum, I need to add two new: New Post and New Threads.

    if there is such a possibility, he asked me about the answer, because I really need such an option to ... thank you.
    Ange Tuteur
    Ange Tuteur
    Forumaster


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

    In progress Re: help : new options

    Post by Ange Tuteur January 10th 2015, 10:15 am

    Hello @zibeno7,

    What is the function of these new options that you want to add. From your explanation I can only gather that you want these texts next to the current options :

    Code:
    <a href="/?">New Post</a> &bull; <a href="/?">New threads</a>

    It's possible to add new links by editing the templates.
    avatar
    zibeno7
    Forumember


    Posts : 53
    Reputation : 2
    Language : polski

    In progress Re: help : new options

    Post by zibeno7 January 10th 2015, 7:29 pm

    hello ...

    next to these options, which I mentioned in the picture:



    help : new options 6d2325380379663

    I would like to add two new ones: ◙ New Topic, ◙ New Post ...

    is it possible for this template któy I currently have ...?
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51552
    Reputation : 3523
    Language : English
    Location : United States

    In progress Re: help : new options

    Post by SLGray January 11th 2015, 7:50 am

    Are you wanting these two options to list new posts and new topics?



    help : new options Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    avatar
    zibeno7
    Forumember


    Posts : 53
    Reputation : 2
    Language : polski

    In progress Re: help : new options

    Post by zibeno7 January 11th 2015, 7:16 pm

    yes , it will not search the entire board Separately in search of new posts (topics), only so That When You click on the options: New Topics opened to a page with new themes ...
    Ange Tuteur
    Ange Tuteur
    Forumaster


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

    In progress Re: help : new options

    Post by Ange Tuteur January 12th 2015, 12:38 pm

    Go to Display > Templates > General > index_box Edit

    Find :
    Code:
       <!-- END switch_user_logged_in -->
       <li><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a></li>
       <!-- BEGIN switch_user_logged_in -->

    and place your new links after it. For example :
    Code:
       <!-- END switch_user_logged_in -->
       <li><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a></li>
       <!-- BEGIN switch_user_logged_in -->
            <li><a href="/myurl">New posts</a></li>

    <li><a href="/myurl">New posts</a></li> is our new link /myurl is where the link will take the user.

    When finished editing, save and publish the template. Add