Search found 159 matches

by cwenet
Tue 13. Dec 2005, 17:19
Forum: phpwcms Support English
Topic: Problem: Farbe des Navigationstext lässt sich nicht ändern
Replies: 8
Views: 2745

Also ich sehe keinen hellgrünen Navigationstext.
Bei mir sieht es so aus:

http://www.cwe24.com/c-stoph.jpg

Angeschaut im IE + NS


Christoph
by cwenet
Tue 13. Dec 2005, 17:05
Forum: phpwcms Support English
Topic: Problem: Farbe des Navigationstext lässt sich nicht ändern
Replies: 8
Views: 2745

Kann man das Projekt schon online sehen?
Problemlösung wäre dann einfacher.

Christoph
by cwenet
Tue 13. Dec 2005, 16:59
Forum: phpwcms Support English
Topic: Problem: Farbe des Navigationstext lässt sich nicht ändern
Replies: 8
Views: 2745

Hallo c-stoph,

hast Du den CSS Stile in der conf.template_default.inc.php zugewiesen?

Z.B. :
$template_default["nav_table_struct"]["cell_class"] = "nav_table";
$template_default["nav_table_struct"]["cell_active_class"] = "nav_table_active";

Gruß
Christoph
by cwenet
Tue 13. Dec 2005, 16:39
Forum: phpwcms Support English
Topic: Bild in Kopfzeile abhängig vom Artikel
Replies: 26
Views: 7829

Hallo Heiko,

vielleicht hilft das hier:



[PHP]
$id = $GLOBALS['content']['cat_id'];

$parent_id=$GLOBALS['content']['struct'][$id]['acat_struct'];
While ($parent_id<>0){
$id=$parent_id;
$parent_id=$GLOBALS['content']['struct'][$id]['acat_struct'];
}


switch($id) {

// Für Ebene 0 ...
by cwenet
Sun 4. Dec 2005, 14:01
Forum: phpwcms Support English
Topic: Titelbilder mit PHP einbinden
Replies: 10
Views: 3216

Warum das so ist, kann ich nicht genau sagen. Bin auch kein PHP-Guru, eher ein Bastler.
Ich vermute aber mal, wenn man den PHP-Code mit [/PHP] beendet, gehen auch alle zuvor definierten Variablen verloren.
Mit sessions kannst Du das Ganze globaler gestalten.

Christoph
by cwenet
Sun 4. Dec 2005, 13:14
Forum: phpwcms Support English
Topic: Titelbilder mit PHP einbinden
Replies: 10
Views: 3216

Hallo Lümmel,

versuch das mal:

Code: Select all

<!-- Header-BILD --> 
<td width="610" bgcolor="#999999"> 

[PHP]$_SESSION['titelbild']= "Ein Test";[/PHP] 

[PHP]echo $_SESSION['titelbild'] [/PHP] 

</td> 
</tr>
Gruß
Christoph
by cwenet
Sun 4. Dec 2005, 09:46
Forum: phpwcms Support English
Topic: Titelbilder mit PHP einbinden
Replies: 10
Views: 3216

Hallo Lümmel,

das hier ist schon korrekt:

<!-- Header-BILD -->
<td width="610" bgcolor="#999999">

[PHP]$titelbild = "/am-odd/picture/header_uhr.jpg";[/PHP]

<img src="[PHP] echo $titelbild [/PHP]" width="610" height="140" alt="Titelbild" />

Aber was heißt: funktioniert nicht?
Irgendetwas ...
by cwenet
Wed 30. Nov 2005, 19:02
Forum: phpwcms Support English
Topic: email Kontaktformular
Replies: 2
Views: 1638

Hallo Tommi,

Deine Select Box heißt Container:
<select name="Container" id="Container">

In Deiner CSS Datei gibt es einen Style, ebenfalls mit Namen Container.

Dort ist auch ein hoher Wert bei Width eingetragen.

Gruß
Christoph
by cwenet
Thu 24. Nov 2005, 14:44
Forum: phpwcms Support English
Topic: edit-link für jeden artikel
Replies: 9
Views: 3801

Hallo sicko,

eine schöne Idee, gefällt mir. Damit der EDIT Link nur dann
sichtbar wird, wenn die ID einen Wert hat und
der "webmaster" eingeloggt ist, habe ich das noch versucht. Müsste gehen:

[PHP]
if (html_specialchars($_SESSION['wcs_user'])=="webmaster"){
$id = $GLOBALS['row']['article_id ...
by cwenet
Wed 23. Nov 2005, 16:12
Forum: phpwcms Support English
Topic: edit-link für jeden artikel
Replies: 9
Views: 3801

Hi,

vielleicht so etwas:

Code: Select all

<a href="phpwcms.php?do=articles&p=2&s=1&aktion=1&id=[PHP] echo $GLOBALS['row']['article_id'][/PHP]">edit</a>
Christoph
by cwenet
Fri 18. Nov 2005, 19:12
Forum: phpwcms Support English
Topic: How to completely hide menu-item in site structure?
Replies: 10
Views: 3828

Perhaps try this:

config\phpwcms\conf.template_default.inc.php

$template_default["nav_table_struct"]["show_active_hidden"] = 0;

Christoph
by cwenet
Thu 10. Nov 2005, 14:35
Forum: phpwcms Support English
Topic: News whitout a date on begining
Replies: 6
Views: 1843

Hi,

you have to edit this file:

config\phpwcms\conf.template_default.inc.php

Code: Select all

$template_default["news"]["date_format"]	= "Y/m/d"; //if empty -> no Date
There you can switch off date and manipulate the look of {NEW:X}

Christoph
by cwenet
Tue 8. Nov 2005, 18:05
Forum: hacks & enhancements Support
Topic: Calendar Mod v2.01 ionrock - v3 by volkman
Replies: 87
Views: 116749

Yes. The calendar works perfect in the frontend. But the edit links
aren't visible in the backend.

Here is a screenshot.

http://www.cwe24.com/cal-1.jpg

Christoph[/img]
by cwenet
Tue 8. Nov 2005, 17:36
Forum: hacks & enhancements Support
Topic: Calendar Mod v2.01 ionrock - v3 by volkman
Replies: 87
Views: 116749

Hi Volkman.

I have download the version 3.0 of the calendar.
There is a problem with the backend menu.

I can't see menu items like edit, delete, the months in the drop down, and so on.

What's wrong?

Christoph