Log in

View Full Version : meta description SEO


squishi
09-24-2009, 12:47 PM
I looked into this a while ago. Decided today it has to be done!
The meta description tag of the user profile pages needs to have some personalized information.
So I need to query the username and maybe other userfields in the header of my forum, if the page is a profile.

The if-condition is not the problem. But from what I remember, there is no hook for a plugin to add such a query to the header.

Lynne
09-24-2009, 02:55 PM
You can probably use one of the global_* hooks.

squishi
09-24-2009, 03:37 PM
I found the old thread again:
https://vborg.vbsupport.ru/showthread.php?t=200639

Back then, I did not know that much about plugins.
Will look into it.

--------------- Added 1253812060 at 1253812060 ---------------

I hooked it into global_setup_complete, as this seems to be the place where I can query the data.
$userinfo['userid'] is not recognized at this stage, though.

$meta_result = $db->query_first("SELECT field6, field1, field9
FROM vb_userfield
WHERE userid LIKE ".$userinfo['userid']);
Result:
Invalid SQL:
SELECT field6, field1, field9
FROM vb_userfield
WHERE userid LIKE;

--------------- Added 1253812227 at 1253812227 ---------------

global_start gives me the same result.
global_complete does not recognize the query:
Fatal error: Call to a member function query_first() on a non-object in /forum/includes/functions.php(5721) : eval()'d code on line 16

--------------- Added 1253813610 at 1253813610 ---------------

I don't get this to work. :(

Suppose I take the userid from the get variable. That should work.
I can hook this into global_setup_complete or global_start. global_comple will give me an error.
$vbulletin->input->clean_array_gpc('g', array(
'u' => TYPE_INT
));
$uid = $vbulletin->GPC['u'];

$meta_result = $db->query_read("SELECT field6, field1, field9
FROM vb_userfield WHERE userid LIKE ".$uid);

if ($meta_result){
$aboutme = $meta_result['field1'];
}
unset($meta_result);


When I enter $aboutme in the headinclude template, the variable is empty.