Recent Posts Forum Index - Druckversion +- MyBB.de Forum (https://www.mybb.de/forum) +-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html) +--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html) +--- Thema: Recent Posts Forum Index (/thread-26760.html) Seiten: Seiten:
1
2
|
Recent Posts Forum Index - MyBB.de Bot - 02.11.2012 Eine neue Erweiterung wurde veröffentlicht: Recent Posts Forum Index Zitat:This mod will add the most recent posts of your forum at the top of your forum index. The permissions are carried intact. i.e. the group/groups that does/have not permissions to view a forum, will not be able to see the posts from the forum/forums that they are not allowed to view. Google Seo und "Recent Posts Forum Index (1.0)" - hkkp - 28.04.2014 Hallo, bei diesem Plugin wird nur der Name seo-freundlich angezeigt, aber der Rest nicht. Muss ich da was in der Plugindatei umschreiben oder soll ich ihnen gleich die .htaccess zeigen. Halt die Standard-Datei von Google Seo. RE: Google Seo und "Recent Posts Forum Index (1.0)" - frostschutz - 28.04.2014 In dem Plugin ist der URL-Stil showthread.php?tid=123 einfach hardgecoded. Das hat mit Google SEO nichts zu tun, wenn du die MyBB-Form thread-123.html verwenden würdest, wäre es mit diesem Plugin trotzdem showthread.php?tid=123. Das Plugin sollte die Funktionen get_thread_link() / get_forum_link() benutzen. RE: Google Seo und "Recent Posts Forum Index (1.0)" - hkkp - 28.04.2014 Aber benutzt es nicht oder wenn nicht, kann man dies umschreiben? RE: Recent Posts Forum Index - frostschutz - 29.04.2014 Schau dir den Sourcecode des Plugins an und überall wo showthread.php?tid=$x benutzt wird machst du get_thread_link($x) daraus. Analog für forumdisplay.php und get_forum_link(). Diese Funktionen sind in inc/functions.php definiert. RE: Recent Posts Forum Index - hkkp - 29.04.2014 Okay. Ich versuch es mal. Ansonsten werde ich wieder hier vorstellig. RE: Recent Posts Forum Index - hkkp - 29.04.2014 Die angesprochene Variable showthread.php?tid=$x find ich nicht. Plugin Push it RE: Recent Posts Forum Index - StefanT - 29.04.2014 Bitte verlinke Plugins anstatt sie hier hochzuladen, danke. RE: Recent Posts Forum Index - hkkp - 23.05.2014 PHP-Code: <?php Dies ist der Code von dem Plugin. Könnt mir da jemand mal helfen? Danke! RE: Recent Posts Forum Index - Jockl - 23.05.2014 (29.04.2014, 12:36)frostschutz schrieb: Schau dir den Sourcecode des Plugins an und überall wo showthread.php?tid=$x benutzt wird machst du get_thread_link($x) daraus. Analog für forumdisplay.php und get_forum_link(). Diese Funktionen sind in inc/functions.php definiert. (29.04.2014, 19:17)hkkp schrieb: Die angesprochene Variable showthread.php?tid=$x find ich nicht.Dann suche mal nach PHP-Code: forumdisplay.php?&fid=' . $row['fid'] . ' PHP-Code: showthread.php?tid=' . $row['tid'] . '&action=lastpost" |