Help me with an issue please!!!

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Help me with an issue please!!!

Arzulu Studios
Normaly to create a topic, one must go into one of the categories first, BUT, if they switch to topic view, they can make topics in the categories list!!! I want the topics view button to go away!

Can I make it disappear somehow? I need it gone. Is there like some HTML I can look through and find the link?
Reply | Threaded
Open this post in threaded view
|

Re: Help me with an issue please!!!

Pedro
Search for the macro "view_mixed_html", I'm not sure if your app type uses this one but it will be easy to know.
Edit the macro and remove the .topics_action_link line. It will be like this:
<override_macro name="view_mixed_html">
    <n.app_html>
        <head>
            <n.app_title/>
            <n.mixed_table_stylesheet/>
        </head>
        <body>
            <n.new_topic_action_link/>
            
            <n.people_action_link/>
            <n.options_action_menu/>

            <n.mixed_table.mixed_table_columns />
            <n.forum_footer/>
        </body>
    </n.app_html>
</override_macro>
My test forum.
Reply | Threaded
Open this post in threaded view
|

Re: Help me with an issue please!!!

Arzulu Studios
How exactly do I get there?

Oh wait, I got it.

THANKS!