| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
anne
Joined: 21 Dec 2007 Posts: 21
|
Posted: Sat Dec 29, 2007 11:42 pm Post subject: Topic Title Smilies Mod |
|
|
This mod is available here.
It seems that I have successfully installed this mod onto viewtopic and search . But viewforum remains a problem. I'm still not able to make the smileys appear on viewforum.
I believe it is this line.
FIND
| Code: | // Send vars to template
$template->assign_block_vars('topicrow', array( |
ADD BEFORE
| Code: | // Replace Smiley
$row['topic_title'] = replace_smiley($row['topic_title']); |
I did ask for the author's help but... he said:
| Quote: | | its because of the seo mod,thats why you cant find it |
Now I'm calling onto you guys. I'm sorry.
My forum is located here. |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14327
|
Posted: Sun Dec 30, 2007 10:26 am Post subject: Re: Topic Title Smilies Mod |
|
|
This come from our optimization on censoring (preventing multi censoring on the same title).
The fix is the following :
Add :
| Code: |
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
$row['topic_title'] = (isset($phpbb_seo->seo_censored[$topic_id]) ) ? $phpbb_seo->seo_censored[$topic_id] : censor_text($row['topic_title']);
// www.phpBB-SEO.com SEO TOOLKIT END |
Before :
| Code: | // Added by Topic Tags MOD
topic_tags_title($row, $forum_data['forum_topic_tags']);
// End Added by Topic Tags MOD |
And replace :
| Code: | | 'TOPIC_TITLE' => (isset($phpbb_seo->seo_censored[$topic_id]) ) ? $phpbb_seo->seo_censored[$topic_id] : censor_text($row['topic_title']), |
with :
| Code: | | 'TOPIC_TITLE' => $row['topic_title'], |
in viewforum.php  |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
anne
Joined: 21 Dec 2007 Posts: 21
|
Posted: Sun Dec 30, 2007 11:07 am Post subject: Re: Topic Title Smilies Mod |
|
|
thanks! It works! You guys are awesome. |
|
|
| Back to top |
|
 |
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |