https://www.icyphoenix.com/viewtopic.php?f=26&t=1374
-----------------------------------
fidunderground
Mon 19 Mar, 2007 15:50

Hide Links Mod For IP???
-----------------------------------
Can anyone make a Icy P version of this mod?

Only this please....i dont want to wait untill the next release....


[quote]Hide Links

http://www.phpbbhacks.com/download/4543

This hack will prevent links in posts from being shown to unregistered users. Instead, they will be advised to register or login. This hack also hides e-mails in the message body.[/quote]


-----------------------------------
Zuker
Mon 19 Mar, 2007 17:50

Re: Hide Links Mod For IP???
-----------------------------------
it's included

ACP->CONFIGURATION->POSTING->

Disable HTML links for guests

;)


-----------------------------------
fidunderground
Mon 19 Mar, 2007 21:18

Re: Hide Links Mod For IP???
-----------------------------------
[quote user="Zuker" post="10364"]it's included

ACP->CONFIGURATION->POSTING->

Disable HTML links for guests

;)[/quote]

yeah thats there....but how about hiding the links until they have certain amount of posts???


-----------------------------------
Mighty Gorgon
Thu 22 Mar, 2007 01:36

Re: Hide Links Mod For IP???
-----------------------------------
[quote user="fidunderground" post="10378"]yeah thats there....but how about hiding the links until they have certain amount of posts???[/quote]
I won't add this... I'm sorry, but I don't have the time.

If you need post control create a group with automatic user inclusion after a certain number of post, and create forums as private, so they will be able to access those forums only after they reach the desired amount of posts.


-----------------------------------
Zuker
Thu 22 Mar, 2007 11:45

Re: Hide Links Mod For IP???
-----------------------------------
[quote user="Mighty Gorgon" post="10495"][quote user="fidunderground" post="10378"]yeah thats there....but how about hiding the links until they have certain amount of posts???[/quote]
I won't add this... I'm sorry, but I don't have the time.

If you need post control create a group with automatic user inclusion after a certain number of post, and create forums as private, so they will be able to access those forums only after they reach the desired amount of posts.[/quote]

@ mighty: do you remember where the function of hidding links for guest is?


-----------------------------------
Mighty Gorgon
Tue 27 Mar, 2007 01:29

Re: Hide Links Mod For IP???
-----------------------------------
[quote user="Zuker" post="10565"]@ mighty: do you remember where the function of hidding links for guest is?[/quote]
Of course... I've written it! :wink:

[b]includes/bbcode.php[/b]

[codeblock]			if ( ($config_mg['disable_html_guests'] == 1) && (!$userdata['session_logged_in']) )
			{
				return array(
					'valid' => true,
					'html' => $lang['Links_For_Guests'],
					'allow_nested' => false,
				);
			}
			else
			{
				if($show_content)
				{
					return array(
						'valid' => true,
						'start' => $html,
						'end' => '</a>',
					);
				}
				else
				{
					return array(
						'valid' => true,
						'html' => $html . $content . '</a>',
						'allow_nested' => false,
					);
				}
			}[/codeblock]


-----------------------------------
kelle
Sun 14 Oct, 2007 15:34

Re: Hide Links Mod For IP???
-----------------------------------
[quote user="Zuker" post="10364"]it's included

ACP->CONFIGURATION->POSTING->

Disable HTML links for guests

;)[/quote]

Sorry for my ignorance but I've just setup IP and I'm testing this feature. Now which one should apply actually:
1. Links in posts are invisible to guests?
2. Links posted by guests are invisible to guests but visible to members?
3. Links posted by guests are invisible forever to anybody?

In my opinion, #1 is desired. But doesn't work so here. All links in posts are visible to guests too.
#2 may be desired but has not much sense. Besides see above.
#3 is what I'm actually experiencing with my board :| 

Any clue for what I'm doing wrong? TIA


-----------------------------------
Mighty Gorgon
Sun 14 Oct, 2007 18:59

Re: Hide Links Mod For IP???
-----------------------------------
If you want to disable links showing for guest, you should switch on what Zuker said and disable POST CACHING, otherwise the link will remain in cache and it may be shown to everybody.


-----------------------------------
kelle
Sun 14 Oct, 2007 20:08

Re: Hide Links Mod For IP???
-----------------------------------
[quote user="Mighty Gorgon" post="20474"]and disable POST CACHING, otherwise the link will remain in cache and it may be shown to everybody.[/quote]
Do me a last favour and tell me pls where this POST CACHING setting is buried :roll:  Thanks!


-----------------------------------
Mighty Gorgon
Tue 16 Oct, 2007 11:27

Re: Hide Links Mod For IP???
-----------------------------------
In the same configuration section Zuker suggested you.

Try to look near the bottom of the page.


-----------------------------------
kelle
Wed 17 Oct, 2007 00:31

Re: Hide Links Mod For IP???
-----------------------------------
[quote user="Mighty Gorgon" post="20523"]In the same configuration section Zuker suggested you.

Try to look near the bottom of the page.[/quote]

ok. thks. it's is working now as expected.
for those others; it's meant "Disable precompiled posts" set checked.
fyi :wink:


