Do not show "quote" to guests

Post a reply


This question is a means of preventing automated form submissions by spambots.

BBCode is OFF
Smilies are OFF

Topic review
   

Expand view Topic review: Do not show "quote" to guests

Re: Do not show "quote" to guests

by Sylver » Sat Jun 14, 2025 2:29 pm

Deleted

Re: Do not show "quote" to guests

by Last Man Standing » Sun Jun 30, 2024 5:11 am

This is for subsilver2:

OPEN
root/styles/subsilver2/template/viewtopic_body.html

FIND

Code: Select all

<!-- IF postrow.U_QUOTE -->
REPLACE WITH

Code: Select all

<!-- IF postrow.U_QUOTE and S_USER_LOGGED_IN -->

Re: Do not show "quote" to guests

by Last Man Standing » Fri Apr 07, 2023 10:30 am

Well, I'm obsiously doing something wrong.
It breakes my code.

https://pastebin.com/vyKXRYGK

Re: Do not show "quote" to guests

by Dimetrodon » Wed Mar 15, 2023 8:55 pm

Last Man Standing » Tue Aug 30, 2022 3:05 am wrote:Can you please make it for subsilver2, also?
If it's not too much trouble.
It's going to be the same file name, just under the subsilver directory. Same changes.

Re: Do not show "quote" to guests

by Last Man Standing » Tue Aug 30, 2022 11:05 am

Can you please make it for subsilver2, also?
If it's not too much trouble.

Re: Do not show "quote" to guests

by Last Man Standing » Wed Aug 17, 2022 10:35 pm

Thank you, sir. It works! :D

Re: Do not show "quote" to guests

by _anix_ » Mon Aug 15, 2022 11:13 am

Yes.

styles/prosilver/viewtopic_body.html

Code: Select all

<!-- IF postrow.U_QUOTE --><li class="quote-icon"><a href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><span>{L_REPLY_WITH_QUOTE}</span></a></li><!-- ENDIF -->
Replace with:

Code: Select all

<!-- IF postrow.U_QUOTE and S_USER_LOGGED_IN --><li class="quote-icon"><a href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><span>{L_REPLY_WITH_QUOTE}</span></a></li><!-- ENDIF -->

Do not show "quote" to guests

by Last Man Standing » Sun Aug 14, 2022 9:16 am

Is there an easy way to do it?

Top