Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Siuntiniai headeryje help

Parašė Noyz· 2010 Geg. 25 19:05:52
#1

Sveiki, turiu headerio kodą :

function render_header($header_content) {

global $theme_width, $userdata, $aidlink, $settings, $db_prefix;

echo "<table cellpadding='0' cellspacing='0' width='937' align='center'>
<tr>
<td class='header'>

<div id='plotas'>

<div id='naujausia'>\n"; include THEME."latest_downloads_panel.php"; echo "</div>
<div id='populiariausia'>\n"; include THEME."popular_downloads_panel"; echo "</div>

</div>
</td>
</tr>
</div>
</td>
</tr>

</table>\n";

echo "<table cellpadding='0' cellspacing='0' width='937' align='center'>\n<tr>\n";

}




į styles.css įrašiau :



---






dizaino failuose įdėti popular_downloads_panel ir latest_downloads_panel

Bet siuntinių headeryje nematau, kame bėda?

2 Dalis :

Kai įdedu šį kodą, render_news :

---





Tuomet dingsta apačia, news_footer.png nors su classais viskas gerai.

Redagavo Noyz· 2010 Geg. 26 18:05:02

Parašė Nachal· 2010 Geg. 25 19:05:10
#2

Parašiau kodą į skype.

Parašė Noyz· 2010 Geg. 25 19:05:37
#3

Nieko neparašė, vis dar laukiu jūsų pagalbos............. :)

Parašė kael· 2010 Geg. 25 22:05:01
#4

Surandam savo render header pvz:
function render_header($header_content) {

global $theme_width;

echo "<table align='center' width='100%' cellspacing='0' cellpadding='15'>
<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><td class='full-header'>
<table width='100%' cellspacing='0' cellpadding='0'>
<tr>
<td>$header_content</td>
</tr>
</table>
</td>
</tr>
</table>\n";

echo "<table width='100%' cellspacing='0' cellpadding='0'>\n<tr>
<td class='sub-header'>".showsublinks("&middot;")."</td>
<td align='right' class='sub-header'>".showsubdate()."</td>
</tr>
</table>\n";





Čia tik pvz pas jus gali būti kitaip, tą savo render header kodą ištinam iki šitos vietos:
echo "<table width='100%' cellspacing='0' cellpadding='0'>\n<tr>\n";

}






