Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Footer

Parašė Soo-2· 2008 Vas. 18 19:02:26
#1

Sveiki. Kas gali pagelbėti ir sutvarkyti siuos kodus kad theme.php faile footer nukreiptu i footer.php
function render_footer($license=false) {


echo "<table cellpadding='0' cellspacing='0' width='100%' height='91'>
<tr>
<td align='center' class='footer'><br>\n";
echo showcounter()."
</td>
</tr>
</table>
</td>
</tr>
</table>\n";

}



Parašė Giedrunskis· 2008 Vas. 18 19:02:11
#2

Galbut taip, pamegink ;)
function render_footer($license=false) {


echo "<table cellpadding='0' cellspacing='0' width='100%' height='91'>
<tr>
<td align='center' class='footer'><br>\n";
include_once "footer.php";
echo showcounter()."
</td>
</tr>
</table>
</td>
</tr>
</table>\n";

}



Parašė Soo-2· 2008 Vas. 18 19:02:52
#3

Jokiu error nemeta.. gal klaida footer.php faile
<?php

echo "<table  width='731' height='75' border='0' cellpadding='0' cellspacing='0'>
   <tr>
      <td rowspan='3'>
         <img src='".THEME."foot/foot_01.png' width='568' height='75' alt=''></td>
      <td colspan='2'>
         <img src='".THEME."foot/foot_02.png' width='163' height='26' alt=''></td>
   </tr>
   <tr>
      <td>
         <img src='".THEME."foot/foot_03.png' width='88' height='31' alt=''></td>
      <td rowspan='2'>
         <img src='".THEME."foot/foot_04.png' width='75' height='49' alt=''></td>
   </tr>
   <tr>
      <td>
         <img src='".THEME."foot/foot_05.png' width='88' height='18' alt=''></td>
   </tr>
</table>
";

?>



Parašė Žmogus· 2008 Vas. 18 19:02:41
#4

Sakei, kad jo nerodo, paro foto kaip nerodo

Parašė Soo-2· 2008 Vas. 18 19:02:33
#5

http://www.ipix.lt/out.php/i3613...dinimo.JPG

Redagavo Soo-2· 2008 Vas. 18 19:02:46

Parašė samsung123· 2008 Vas. 18 19:02:30
#6

nerodo foto :)

Parašė ramon· 2008 Vas. 18 19:02:31
#7

Nu tai jmj manai tau veiks jei net nera theme.php tokios funk reike daryti taip.
Theme.php :
<?
..
...
function render_footer($license=false) {
require_once "footer.php";
}
...
..
?>




footer.php :

echo "<table cellpadding='0' cellspacing='0' width='100%' height='91'>
<tr>
<td align='center' class='footer'><br>\n";
echo showcounter()."
</td>
</tr>
</table>
</td>
</tr>
</table>\n";



Parašė Soo-2· 2008 Vas. 18 19:02:31
#8

Dabar po footerio yra tarpas kaip ji pašalinti? < br > nėra niekur

Parašė ramon· 2008 Vas. 18 19:02:06
#9

Ismok html...

echo "<table cellpadding='0' cellspacing='0' width='100%' height='91'>
<tr>
<td align='center' class='footer'><br>\n";
echo showcounter()."
</td>
</tr>
</table>\n";



Parašė Soo-2· 2008 Vas. 18 19:02:12
#10

Pats išmok. Nieko tu čia nepakeitei kad butu gerai

Parašė ramon· 2008 Vas. 18 19:02:38
#11

Tai tu gali apsisprest kokio tau kodo reike blt..

Sito:
echo "<table cellpadding='0' cellspacing='0' width='100%' height='91'>
<tr>
<td align='center' class='footer'><br>\n";
echo showcounter()."
</td>
</tr>
</table>\n";



ar sito :
<?php

echo "<table  width='731' height='75' border='0' cellpadding='0' cellspacing='0'>
   <tr>
      <td rowspan='3'>
         <img src='".THEME."foot/foot_01.png' width='568' height='75' alt=''></td>
      <td colspan='2'>
         <img src='".THEME."foot/foot_02.png' width='163' height='26' alt=''></td>
   </tr>
   <tr>
      <td>
         <img src='".THEME."foot/foot_03.png' width='88' height='31' alt=''></td>
      <td rowspan='2'>
         <img src='".THEME."foot/foot_04.png' width='75' height='49' alt=''></td>
   </tr>
   <tr>
      <td>
         <img src='".THEME."foot/foot_05.png' width='88' height='18' alt=''></td>
   </tr>
</table>
";

?>




Parašė Soo-2· 2008 Vas. 18 20:02:24
#12

tas pirmas kodas yra iš theme.php kuris nukreipia i footer.php ten dar truksta kaiko.. O antras kodas yra footer.php :|

Parašė ramon· 2008 Vas. 18 20:02:58
#13

Tikrai noobas.. Nemanau kad tu ta theme kuriai jei net negali paprasto includo funkcijoj atlikt pritom html nemoki..

Darik taip :

theme.php :
<?
..
...
function render_footer($license=false) {
require_once "footer.php";
}
...
..
?>




footer.php :
<?php

echo "<table  width='731' height='75' border='0' cellpadding='0' cellspacing='0'>
   <tr>
      <td rowspan='3'>
         <img src='".THEME."foot/foot_01.png' width='568' height='75' alt=''></td>
      <td colspan='2'>
         <img src='".THEME."foot/foot_02.png' width='163' height='26' alt=''></td>
   </tr>
   <tr>
      <td>
         <img src='".THEME."foot/foot_03.png' width='88' height='31' alt=''></td>
      <td rowspan='2'>
         <img src='".THEME."foot/foot_04.png' width='75' height='49' alt=''></td>
   </tr>
   <tr>
      <td>
         <img src='".THEME."foot/foot_05.png' width='88' height='18' alt=''></td>
   </tr>
</table>
";

?>



Parašė Soo-2· 2008 Vas. 18 20:02:52
#14

jau susitvarkaiu bet aciu už pagalba