Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 9
Seite [1]
maGGiTech


Rock the board





Beiträge: 53
# Thema - 20.02.2014 um 19:42 Uhr
Hallo Leute

http://cms.team-pheenix.de/

Dort wird die Gallery unten immer nur unter News angezeigt, bzw. jetzt doppelt als ich ein extra div gemacht habe mit dem Hintergrund.
Aber dieses {gallery:navlist_new} Ding wird nur angezeigt wenn ich auf News gehe, wo auch noch ein Fehler drin ist xD

Was muss ich da ändern? Bzw. welche Datei muss ich mir überhaupt anschaun? Hat wer nen Rat für mich?

Danke vielmals schon mal im Vorraus =)



------------------
Mutligaming Community team-pheenix.de
Inaktiv
palle ClanSphere Team

Supporter
Supporter




Beiträge: 3073
# Antwort: 1 - 20.02.2014 um 20:29 Uhr
Hi,
bei einem HTML/ CSS Forum sind deine fragen wesentlich besser aufgehoben, dass hat rein gar nichts mit Clansphere zu tun.

Viel Erfolg.


------------------
I like the part where it says 'nyan'



Zuletzt editiert von palle ClanSphere Team am 21.02.2014 um 06:25 Uhr (1x Editiert)
Inaktiv
|
bFeeee


Just nerd



Herkunft: Hamm
Beiträge: 944
# Antwort: 2 - 21.02.2014 um 15:05 Uhr
Am besten mal den anschreiben von dem du das Template hast.


------------------
Grüße bFeee

Zuletzt editiert von bFeeee am 21.02.2014 um 15:05 Uhr (1x Editiert)
Inaktiv
|
maGGiTech
Thread-Ersteller


Rock the board





Beiträge: 53
# Antwort: 3 - 21.02.2014 um 17:03 Uhr
Das habe ich schon, dort hilft man mir allerdings nicht weiter, ganz im Gegenteil, mir wurden da sogar im Forum, von einer der Admins, Schimpfwörter an Kopf geworfen, nach dem Motto "dir helf ich jetzt nich mehr ätschibätsch", weil ich mich beschwert habe dass ich 15 Tage auf eine Antwort warten musste. Mein Beitrag wurde sogar weg editiert, habe sowas noch nie erlebt.
Kann Gamer-Templates.de auf keinen Fall weiter empfehlen.

Kann mir vllt. wer verraten nach wo sich die Dateien befinden? In welchen Ordner man die Gallery findet?

MfG


------------------
Mutligaming Community team-pheenix.de

Inaktiv
|
bFeeee


Just nerd



Herkunft: Hamm
Beiträge: 944
# Antwort: 4 - 21.02.2014 um 23:08 Uhr
Also in der index.htm muss unter dem container {func:show} irgendwas mit gallery stehen.
Die css dinge sind dann in deiner css zu bearbeiten die zum template gehört.
ansonsten dann noch themes/gallery


------------------
Grüße bFeee

Inaktiv
|
Joix


King for a day



Herkunft: Frankenthal
Beiträge: 204
# Antwort: 5 - 22.02.2014 um 02:15 Uhr
Mach mal nen paar unnötige "</div>" weg. Kann natürlich sein, dass ich mich verzählt habe ...


</div>
<div id="gallery"><div id="gallery">
<div id="gallery_all"><a href="/index.php?mod=gallery&amp;action=list">Go to Gallery</a></div>
<div id="gallery_img">

</div>
</div></div>

</div>
<div id="right_content">
<!-- ><div id="topics">
<div id="topic_head">LATEST TOPICS</div>


Inaktiv
|
bFeeee


Just nerd



Herkunft: Hamm
Beiträge: 944
# Antwort: 6 - 22.02.2014 um 23:43 Uhr
Also 1 Div ist schonmal zuviel. Dazu dann noch, dass du die ID Gallery 2x benutzt funktioniert ja auch nicht.


------------------
Grüße bFeee

Inaktiv
|
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 7 - 22.02.2014 um 23:49 Uhr
Das ganze Template funktioniert nicht, wenn du das ordentlich haben willst, musste es von 0 an neu schreiben, da sind halt so viele fehler drin.


Inaktiv
|
maGGiTech
Thread-Ersteller


Rock the board





Beiträge: 53
# Antwort: 8 - 26.02.2014 um 20:28 Uhr
EDIT: Funktioniert jetzt

Ich will hier wirklich niemanden nerven, tut mir echt leid das ich so wenig darüber weiß. Ich glaube ich habe die richtige Date dafür gefunden.

 
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.
1. / 2. / ... 
 <?PHP
