Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: kodu pakeitimas
Parašė Soo-2· 2008 Sau. 6 00:01:44
#1
kaip tiksliai reikia pakeisit koda iš tokio
function render_footer($license=false) {
global $theme_width,$locale,$settings;
echo "</tr>\n</table>\n";
echo "<table cellSpacing='0' cellPadding='2' width='100%' border='0' background='".THEME."images/footer.gif' style='border-right: solid #c1d2ec 1px; border-left: solid #c1d2ec 1px;'>";
echo "<td width='20%' height='40' class='white' align='left'>";
if ($license == false) {
echo "<b><a href='http://php-fusion.co.uk' target='_blank'></a></b>";
}
echo "</td>";
echo "<td width='40%' class='white' align='center'>";
echo "<b>".stripslashes($settings['footer'])."</b></td>";
echo "<td width='26%' class='white' align='right'>";
echo "<b><a href=''></a></b>";
echo "</td>";
echo "<div align='center'></tr></table></td></tr></table></div>";
}
I va toki
function render_footer($license=false) {
global $theme_width,$settings;
echo "</tr>\n</table>\n";
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td>";
include_once "foot.php";
echo "</td>
</tr>
</table>
</td>
</tr>
</table>\n";
}
Parašė Paul McCartney· 2008 Sau. 6 00:01:15
#2
tai jai turi gerą kodą kam tau jį keisti? :D ( o jai čia atskiri kodai P.S. nepaslenku į juos žiūrėti) tai žiūrėk kas skiriasi ir bandyk ;)
Parašė Adriano· 2008 Sau. 6 00:01:43
#3
paprastaj paimk ir pakejsk :D
Parašė Paul McCartney· 2008 Sau. 6 00:01:40
#4
Nu,argi gali būt papraščiau :D Parašyk koduką ir jau turi savo TVS :D
Parašė Soo-2· 2008 Sau. 6 00:01:58
#5
nu mano header.php failas su tokiais kodais kaip antra kur idejau, o theme.php jau tokie kodai kaip pirmam.. tai jei taip bus reikšme turės ar ne?
Parašė Paul McCartney· 2008 Sau. 6 00:01:17
#6
pabandyk ir sužinosi,šeip jai viskas vienoje theme,ir neperdarei pats,nieko nekonstravai tikrai turi būti gerai ;)
Parašė Soo-2· 2008 Sau. 6 01:01:50
#7
o gal galit sita koda pakeist i kita forma? bo man su sita forma nelabai sekas ideti.. error mera
function render_header($header_content) {
global $theme_width,$settings,$locale,$userdata,$aidlink;
echo "<table align=center class='mainsite-border' align='left' width='900' cellspacing='0' cellpadding='0'>
<tr><td class='outer-border'>
<table align='center' width='100%' cellspacing='0' cellpadding='0'>
<tr><td class='inner-border'>
<table align='center' width='100%' cellspacing='0' cellpadding='0'>
<tr align=left><td>";
include_once "header.php";
echo "</td></tr>
</table>\n";
echo "<table width='100%' cellspacing='0' cellpadding='0'>\n<tr>\n";
}
Parašė Soo-2· 2008 Sau. 6 12:01:35
#8
jei kas nelabai supratot tai aš noriu kad ten kur headerio kodas rašosi tai toi vietoi butu nukreipimas i header.php faila.. kas padės??
Parašė ramon· 2008 Sau. 6 13:01:08
#9
Sukuri faila foot.php ir i ji irasai :
global $theme_width,$locale,$settings;
echo "</tr>\n</table>\n";
echo "<table cellSpacing='0' cellPadding='2' width='100%' border='0' background='".THEME."images/footer.gif' style='border-right: solid #c1d2ec 1px; border-left: solid #c1d2ec 1px;'>";
echo "<td width='20%' height='40' class='white' align='left'>";
if ($license == false) {
echo "<b><a href='http://php-fusion.co.uk' target='_blank'></a></b>";
}
echo "</td>";
echo "<td width='40%' class='white' align='center'>";
echo "<b>".stripslashes($settings['footer'])."</b></td>";
echo "<td width='26%' class='white' align='right'>";
echo "<b><a href=''></a></b>";
echo "</td>";
echo "<div align='center'></tr></table></td></tr></table></div>";
Poto rasai taip :
function render_footer($license=false)
{ include_once "foot.php";
}