How to Display Topic Title as Meta Description in phpBB3
Posted: September 14th, 2025, 10:13 pm
If you're using the prosilver style in phpBB3 and want to show the topic title as the meta description tag, follow these steps:
Go to:
Inside the <head> section, add this:
After editing, clear the phpBB cache:
Via ACP → General → Purge Cache
Let me know if you need help installing the extension or customizing the template further!
Go to:
Code: Select all
styles/prosilver/template/overall_header.html
Code: Select all
<!-- IF SCRIPT_NAME == 'viewtopic' -->
<meta name="description" content="{TOPIC_TITLE}">
<!-- ENDIF -->
<!-- IF SCRIPT_NAME == 'viewforum' -->
<meta name="description" content="{FORUM_NAME}">
<!-- ENDIF -->
Via ACP → General → Purge Cache
Let me know if you need help installing the extension or customizing the template further!