No guys... META are working... they are set to be shown only when TOPIC, FORUM or CAT is viewed... not for post...
Check this part of the MOD:
- if ( isset($_GET[POST_TOPIC_URL]) )
- {
- $meta_topic_id = intval($_GET[POST_TOPIC_URL]);
- }
- elseif ( isset($_GET[POST_FORUM_URL]) )
- {
- $meta_forum_id = intval($_GET[POST_FORUM_URL]);
- }
- elseif ( isset($_GET[POST_CAT_URL]) )
- {
- $meta_cat_id = intval($_GET[POST_CAT_URL]);
- }
And try to view a topic...
Click here for example!
http://www.phpbbxs.eu/viewtopic.php?t=196
I wouldn't implement this even for posts, because it will slow down page loadings... and it's not a good thing...
Pages will be indexed when the topic link is clicked... and it's enough...
