
03-10-2009, 01:04 AM
|
|
|
Join Date: Feb 2007
Location: Detroit
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by nfn
Hi,
I don't know if anyone as found a good solution to turn PhtoPlog Lite more SEO, but here's mine:
Todo:
Edit 2 PhotoPlog files - index.php and functions.php
Dificulty & Time
Easy ... just 2 minuts
What & How?
Place image name in Title
Open index.php and find
Code:
photoplog_output_page('photoplog_view_file', $vbphrase['photoplog_view_file']);
replace with
Code:
photoplog_output_page('photoplog_view_file', $vbphrase['photoplog_view_file'] ." - ". $photoplog_title);
Replace PhotoPlog in title with you Forum Name
Open functions.php and find
Code:
$pagetitle = $vbphrase['photoplog_photoplog']." - ".$photoplog_phrase;
replace with
Code:
$pagetitle = $vbulletin->options['bbtitle']." - ".$photoplog_phrase;
Note: $vbulletin->options['bbtitle'] is defined at: vBulletin Options -> vBulletin Options -> Site Name / URL / Contact Details -> Forum Name
Done!
This hack was done with vBulletin 3.6.5 and PhotoPlog Lite v.2.0.6
PS: English is not my main language, so if you find any error just ignore it!
Tags: PhotoPlog Lite SEO, PhotoPlog Lite Search Engine Friendly, PhotoPlog Lite Title
|
Worked perfect! Thank you.
|