Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 4
Seite [1]
Mazo


Beginner




Beiträge: 4
# Thema - 27.07.2009 um 17:49 Uhr
Hallo,
ich würde die News gerne in 2 Spalten anzeigen inetwa so:

News 1 News 2
... ...


News 3 News 4
... ...

Wie kann man das anstellen?
Inaktiv
TeQu!La ClanSphere Team


Specialist




Herkunft: Grevenbroich
Beiträge: 2142
# Antwort: 1 - 27.07.2009 um 19:01 Uhr
\themes\base\news\list.tpl << ich denke mit paar HTML kenntnissen kannst du diese datei so bearbeiten wie du es haben willst...

hab es noch nicht selbst gemacht daher kann ich dir nicht versprechen ob es klappt... hier im forum gibts aber paar seiten die das so nutzen


------------------

ClanSphere - professional clan care starts here


Inaktiv
|
Mazo
Thread-Ersteller


Beginner




Beiträge: 4
# Antwort: 2 - 27.07.2009 um 22:06 Uhr
hmm ich seh da noch nicht so recht durch - hab schon probiert die recent.tpl anzupassen aber ohne erfolg -_-


Inaktiv
|
TeQu!La ClanSphere Team


Specialist




Herkunft: Grevenbroich
Beiträge: 2142
# Antwort: 3 - 27.07.2009 um 22:12 Uhr
oO die meinte ich auch...


------------------

ClanSphere - professional clan care starts here


Inaktiv
|
VooDooAlex


Poststar




Herkunft: Coburg
Beiträge: 691
# Antwort: 4 - 27.07.2009 um 22:15 Uhr
Ich hab sowas in der board navlist gemacht. So ähnlich mußt du das mit der news auch machen:

navlist.php:
mehr... +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
1. / 2. / ... 
<?php
// ClanSphere 2007 - www.clansphere.net
// $Id: navlist.php 143 2006-08-01 05:05:45Z hajo $

$cs_lang cs_translate('board');

$cs_usertime cs_sql_select(__FILE__,'users','users_readtime',"users_id = '" $account["users_id"] . "'");
$cs_readtime cs_time() - $cs_usertime['users_readtime'];

$data = array();
$figures 20;

$tables  'threads thr INNER JOIN {pre}_board frm ON frm.board_id = thr.board_id ';
$tables .= 'LEFT JOIN {pre}_read red ON thr.threads_id = red.threads_id AND red.users_id = \''.$account['users_id'].'\'';
$cells   'thr.threads_headline AS threads_headline, thr.threads_id AS threads_id, ';
$cells  .= 'thr.threads_last_time AS threads_last_time';
$cond    'frm.board_access <= \''.$account['access_board'].'\' AND board_pwd = \'\'';
if(!empty(
$account['users_id'])) {
  
$cond   .= ' AND thr.threads_last_time > \'' $cs_readtime '\' AND (thr.threads_last_time > red.read_since OR red.threads_id IS NULL)';
}
$order   'thr.threads_last_time DESC'
$data['threads'] = cs_sql_select(__FILE__,$tables,$cells,$cond,$order,0,8);

if(empty(
$data['threads'])) {
    
$count_threads count($data['threads']);
  
  
  for (
$run 0$run $count_threads$run++) {
    if(
$run == 1) { $data['threads'][$run]['if']['td'] = 1; } else { $data['threads'][$run]['if']['td'] = 0; }
    if(
$run == 3) { $data['threads'][$run]['if']['td1'] = 1; } else { $data['threads'][$run]['if']['td1'] = 0; }
    if(
$run == 5) { $data['threads'][$run]['if']['td2'] = 1; } else { $data['threads'][$run]['if']['td2'] = 0; }
    
$data['threads'][$run]['threads_date'] = cs_date('unix',$data['threads'][$run]['threads_last_time'],1);
    
$data['threads'][$run]['threads_headline'] = cs_secure($data['threads'][$run]['threads_headline']);
    
$data['threads'][$run]['threads_headline_short'] = strlen($data['threads'][$run]['threads_headline']) <= $figures ?
    
$data['threads'][$run]['threads_headline'] : substr($data['threads'][$run]['threads_headline'],0,$figures-2) . '..';
}
echo 
cs_subtemplate(__FILE__,$data,'board','navlist');
}
else {
  
$count_threads count($data['threads']);
  
  
  for (
$run 0$run $count_threads$run++) {
    if(
$run == 1) { $data['threads'][$run]['if']['td'] = 1; } else { $data['threads'][$run]['if']['td'] = 0; }
    if(
$run == 3) { $data['threads'][$run]['if']['td1'] = 1; } else { $data['threads'][$run]['if']['td1'] = 0; }
    if(
$run == 5) { $data['threads'][$run]['if']['td2'] = 1; } else { $data['threads'][$run]['if']['td2'] = 0; }
    
$data['threads'][$run]['threads_date'] = cs_date('unix',$data['threads'][$run]['threads_last_time'],1);
    
$data['threads'][$run]['threads_headline'] = cs_secure($data['threads'][$run]['threads_headline']);
    
$data['threads'][$run]['threads_headline_short'] = strlen($data['threads'][$run]['threads_headline']) <= $figures ?
    
$data['threads'][$run]['threads_headline'] : substr($data['threads'][$run]['threads_headline'],0,$figures-2) . '..';
  }
  echo 
cs_subtemplate(__FILE__,$data,'board','navlist');
}


navlist.tpl:
mehr... +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
1. / 2. / ... 
 <link href="clansphere.css" rel="stylesheet" type="text/css" />
<
div id="lastforum"><table width="360px" cellpadding="2" cellspacing="2">
<
tr>
    
      {
loop:threads}<td width="180" height="35"><span class="lastforum">{threads:threads_date}</span>      <br />
      <
class="lastforum" href="index.php?mod=board&action=thread&where={threads:threads_id}" title="{threads:threads_headline}"> {threads:threads_headline_short}</a> </td>
  {if:
td}   </tr>
    <
tr>
      {
stop:td}
      {if:
td1}   </tr>
    <
tr>
      {
stop:td1}
      {if:
td2}   </tr>
    <
tr>
      {
stop:td2}
        
      {
stop:threads}
    
  </
tr>
</
table></div>


Gruß Alex


------------------




Inaktiv
|
Antworten: 4
Seite [1]


Sie müssen sich registrieren, um zu antworten.