ir tada dedam naują render header kodą:
function render_header($header_content) {
global $theme_width,$settings,$locale,$userdata,$aidlink,$db_prefix;

   echo "<table class='forumline' align='center' width='$theme_width' cellspacing='0' cellpadding='0' style='border-right: solid #000000 1px; border-left: solid #000000 1px; border-top: solid #000000 1px; margin-top: -5px;'>";
   echo "<tr><td><table align='center' width='100%' cellspacing='0' cellpadding='0'>";
   echo "<tr><td><table align='center' width='100%' cellspacing='0' cellpadding='0'>";
   echo "<tr><td class='header' width='100%'>";

   echo "<tr><table align=center width=100% height=100 background='".THEME."images/header.png' border=0 cellspacing=0 cellpadding=0>";
echo"<tr><td height=50 class='nuorodos' align='center' style='padding-right:50px; padding-top:130px;'><br>";
echo"<table width='50%'><tr>";

echo"<td width='40%'>";
 $result = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_datestamp DESC LIMIT 0,4");
 if (dbrows($result) != 0) {
  echo "<table width='100%'>";
  while ($data = dbarray($result)) {
   echo "<tr>
    <td class='small'>
     <img src='".THEME."images/bullet.gif'>
     <a href='".BASEDIR."downloads.php?cat_id=".$data['download_cat']."&download_id=".$data['download_id']."' title='".$data['download_title']."' class='side'>".trimlink($data['download_title'], 23)."</a>
    </td>
    <td align='right'>".$data['download_count']."</td>
   </tr>";
  }
  echo "</table>";
 } else {
  echo "<div style='text-align:center'>".$locale['004']."</div>\n";
 }

echo "</td><td width='60%' style='padding-left:80px;' >";

$result = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_datestamp DESC LIMIT 0,4");
   if (dbrows($result) != 0) {
echo "<table  width='100%'>";
      while ($data = dbarray($result)) {
         echo "<tr>
            <td class='small'>
                    <img src='".THEME."images/bullet.gif'>
               <a href='".BASEDIR."downloads.php?cat_id=".$data['download_cat']."&download_id=".$data['download_id']."' title='".$data['download_title']."' class='side'>".trimlink($data['download_title'], 23)."</a>
            </td>
            <td align='right'>".$data['download_count']."</td>
         </tr>";
      }
      echo "</table>";
   } else {
      echo "<div style='text-align:center'>".$locale['004']."</div>\n";
   }

echo "</tr>
</table>";

echo "</td></tr>
<tr></tr>
<tr><td height=31></td></tr>
</table>
";

echo"</td></tr><tr></tr><tr><td></td></tr></table>";






Padėjau? +10

Parašė Noyz· 2010 Geg. 25 22:05:06
#5

Kam žaisti su tokiais ilgais kodais, jeigu galima su 2x mažesniu kodu? Tik nepradedam ot, laukiu tų kas žino kaip padaryt pagal mano darymą.

Parašė Jaunelis· 2010 Geg. 25 22:05:19
#6

<div id='naujausia'>\n"; include THEME."latest_downloads_panel.php"; echo "</div>
<div id='populiariausia'>\n"; include THEME."popular_downloads_panel"; echo "</div>




nafik tie echo ? kiek pamenu turėtu buti taip:
<div id='naujausia'>
<?php include_once("themes/dizas/latest_downloads_panel.php"); echo $text;?>
</div>
<div id='populiariausia'>
<?php include_once("themes/dizas/popular_downloads_panel.php"); echo $text;?>
</div>




ten kur dizas tai dizo pavadinima įrašyk

Redagavo Jaunelis· 2010 Geg. 25 22:05:42

Parašė Noyz· 2010 Geg. 25 23:05:24
#7

Dabar išviso tik baltą ekraną rodo :D:D.....................

Parašė kael· 2010 Geg. 25 23:05:20
#8

Noyz žinai geriau parašyt ilgą neigu išvis nieko :)

Parašė Noyz· 2010 Geg. 26 12:05:21
#9

Kodėl nieko? Sulauksiu galbūt pagalbos ir viskas bus gerai, išmoksiu nedaryti klaidų su divais. :)

Parašė And2s· 2010 Geg. 26 14:05:02
#10

<div id='populiariausia'>\n"; include THEME."popular_downloads_panel.php"; echo "</div>





.php galune pamirsai prideti.

Parašė Noyz· 2010 Geg. 26 15:05:00
#11

Vistiek neveikia :( nesuprantu..............................
Loooool :D nebuvau siuntinių padaręs pačiame saite tai ir neveikė :DDD

Redagavo Noyz· 2010 Geg. 26 15:05:09

Parašė Noyz· 2010 Geg. 26 15:05:52
#12

Galit dar į vieną atsakyt? Turiu function render news kodą, man reikia, kad nerodytų nei skaityti daugiau nei nieko:

function render_news($subject, $news, $info) {

echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='capmain' align='center'>$subject</td>
</tr>
<tr>
<td class='main-body'>$news</td>
</tr>
<tr>
<td align='center' class='news-footer'>\n";
echo openform("N",$info['news_id']).newsposter($info," &middot;").newsopts($info,"&middot;").closeform("N",$info['news_id']);
echo "</td>
</tr>
</table>\n";

}




Galit padaryt?

Parašė edeni· 2010 Geg. 26 15:05:31
#13

function render_news($subject, $news, $info) {

echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='capmain' align='center'>$subject</td>
</tr>
<tr>
<td class='main-body'>$news</td>
</tr>
</table>\n";

}



Parašė Noyz· 2010 Geg. 26 16:05:22
#14

Dingsta headeris kai įdedu, nesuprantu ble :D ..............