// ClanSphere 2010 - www.clansphere.net
// $Id$

$get['mod'] = empty($_GET['mod']) ? $_GET['mod'];
$get['action'] = empty($_GET['action']) ? $_GET['action'];

if(
$get['mod'] == 'news' and $get['action'] == 'recent' or empty($get['mod'])) {
$cs_lang cs_translate('gallery');

$data = array();

$cs_option cs_sql_option(__FILE__,'gallery');
$access_id $account['access_gallery'];

$from 'gallery gal INNER JOIN {pre}_folders fol ON gal.folders_id = fol.folders_id';
$select 'gal.gallery_id AS gallery_id, gal.gallery_titel AS gallery_titel, fol.folders_name AS folders_name';
$where "gal.gallery_access < '" $access_id "' AND gal.gallery_status = '1'"
$order 'gal.gallery_id DESC';
$cs_gallery cs_sql_select(__FILE__,$from,$select,$where,$order,0,$cs_option['max_navlist']);
$gallery_loop count($cs_gallery);

$data['gallery'] = array();

for(
$run=0$run<$gallery_loop$run++) {
  
$img cs_html_img('mods/gallery/image.php?thumb=' $cs_gallery[$run]['gallery_id']);
  
$title $cs_gallery[$run]['folders_name'] . ' - ' $cs_gallery[$run]['gallery_titel'];
  
$short strlen($title) > 25 cs_substr($title,0,25).'..' $title;
  
$data['gallery'][$run]['img'] = $img;
  
$data['gallery'][$run]['name'] = cs_secure($short);
  
$data['gallery'][$run]['id'] = $cs_gallery[$run]['gallery_id'];
}

echo 
cs_subtemplate(__FILE__,$data,'gallery','navlist_new');
}


da steht auf jeden fall glaube ich sowas wie wenn news an ist, dann zeigt er gallery an, jetzt müsste ich das glaube ich so abändern so dass er das immer anzeigt ^^

EDIT: Funktioniert jetzt.

haben für Zeile 5 das hier reingeschrieben:

 
1.
2.
3.
1. / 2. / ... 
 //$get['mod'] = empty($_GET['mod']) ? 0 : $_GET['mod'];
$get['mod'] = 0;


------------------
Mutligaming Community team-pheenix.de

Zuletzt editiert von maGGiTech am 26.02.2014 um 20:35 Uhr (1x Editiert)
Inaktiv
|
Deaktiviert

Supporter
Supporter



Beiträge: 1287
# Antwort: 9 - 26.02.2014 um 20:34 Uhr
Code 0 angeschaut, nur die if-case rausgemacht nach Wunsch:

 
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.
1. / 2. / ... 
 <?PHP
// ClanSphere 2010 - www.clansphere.net
// $Id$

$get['mod'] = empty($_GET['mod']) ? $_GET['mod'];
$get['action'] = empty($_GET['action']) ? $_GET['action'];

$cs_lang cs_translate('gallery');

$data = array();

$cs_option cs_sql_option(__FILE__,'gallery');
$access_id $account['access_gallery'];

$from 'gallery gal INNER JOIN {pre}_folders fol ON gal.folders_id = fol.folders_id';
$select 'gal.gallery_id AS gallery_id, gal.gallery_titel AS gallery_titel, fol.folders_name AS folders_name';
$where "gal.gallery_access < '" $access_id "' AND gal.gallery_status = '1'"
$order 'gal.gallery_id DESC';
$cs_gallery cs_sql_select(__FILE__,$from,$select,$where,$order,0,$cs_option['max_navlist']);
$gallery_loop count($cs_gallery);

$data['gallery'] = array();

for(
$run=0$run<$gallery_loop$run++) {
  
$img cs_html_img('mods/gallery/image.php?thumb=' $cs_gallery[$run]['gallery_id']);
  
$title $cs_gallery[$run]['folders_name'] . ' - ' $cs_gallery[$run]['gallery_titel'];
  
$short strlen($title) > 25 cs_substr($title,0,25).'..' $title;
  
$data['gallery'][$run]['img'] = $img;
  
$data['gallery'][$run]['name'] = cs_secure($short);
  
$data['gallery'][$run]['id'] = $cs_gallery[$run]['gallery_id'];
}

echo 
cs_subtemplate(__FILE__,$data,'gallery','navlist_new');


Inaktiv
|
Antworten: 9
Seite [1]


Sie müssen sich registrieren, um zu antworten.