Search found 8 matches

by MedCo
27 Jul 2025, 16:02
Forum: Stokers phpBB 3.3.X Extensions
Topic: [3.3][DEV] Notify by default - phpBB Extension
Replies: 5
Views: 507

[3.3][DEV] Notify by default - phpBB Extension

Maybe I didn’t explain it clearly.
The screenshots show it better.

Screenshot #1 is from phpBB.com and reflects the standard I'm familiar with.

Captura de pantalla (4).png


Screenshot #2 is from this forum, and it's different. A different standard is being applied here without the member ...
by MedCo
26 Jul 2025, 20:29
Forum: Stokers phpBB 3.3.X Extensions
Topic: [3.3][DEV] Notify by default - phpBB Extension
Replies: 5
Views: 507

[3.3][DEV] Notify by default - phpBB Extension

I like the checkbox idea. However, I'd prefer to let the user decide whether they want notifications or not. Maybe a simple yes/no toggle switch would work. For example, I'm not a fan of automatic notifications that I haven't explicitly requested. Here in this forum, for instance, I was surprised to ...
by MedCo
20 Jul 2025, 13:14
Forum: BBCode Support
Topic: Display the visitor's IP
Replies: 3
Views: 369

Display the visitor's IP

Screenshot 2025-07-20 at 08-13-07 (3) Kolumbienforum - Antwort erstellen.png

@Steve

Thanks for the input – much appreciated! I initially went with plain JavaScript for simplicity and compatibility. Your suggestion adds a layer of robustness by wrapping the fetch call in a try block and delaying ...
by MedCo
19 Jul 2025, 23:32
Forum: BBCode Support
Topic: Display the visitor's IP
Replies: 3
Views: 369

Display the visitor's IP

BBCode:
[ip][/ip]

HTML:
<script>
fetch('https://api.ipify.org?format=json')
.then(res => res.json())
.then(data => {
document.getElementById('ip-display').textContent = data.ip;
});
</script>
<p style="font-size: 0.8em;">Your IP is: <span id="ip-display">is loading...</span></p>

Example ...
by MedCo
19 Jul 2025, 19:36
Forum: PhpBB3 Support
Topic: [phpBB Support] [phpBB-Unterstützung] Date of birth profilefield
Replies: 24
Views: 2,110

[phpBB Support] [phpBB-Unterstützung] Date of birth profilefield

Thanks so much for the quick response. I've added it to my test forum. At first glance, I can now see the age displayed under the profile—perfect! The only thing is, the birthday isn't showing up on the index page.
by MedCo
19 Jul 2025, 18:06
Forum: PhpBB3 Support
Topic: [phpBB Support] [phpBB-Unterstützung] Date of birth profilefield
Replies: 24
Views: 2,110

[phpBB Support] [phpBB-Unterstützung] Date of birth profilefield

Thank you so much for the quick response. I should have figured that with such professional programmers as yourselves, there would be a setting for this in the ACP. I’m just surprised that the birthday display doesn’t appear on the index page and below the profile. Is there any way to add that ...
by MedCo
19 Jul 2025, 13:40
Forum: PhpBB3 Support
Topic: [phpBB Support] [phpBB-Unterstützung] Date of birth profilefield
Replies: 24
Views: 2,110

[phpBB Support] [phpBB-Unterstützung] Date of birth profilefield

Unfortunately, I do not understand the response.

Let me repeat my request: The extension should appear during the registration process. However, entering one’s birth date should be entirely optional. It should not be a required field. That was my original wish. If I expressed myself unclearly in my ...
by MedCo
19 Jul 2025, 02:28
Forum: PhpBB3 Support
Topic: [phpBB Support] [phpBB-Unterstützung] Date of birth profilefield
Replies: 24
Views: 2,110

[phpBB Support] [phpBB-Unterstützung] Date of birth profilefield

Hello,

I'm interested in this extension, but I would prefer it to be optional rather than a required field. It reminds me of a mod I used many years ago in the SE Pro style by Stoker.

Could you let me know what needs to be changed in Steve’s extension to make that adjustment?

Many thanks, and I'm ...