Thread Info
Wer ist hier? 1 Gäste
Theme Von v6 auf v7 !!
|
|
Dj-PartyFuchs |
Geschrieben am 02.11.2009 00000011 16:55
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
ich habe da mal eine frage wie kann ich ein v6 style auf v7 umschreiben??? Die teheme.php habe ich mal mit angehängt. <?php if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; } require_once INCLUDES."theme_functions_include.php"; // theme settings $body_text = "#000000"; $body_bg = "#ffffff"; $theme_width = "90%"; $theme_width_l = "177"; $theme_width_r = "177"; function render_header($header_content) { global $theme_width,$settings; echo "<table align='center' width='$theme_width' cellspacing='0' cellpadding='0'> <tr> <td> <table width='100%' cellspacing='0' cellpadding='0'> <tr> <td class='full-header'> <table width='100%' cellspacing='0' cellpadding='0'> <tr> <td class='logo-top-left'></td> <td class='logo-top-main'><center><img src='".THEME."images/logo-top-main-center.gif' border='0'></center></td> <td class='logo-top-right'></td> </tr> <tr> <td class='logo-left-main'><img src='".THEME."images/logo-left-main-center.gif' border='0'></td> <td class='logo-main'>$header_content</td> <td class='logo-right-main'><img src='".THEME."images/logo-right-main-center.gif' border='0'></td> </tr> <tr> <td class='logo-bottom-left'></td> <td class='logo-bottom-main'><center><img src='".THEME."images/logo-bottom-main-center.gif' border='0'></center></td> <td class='logo-bottom-right'></td> </tr> </table> </td> </tr> </table>\n"; tablebreak(); echo "<table width='100%' cellspacing='0' cellpadding='0'>\n<tr> <td class='menupoziome-l'></td><td class='menupoziome-m'>".showsublinks("·")."</td> <td align='right' class='menupoziome-m'>".showsubdate()."</td><td class='menupoziome-r' align='right'></td> </tr> </table>\n"; tablebreak(); echo "<table width='100%' cellspacing='0' cellpadding='0'>\n<tr>\n"; } function render_footer($license=false) { global $theme_width,$settings,$locale; echo "</tr>\n</table>\n"; echo "<table width='100%' cellspacing='0' cellpadding='0'> <tr> <td class='logo-top-left'></td> <td class='logo-top-main'><center><img src='".THEME."images/logo-top-main-center.gif' border='0'></center></td> <td class='logo-top-right'></td> </tr> <tr> <td class='logo-left-main'></td> <td class='logo-main'><center><br>".stripslashes($settings['footer'])."<br> ".showcounter()."<br><br>"; if ($license == false) { echo showcopyright()."<br> \n"; } echo "</center></td> <td class='logo-right-main'></td> </tr> <tr> <td class='logo-bottom-left'></td> <td class='logo-bottom-main'><center><img src='".THEME."images/logo-bottom-main-center.gif' border='0'></center></td> <td class='logo-bottom-right'></td> </tr> </table>\n"; } function render_news($subject, $news, $info) { global $locale; echo "<table width='100%' cellpadding='0' cellspacing='0'> <tr> <td> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='news-top-left'></td> <td class='news-top-main''> </td> <td class='news-top-right'></td> </tr> </table> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='table-text-left'></td> <td class='table-text-main'> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td width='100%' class='news-title'>$subject</td> </tr> <tr> <td width='100%'> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='news-border-tl'></td> <td class='news-border-t'></td> <td class='news-border-tr'></td> </tr> <tr> <td class='news-border-l'></td> <td class='news-main'> $news </td> <td class='news-border-r'></td> </tr> <tr> <td class='news-border-bl'></td> <td class='news-border-b'></td> <td class='news-border-br'></td> </tr> </table> </td> </tr> <tr> <td width='100%' style='padding-top: 5px;'>\n"; echo openform("N",$info['news_id']); echo "Doda³: "; echo newsposter($info," ").newsopts($info,"·").closeform("N",$info['news_id']); echo " </td> </tr> </table> </td> <td class='table-text-right'></td> </tr> </table> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='table-end-left'></td> <td class='table-end-main'> </td> <td class='table-end-right'></td> </tr> </table> </td> </tr> </table>\n"; tablebreak(); } function render_article($subject, $article, $info) { global $locale; echo "<table width='100%' cellpadding='0' cellspacing='0'> <tr> <td> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='table-title-left'></td> <td class='table-title-main''>$subject</td> <td class='table-title-right'></td> </tr> </table> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='table-text-left'></td> <td class='table-text-main'> ".($info['article_breaks'] == "y" ? nl2br($article) : $article)."<br><hr>\n"; echo openform("A",$info['article_id']).articleposter($info,"·").articleopts($info,"·").closeform("A",$info['article_id']); closetable(); } function opentable($title) { echo "<table width='100%' cellpadding='0' cellspacing='0'> <tr> <td> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='table-title-left'></td> <td class='table-title-main''>$title</td> <td class='table-title-right'></td> </tr> </table> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='table-text-left'></td> <td class='table-text-main'>\n"; } function closetable() { echo "</td> <td class='table-text-right'></td> </tr> </table> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='table-end-left'></td> <td class='table-end-main'> </td> <td class='table-end-right'></td> </tr> </table> </td> </tr> </table>\n"; tablebreak(); } function openside($title) { echo "<table width='100%' cellpadding='0' cellspacing='0' class='border'> <tr> <td> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='scroll-left'></td> <td class='scroll-main'><center>$title</center></td> <td class='scroll-right'></td> </tr> <tr> <td class='blockborder-left'></td> <td class='side-body'>\n"; } function closeside() { echo "</td> <td class='blockborder-right'></td> </tr> <tr> <td class='blockborder-leftb'></td> <td class='blockborder-bottom'></td> <td class='blockborder-rightb'></td> </tr> </table> </td> </tr> </table>\n"; tablebreak(); } function opensidex($title,$open="on") { $boxname = str_replace(" ", "", $title); echo "<table width='100%' cellpadding='0' cellspacing='0' class='border'> <tr> <td> <table width='100%' cellpadding='0' cellspacing='0'> <tr> <td class='scroll-left'></td> <td><table width='100%' cellpadding='0' cellspacing='0'><tr> <td class='scroll-main'><center> $title</center></td> <td class='scroll-mainx' width='10'>".panelbutton($state,$boxname)."</td> </tr> </table> </td> <td class='scroll-right'></td> </tr> <tr> <td class='blockborder-left'></td> <td class='side-body'> <div id='box_$boxname'".($state=="off"?" style='display:none'":"").">\n"; } function closesidex() { echo "</div> </td> <td class='blockborder-right'></td> </tr> <tr> <td class='blockborder-leftb'></td> <td class='blockborder-bottom'></td> <td class='blockborder-rightb'></td> </tr> </table> </td> </tr> </table>\n"; tablebreak(); } function tablebreak() { echo "<table width='100%' cellspacing='0' cellpadding='0'> <tr><td height='8'></td></tr> </table>\n"; } ?> Bearbeitet von Dj-PartyFuchs am 02.11.2009 00000011 20:42 |
|
|
SC-Ad-Bot | Advertisement |
| |
turbo-opa |
Geschrieben am 02.11.2009 00000011 18:57
|
Senior Mitglied Beiträge: 403 Registriert am: 25.09.08 Fusioneer: 16 years 0 months 2 weeks 20 days 2 hours 37 minutes 28 seconds |
na erstmal sollten die smilies deaktiviert sein beim posten
|
|
|
ritmi |
Geschrieben am 02.11.2009 00000011 20:31
|
Senior Mitglied Beiträge: 272 Registriert am: 10.06.09 Fusioneer: 15 years 4 months 0 weeks 5 days 10 hours 21 minutes 0 seconds |
hoffe das kann dir weiter helfen ist aba english http://www.phpfusionmods.com/php-fusi...heming.pdf www.pimped-fusion.net
.... |
|
|
Dj-PartyFuchs |
Geschrieben am 02.11.2009 00000011 20:43
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
danke für den tip uwe schon erledigt smileys nun deaktiviert |
|
|
Dj-PartyFuchs |
Geschrieben am 02.11.2009 00000011 20:59
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
danke ritmi komme ich aber nicht mit klar sonst noch jemand ne idee oder kann des jemand? |
|
|
ritmi |
Geschrieben am 02.11.2009 00000011 21:20
|
Senior Mitglied Beiträge: 272 Registriert am: 10.06.09 Fusioneer: 15 years 4 months 0 weeks 5 days 10 hours 21 minutes 0 seconds |
welche theme wilst du nun auf v7 programiren
www.pimped-fusion.net
.... |
|
|
Dj-PartyFuchs |
Geschrieben am 02.11.2009 00000011 21:22
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
von der v6 das theme heroes |
|
|
ritmi |
Geschrieben am 02.11.2009 00000011 21:31
|
Senior Mitglied Beiträge: 272 Registriert am: 10.06.09 Fusioneer: 15 years 4 months 0 weeks 5 days 10 hours 21 minutes 0 seconds |
köntest mir den link zu dem download finden weil diese theme mir unbekant ist
www.pimped-fusion.net
.... |
|
|
ritmi |
Geschrieben am 02.11.2009 00000011 21:35
|
Senior Mitglied Beiträge: 272 Registriert am: 10.06.09 Fusioneer: 15 years 4 months 0 weeks 5 days 10 hours 21 minutes 0 seconds |
oki da gibt es par probleme ich ferstech 3 stprachen albanish deutsch und bissel turkish aber was is das??? soll net beleidigend sein www.pimped-fusion.net
.... |
|
|
Dj-PartyFuchs |
Geschrieben am 02.11.2009 00000011 21:36
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
na da habe ich das theme her von der seite |
|
|
ritmi |
Geschrieben am 02.11.2009 00000011 21:40
|
Senior Mitglied Beiträge: 272 Registriert am: 10.06.09 Fusioneer: 15 years 4 months 0 weeks 5 days 10 hours 21 minutes 0 seconds |
http://www.phpfusion-support.de/forum...d_id=22250
www.pimped-fusion.net
.... |
|
|
Dj-PartyFuchs |
Geschrieben am 02.11.2009 00000011 21:43
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
thx für den link aber genau damit komme ich nciht klar |
|
|
ritmi |
Geschrieben am 02.11.2009 00000011 21:52
|
Senior Mitglied Beiträge: 272 Registriert am: 10.06.09 Fusioneer: 15 years 4 months 0 weeks 5 days 10 hours 21 minutes 0 seconds |
also was ich dazu sagen kann is ab der 3 seite fengt es ahn wie man die theme.php codirt was amn alles endern muss usw css must du auch endern und zum überzetzen hilft dir unser all bekanter freund google www.translate.google.de www.pimped-fusion.net
.... |
|
|
Dj-PartyFuchs |
Geschrieben am 03.11.2009 00000011 08:55
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
ich danke dir nochmals aber ich werd trotzdem nicht schlau mache einen fehler nacheinander |
|
|
turbo-opa |
Geschrieben am 03.11.2009 00000011 09:13
|
Senior Mitglied Beiträge: 403 Registriert am: 25.09.08 Fusioneer: 16 years 0 months 2 weeks 20 days 2 hours 37 minutes 28 seconds |
könnte den link von dem theme auch brauchen dann schsu ich mal obs umzubauen geht |
|
|
Dj-PartyFuchs |
Geschrieben am 03.11.2009 00000011 09:15
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
hier der link zum theme : http://fusion-themes.pl/theme.php?id=188 |
|
|
Dj-PartyFuchs |
Geschrieben am 03.11.2009 00000011 21:55
|
Jung Mitglied Beiträge: 16 Registriert am: 05.01.09 Fusioneer: 15 years 9 months 1 weeks 8 days 20 hours 43 minutes 54 seconds |
habe mich mal selber dran versucht aber da kommt nur müll raus |
|
|
Thomas |
Geschrieben am 10.08.2010 00000008 13:48
|
Jung Mitglied Beiträge: 32 Registriert am: 18.01.09 Fusioneer: 15 years 8 months 3 weeks 26 days 23 hours 29 minutes 6 seconds |
Hallo erst einmal . ich habe das gleiche Problem mit dem umschreiben von v6auf v7 ich werde mal mein themes hier rein posten vieleicht findet sich ja jemand der mir das umschreiben könnte. so sieht mein themes aus. Edit by MarcusG: Ganze Dateien bitte als ZIP anhängen, danke! Bearbeitet von am 10.08.2010 00000008 14:19 |
|
Springe ins Forum: |
Ähnliche Themen
Thema | Forum | Antworten | Letzter Beitrag |
---|---|---|---|
Theme | Projekt sucht Entwickler... | 1 | 04.11.2015 00000011 21:33 |
FP Crisp Ice Theme 1.00 | Allgemeine Support Fragen | 5 | 02.04.2015 00000004 08:31 |
Theme größe geändert mit einem fehler | Allgemeine Support Fragen | 2 | 31.03.2015 00000003 08:26 |
Theme im Facebook style | Infusionen | 1 | 08.12.2014 00000012 17:25 |
Theme Schriftfarbe Ändern | Grafik und Design | 4 | 11.10.2013 00000010 17:25 |