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.

Hide new topic button inside a topic...

3 posters

Go down

Solved Hide new topic button inside a topic...

Post by iarmagedon Sun 9 Aug - 19:33

As title says is it possible to hide the new topic button inside an already created topic? I only want to keep the reply button and quote.
Many members of my forum believe that they can use the new button to make a reply to the topic and the result is to have many new topics than replies.
Can you help me with a css code perhaps???
Thank you in advance.
avatar
iarmagedon
New Member

Posts : 10
Reputation : 1
Language : Greek

Back to top Go down

Solved Re: Hide new topic button inside a topic...

Post by SLGray Sun 9 Aug - 20:20

You can replace the buttons with ones that members can understand better.


Hide new topic button inside a topic... Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Hide new topic button inside a topic...

Post by iarmagedon Mon 10 Aug - 8:24

There is no possibility to remove it with a css code?
avatar
iarmagedon
New Member

Posts : 10
Reputation : 1
Language : Greek

Back to top Go down

Solved Re: Hide new topic button inside a topic...

Post by Ange Tuteur Mon 10 Aug - 12:00

iarmagedon wrote:There is no possibility to remove it with a css code?
Provide the URL of the forum and then we can see. Smile
Ange Tuteur
Ange Tuteur
Forumaster

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

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: Hide new topic button inside a topic...

Post by iarmagedon Mon 10 Aug - 13:59

Sure here it is: hellasd3.4umer.com language is Greek.


Last edited by iarmagedon on Mon 10 Aug - 22:53; edited 1 time in total
avatar
iarmagedon
New Member

Posts : 10
Reputation : 1
Language : Greek

Back to top Go down

Solved Re: Hide new topic button inside a topic...

Post by Ange Tuteur Mon 10 Aug - 15:14

Thanks, for reference your forum version is phpbb2. Smile

To hide the new topic buttons in the topics, go to Administration Panel > Modules > JavaScript codes management

Make sure JS codes management is enabled ( the Yes / No radio buttons ), then create a new script with the following settings.

Placement : In the topics
Code:
$(function() {
  var sujet_a = document.getElementById('one'),
      sujet_b = document.getElementById('Newtopic');
 
  if (sujet_a) sujet_a.parentNode.style.display = 'none';
  if (sujet_b) sujet_b.parentNode.style.display = 'none';
});


If you don't want this method you can also remove them via the templates. However, you must be logged into the foundation account ( user 1 ) for this method.
Display > Templates > General > viewtopic_body

Find and remove :
Code:
<a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}one" alt="{L_POST_NEW_TOPIC}" align="middle" border="0" /></a>&nbsp;&nbsp;&nbsp;

Find and remove :
Code:
<a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}Newtopic" alt="{L_POST_NEW_TOPIC}" align="middle" border="0" /></a>&nbsp;&nbsp;&nbsp;

Save and publish the template. Add
Ange Tuteur
Ange Tuteur
Forumaster

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

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: Hide new topic button inside a topic...

Post by iarmagedon Mon 10 Aug - 22:19

YOU are the man ... worked perfect ...
avatar
iarmagedon
New Member

Posts : 10
Reputation : 1
Language : Greek

Back to top Go down

Solved Re: Hide new topic button inside a topic...

Post by SLGray Tue 11 Aug - 0:00

Topic solved and archived


Hide new topic button inside a topic... Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum