Re: Topic SEO
Posted: 23 May 2010, 14:31
Yescisco007 » 23 May 2010, 13:39 wrote:Georgio, have you read the entire first post? including the FAQ's?
I'm so stupid [...] Thanks
Database and Demo for phpBB3 BBCodes, Mods and Smilies
https://phpbb3bbcodes.com/
Yescisco007 » 23 May 2010, 13:39 wrote:Georgio, have you read the entire first post? including the FAQ's?
It is possible.Mario14125 » 23 May 2010, 13:55 wrote:But do you understand me? What I mean is that I want by typing in a word description of thread topics description of the topic was presented in viewforum and instructions there is no such thing, so my question is if anyone that has adapted to the modification of this model which showed that the descriptions of the subjects were shown in viewforum...
Code: Select all
'TOPIC_TITLE' => censor_text($row['topic_title']),
Code: Select all
'SEO_DESC_TOPIC' => $row['seo_desc'],
Code: Select all
{topicrow.TOPIC_TITLE}</a>
Code: Select all
<br />{topicrow.SEO_DESC_TOPIC}
Code: Select all
<!-- IF topicrow.SEO_DESC_TOPIC --><br />{topicrow.SEO_DESC_TOPIC}<!-- ENDIF -->
Thats not possible since this mod has permissions included.Mario14125 wrote:Or do in addition to that to force the description of the topic while writing a new topic And there could be to do so to force keywords topic
Code: Select all
// BEGIN TOPIC SEO
$lang = array_merge($lang, array(
'TOPIC_SEO_DESCRIPTION' => 'Onderwerp beschrijving',
'TOPIC_SEO_KEYWORDS' => 'Onderwerp kernwoorden',
'TOPIC_SEO_KEY_EXPLAIN' => 'Scheid de kernwoorden door middel van een ","',
'TOPIC_SEO_TAGS' => 'Onderwerp tags',
));
// END TOPIC SEO MOD
Code: Select all
'acl_u_topic_seo_key' => array('lang' => 'Kan onderwerp kernwoorden gebruiken', 'cat' => 'misc'),
'acl_u_topic_seo_desc' => array('lang' => 'Kan onderwerp beschrijving gebruiken', 'cat' => 'misc'),
Nobody with this bug?Stoker » 11 Jun 2010, 15:47 wrote:To all the people that have this mod installed!
I have found a bug when you split a topic.
Please try split a topic at your board and confirm that there is a bug.
Code: Select all
$subject = utf8_normalize_nfc(request_var('subject', '', true));
Code: Select all
$seo_desc = utf8_normalize_nfc(request_var('seo_desc', '', true));
$seo_key = utf8_normalize_nfc(request_var('seo_key', '', true));
Code: Select all
split_topic($action, $topic_id, $to_forum_id, $subject
Code: Select all
, $seo_desc, $seo_key
Code: Select all
function split_topic($action, $topic_id, $to_forum_id, $subject
Code: Select all
, $seo_desc, $seo_key
Code: Select all
'topic_title' => $subject,
Code: Select all
'seo_desc' => $seo_desc,
'seo_key' => $seo_key,
Will take a look at this bug stoker over the next week or soStoker » 24 Jun 2010, 16:11 wrote:Nobody with this bug?Stoker » 11 Jun 2010, 15:47 wrote:To all the people that have this mod installed!
I have found a bug when you split a topic.
Please try split a topic at your board and confirm that there is a bug.
Anyway, here is the solution: