+ Antworten
Ergebnis 1 bis 8 von 8

Thema: News Darstellung auf der Startseite ändern

  1. #1
    Puschelbaer
    Gast

    Standard News Darstellung auf der Startseite ändern

    Ich suche eine Möglichkeit die News der Startseite wie folgt aussehen zu lassen:

    11.01.07 (10.00Uhr) - Newstitel
    11.01.07 (11.05Uhr) - Newstitel

    usw.

    Die Paramtereinstellungen der Frontpage erlauben zwar viele Varianten, leider aber nicht diese.
    Kann mir jemand einen Tipp geben wie ich meinen Wunsch umsetzen kann?

    Die News müssen aus verschiedenen Kategorien übernommen werden können.

    MFG Puschelbaer

  2. #2
    Hat hier eine Zweitwohnung Avatar von sponge
    Registriert seit
    14.11.2005
    Ort
    Rott / Oberbayern
    Alter
    47
    Beiträge
    1.526
    Bedankte sich
    98
    Erhielt 407 Danksagungen
    in 382 Beiträgen

    Standard

    Zitat Zitat von Puschelbaer Beitrag anzeigen
    Ich suche eine Möglichkeit die News der Startseite wie folgt aussehen zu lassen:

    11.01.07 (10.00Uhr) - Newstitel
    11.01.07 (11.05Uhr) - Newstitel

    usw.

    Die Paramtereinstellungen der Frontpage erlauben zwar viele Varianten, leider aber nicht diese.
    Kann mir jemand einen Tipp geben wie ich meinen Wunsch umsetzen kann?

    Die News müssen aus verschiedenen Kategorien übernommen werden können.

    MFG Puschelbaer
    du willst also nur die Überschriften da stehen haben, verstehe ich das richtig?
    Gelöste Threads bitte markieren
    PM's werden nicht beantwortet!

  3. #3
    Gehört zum Inventar Avatar von deejey
    Registriert seit
    22.04.2006
    Ort
    HH
    Beiträge
    9.309
    Bedankte sich
    509
    Erhielt 1.791 Danksagungen
    in 1.583 Beiträgen

    Standard

    probiere latestnews_extbyday, beliebige sections + categories, individuelles Zeitformat, Uhrzeit abschaltbar, mit/ohne Anzeige der Kategorie, hier downloadquelle, Ansicht auf Startseite
    Kein Support über PM; Ignoriermodus aktiv bei "dringend", "schnell", "eilt", denn: Zeit ist relativ

  4. Erhielt Danksagungen von:


  5. #4
    Puschelbaer
    Gast

    Standard

    Das Modul sieht schon richtig gut aus!!
    Genauso wollte ich das gerne haben.
    Jetzt habe ich allerdings noch 1 kleines Probleme.



    Konnte das Modul so anpassen, Das zwischen dem Datum und der ersten News ein abstand ist.
    Mir fehlt jetzt noch ein Abstand nach der letzten News und des nächsten Tages.

    kann mir bitte mal jemand helfen?!?!

    Hier der Code:

    PHP-Code:
    <?php
    /**
    * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
    * Created and Modified by www.hieblmedia.de 
    */

    /** ensure this file is being included by a parent file */
    defined'_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
    global 
    $mosConfig_offset$mosConfig_live_site$mainframe;

    $type         intval$params->get'type') );
    $count         intval$params->get'count') );
    $count         intval$params->get'count') );
    $catid         trim$params->get'catid' ) );
    $secid         trim$params->get'secid' ) );
    $group_by_day $params->get'group_by_day');
    $show_front    $params->get'show_front');
    $class_sfx    $params->get'moduleclass_sfx' );
    $viewcontenttime $params->get'viewcontenttime');
    $dateformat $params->get'dateformat''%A, %d. %B %Y');
    $ofdate $params->get'ofdate'0);
    $todate $params->get'todate'0);
    $sortdateby $params->get'sortdateby'1);
    $cat_prefix $params->get'cat_prefix'0);
    $cat_prefix_seperator $params->get'cat_prefix_seperator'':');
    $cat_prefix_linkable $params->get'cat_prefix_linkable'1);

    $now         date'Y-m-d H:i:s'time() + $mosConfig_offset 60 60 );

    $access = !$mainframe->getCfg'shownoauth' );

    // select between Content Items, Static Content or both
    switch ( $type ) {
        case 
    2//Static Content only
            
    $query "SELECT a.id, a.title, a.modified, a.created"
            
    "\n FROM #__content AS a"
            
    "\n WHERE ( a.state = '1' AND a.checked_out = '0' AND a.sectionid = '0' )"
            
    "\n AND ( a.publish_up = '0000-00-00 00:00:00' OR a.publish_up <= '"$now ."' )"
            
    "\n AND ( a.publish_down = '0000-00-00 00:00:00' OR a.publish_down >= '"$now ."' )"
            
    . ( $ofdate "\n AND a.created >= '".$ofdate."'" '' )
            . ( 
    $todate "\n AND a.created <= '".$todate."'" '' )
            . ( 
    $access "\n AND a.access <= '"$my->gid ."'" '' )
            . 
    "\n ORDER BY a.created DESC LIMIT $count"
            
    ;
            
    $database->setQuery$query );
            
    $rows $database->loadObjectList();
            break;

        case 
    3//Both
            
    $query "SELECT a.id, a.title, a.sectionid, a.modified, a.created"
            
    "\n FROM #__content AS a"

            
    "\n WHERE ( a.state = '1' AND a.checked_out = '0' )"
            
    "\n AND ( a.publish_up = '0000-00-00 00:00:00' OR a.publish_up <= '"$now ."' )"
            
    "\n AND ( a.publish_down = '0000-00-00 00:00:00' OR a.publish_down >= '"$now ."' )"
            
    . ( $ofdate "\n AND a.created >= '".$ofdate."'" '' )
            . ( 
    $todate "\n AND a.created <= '".$todate."'" '' )
            . ( 
    $access "\n AND a.access <= '"$my->gid ."'" '' )
            . 
    "\n ORDER BY a.created DESC LIMIT $count"
            
    ;
            
    $database->setQuery$query );
            
    $rows $database->loadObjectList();
            break;

        case 
    1:  //Content Items only
        
    default:
            
    $query "SELECT a.id, a.title, a.sectionid, a.catid, a.modified, a.created"
            
    "\n FROM #__content AS a"
            
    "\n LEFT JOIN #__content_frontpage AS f ON f.content_id = a.id"
            
    "\n WHERE ( a.state = '1' AND a.checked_out = '0' AND a.sectionid > '0' )"
            
    "\n AND ( a.publish_up = '0000-00-00 00:00:00' OR a.publish_up <= '"$now ."' )"
            
    "\n AND ( a.publish_down = '0000-00-00 00:00:00' OR a.publish_down >= '"$now ."' )"
            
    . ( $ofdate "\n AND a.created >= '".$ofdate."'" '' )
            . ( 
    $todate "\n AND a.created <= '".$todate."'" '' )
            . ( 
    $access "\n AND a.access <= '"$my->gid ."'" '' )
            . ( 
    $catid "\n AND ( a.catid IN ("$catid .") )" '' )
            . ( 
    $secid "\n AND ( a.sectionid IN ("$secid .") )" '' )
            . ( 
    $show_front == "0" "\n AND f.content_id IS NULL" '' )
            . 
    "\n ORDER BY a.created DESC LIMIT $count"
            
    ;
            
    $database->setQuery$query );
            
    $rows $database->loadObjectList();
            break;
    }

    // needed to reduce queries used by getItemid for Content Items
    if ( ( $type == ) || ( $type == ) ) {
        
    $bs     $mainframe->getBlogSectionCount();
        
    $bc     $mainframe->getBlogCategoryCount();
        
    $gbs     $mainframe->getGlobalBlogSectionCount();
    }

    // Output
    ?>
    <br /><div class="latestnews<?php echo $class_sfx?>">
        <?php
        
    foreach ( $rows as $row ) {
            
    // get Itemid
            
    switch ( $type ) {
                case 
    2:
                    
    $query "SELECT id"
                    
    "\n FROM #__menu"
                    
    "\n WHERE type = 'content_typed'"
                    
    "\n AND componentid = $row->id"
                    
    ;
                    
    $database->setQuery$query );
                    
    $Itemid $database->loadResult();
                    break;
        
                case 
    3:
                    if ( 
    $row->sectionid ) {
                        
    $Itemid $mainframe->getItemid$row->id00$bs$bc$gbs );
                    } else {
                        
    $query "SELECT id"
                        
    "\n FROM #__menu"
                        
    "\n WHERE type = 'content_typed'"
                        
    "\n AND componentid = $row->id"
                        
    ;
                        
    $database->setQuery$query );
                        
    $Itemid $database->loadResult();
                    }
                    break;
        
                case 
    1:
                default:
                    
    $Itemid $mainframe->getItemid$row->id00$bs$bc$gbs );
                    break;
            }
        

            if (
    $cat_prefix) {
                if ( 
    $cat_prefix == 1$select 'name';
                if ( 
    $cat_prefix == 2$select 'title';
                    
    $query "SELECT $select"
                    
    "\n FROM #__categories"
                    
    "\n WHERE id = '$row->catid'"
                    
    ;
                    
    $database->setQuery$query );
                    
    $cat_prefix_txt $database->loadResult();
                    
                    if (
    $cat_prefix_txt) { 
                        if (
    $cat_prefix_linkable) {
                            
    $cat_prefix_view '<span class="cat_prefix"><a href="index.php?option=com_content&task=category&id='.$row->catid.'&Itemid=127">'.$cat_prefix_txt.'</a> '.$cat_prefix_seperator.'</span> ';
                        } else {
                            
    $cat_prefix_view '<span class="cat_prefix">'.$cat_prefix_txt.' '.$cat_prefix_seperator.'</span> ';                    
                        }
                    } 
            }
                
            if (
    $group_by_day) {    
                
    // Blank itemid checker for SEF
                
    if ($Itemid == NULL) {
                    
    $Itemid '';
                } else {
                    
    $Itemid '&amp;Itemid='$Itemid;
                }
            
                
    $link sefRelToAbs'index.php?option=com_content&amp;task=view&amp;id='$row->id $Itemid );
                if (
    $sortdateby) {
                    if(
    $row->modified $row->created) {
                        
    $rowdate explode("-"$row->modified);
                    } else {
                        
    $rowdate explode("-"$row->created);
                    }
                } else {
                        
    $rowdate explode("-"$row->created);            
                }
                
    // Split date
                
    $rowdate2 explode(" "$rowdate[2]);
                
    $rowtime explode(":"$rowdate2[1]);
                
    $rowdatearray = array('year'=>$rowdate[0], 'month'=>$rowdate[1], 'day'=>$rowdate2[0], 'hour'=>$rowtime[0],'min'=>$rowtime[1],'sec'=>$rowtime[2] );
                
    $rowtimeview $rowdatearray['hour'].':'.$rowdatearray['min'];
                
    $rowdateview $rowdatearray['year'].'-'.$rowdatearray['month'].'-'.$rowdatearray['day'];
                
    // end split
                
    if  ($lastdate!=$rowdateview) {         
                    echo (
    '<div class="latestnewsday'.$class_sfx.'">'.strftime("$dateformat"mktime(000$rowdatearray['month'], $rowdatearray['day'], $rowdatearray['year'])).'</div><br/>');
                }
                else { echo 
    '';}
                
    $lastdate $rowdatearray['year'].'-'.$rowdatearray['month'].'-'.$rowdatearray['day'];
                
                            echo 
    '<div class="latestnews'.$class_sfx.'" style="margin-left:10px; border-bottom:1px solid #cccccc; display:block; width:70%">';
                echo 
    $cat_prefix_view;
                if (
    $viewcontenttime) { echo $rowtimeview.' - ' ; } 
                echo 
    '<a href="'.$link.'" class="latestnews'.$class_sfx.'">';
                echo 
    $row->title;
                echo 
    '</a></div>';

            } else {
                
    // Blank itemid checker for SEF
                
    if ($Itemid == NULL) {
                    
    $Itemid '';
                } else {
                    
    $Itemid '&amp;Itemid='$Itemid;
                }
            
                
    $link sefRelToAbs'index.php?option=com_content&amp;task=view&amp;id='$row->id $Itemid );
                
                echo 
    '<div class="latestnews'.$class_sfx.'" style="padding-left:5px;">';
                echo 
    $cat_prefix_view;
                if(
    $row->modified $row->created) {
                    echo 
    $row->modified;
                } else {
                    echo 
    $row->created;
                }
                
                echo 
    ' <a href="'.$link.'" class="latestnews'.$class_sfx.'">'.$row->title.'</a></div><br />';            
            }
        
        }
        
    ?>
    </div>

  6. #5
    Puschelbaer
    Gast

    Standard

    Hat sich erledigt.
    Für User die Interesse haben:

    PHP-Code:
    <?php
    /**
    * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
    * Created and Modified by www.hieblmedia.de 
    */

    /** ensure this file is being included by a parent file */
    defined'_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
    global 
    $mosConfig_offset$mosConfig_live_site$mainframe;

    $type         intval$params->get'type') );
    $count         intval$params->get'count') );
    $count         intval$params->get'count') );
    $catid         trim$params->get'catid' ) );
    $secid         trim$params->get'secid' ) );
    $group_by_day $params->get'group_by_day');
    $show_front    $params->get'show_front');
    $class_sfx    $params->get'moduleclass_sfx' );
    $viewcontenttime $params->get'viewcontenttime');
    $dateformat $params->get'dateformat''%A, %d. %B %Y');
    $ofdate $params->get'ofdate'0);
    $todate $params->get'todate'0);
    $sortdateby $params->get'sortdateby'1);
    $cat_prefix $params->get'cat_prefix'0);
    $cat_prefix_seperator $params->get'cat_prefix_seperator'':');
    $cat_prefix_linkable $params->get'cat_prefix_linkable'1);

    $now         date'Y-m-d H:i:s'time() + $mosConfig_offset 60 60 );

    $access = !$mainframe->getCfg'shownoauth' );

    // select between Content Items, Static Content or both
    switch ( $type ) {
        case 
    2//Static Content only
            
    $query "SELECT a.id, a.title, a.modified, a.created"
            
    "\n FROM #__content AS a"
            
    "\n WHERE ( a.state = '1' AND a.checked_out = '0' AND a.sectionid = '0' )"
            
    "\n AND ( a.publish_up = '0000-00-00 00:00:00' OR a.publish_up <= '"$now ."' )"
            
    "\n AND ( a.publish_down = '0000-00-00 00:00:00' OR a.publish_down >= '"$now ."' )"
            
    . ( $ofdate "\n AND a.created >= '".$ofdate."'" '' )
            . ( 
    $todate "\n AND a.created <= '".$todate."'" '' )
            . ( 
    $access "\n AND a.access <= '"$my->gid ."'" '' )
            . 
    "\n ORDER BY a.created DESC LIMIT $count"
            
    ;
            
    $database->setQuery$query );
            
    $rows $database->loadObjectList();
            break;

        case 
    3//Both
            
    $query "SELECT a.id, a.title, a.sectionid, a.modified, a.created"
            
    "\n FROM #__content AS a"

            
    "\n WHERE ( a.state = '1' AND a.checked_out = '0' )"
            
    "\n AND ( a.publish_up = '0000-00-00 00:00:00' OR a.publish_up <= '"$now ."' )"
            
    "\n AND ( a.publish_down = '0000-00-00 00:00:00' OR a.publish_down >= '"$now ."' )"
            
    . ( $ofdate "\n AND a.created >= '".$ofdate."'" '' )
            . ( 
    $todate "\n AND a.created <= '".$todate."'" '' )
            . ( 
    $access "\n AND a.access <= '"$my->gid ."'" '' )
            . 
    "\n ORDER BY a.created DESC LIMIT $count"
            
    ;
            
    $database->setQuery$query );
            
    $rows $database->loadObjectList();
            break;

        case 
    1:  //Content Items only
        
    default:
            
    $query "SELECT a.id, a.title, a.sectionid, a.catid, a.modified, a.created"
            
    "\n FROM #__content AS a"
            
    "\n LEFT JOIN #__content_frontpage AS f ON f.content_id = a.id"
            
    "\n WHERE ( a.state = '1' AND a.checked_out = '0' AND a.sectionid > '0' )"
            
    "\n AND ( a.publish_up = '0000-00-00 00:00:00' OR a.publish_up <= '"$now ."' )"
            
    "\n AND ( a.publish_down = '0000-00-00 00:00:00' OR a.publish_down >= '"$now ."' )"
            
    . ( $ofdate "\n AND a.created >= '".$ofdate."'" '' )
            . ( 
    $todate "\n AND a.created <= '".$todate."'" '' )
            . ( 
    $access "\n AND a.access <= '"$my->gid ."'" '' )
            . ( 
    $catid "\n AND ( a.catid IN ("$catid .") )" '' )
            . ( 
    $secid "\n AND ( a.sectionid IN ("$secid .") )" '' )
            . ( 
    $show_front == "0" "\n AND f.content_id IS NULL" '' )
            . 
    "\n ORDER BY a.created DESC LIMIT $count"
            
    ;
            
    $database->setQuery$query );
            
    $rows $database->loadObjectList();
            break;
    }

    // needed to reduce queries used by getItemid for Content Items
    if ( ( $type == ) || ( $type == ) ) {
        
    $bs     $mainframe->getBlogSectionCount();
        
    $bc     $mainframe->getBlogCategoryCount();
        
    $gbs     $mainframe->getGlobalBlogSectionCount();
    }

    // Output
    ?>
    <br /><div class="latestnews<?php echo $class_sfx?>">
        <?php
        
    foreach ( $rows as $row ) {
            
    // get Itemid
            
    switch ( $type ) {
                case 
    2:
                    
    $query "SELECT id"
                    
    "\n FROM #__menu"
                    
    "\n WHERE type = 'content_typed'"
                    
    "\n AND componentid = $row->id"
                    
    ;
                    
    $database->setQuery$query );
                    
    $Itemid $database->loadResult();
                    break;
        
                case 
    3:
                    if ( 
    $row->sectionid ) {
                        
    $Itemid $mainframe->getItemid$row->id00$bs$bc$gbs );
                    } else {
                        
    $query "SELECT id"
                        
    "\n FROM #__menu"
                        
    "\n WHERE type = 'content_typed'"
                        
    "\n AND componentid = $row->id"
                        
    ;
                        
    $database->setQuery$query );
                        
    $Itemid $database->loadResult();
                    }
                    break;
        
                case 
    1:
                default:
                    
    $Itemid $mainframe->getItemid$row->id00$bs$bc$gbs );
                    break;
            }
        

            if (
    $cat_prefix) {
                if ( 
    $cat_prefix == 1$select 'name';
                if ( 
    $cat_prefix == 2$select 'title';
                    
    $query "SELECT $select"
                    
    "\n FROM #__categories"
                    
    "\n WHERE id = '$row->catid'"
                    
    ;
                    
    $database->setQuery$query );
                    
    $cat_prefix_txt $database->loadResult();
                    
                    if (
    $cat_prefix_txt) { 
                        if (
    $cat_prefix_linkable) {
                            
    $cat_prefix_view '<span class="cat_prefix"><a href="index.php?option=com_content&task=category&id='.$row->catid.'&Itemid=127">'.$cat_prefix_txt.'</a> '.$cat_prefix_seperator.'</span> ';
                        } else {
                            
    $cat_prefix_view '<span class="cat_prefix">'.$cat_prefix_txt.' '.$cat_prefix_seperator.'</span> ';                    
                        }
                    } 
            }
                
            if (
    $group_by_day) {    
                
    // Blank itemid checker for SEF
                
    if ($Itemid == NULL) {
                    
    $Itemid '';
                } else {
                    
    $Itemid '&amp;Itemid='$Itemid;
                }
            
                
    $link sefRelToAbs'index.php?option=com_content&amp;task=view&amp;id='$row->id $Itemid );
                if (
    $sortdateby) {
                    if(
    $row->modified $row->created) {
                        
    $rowdate explode("-"$row->modified);
                    } else {
                        
    $rowdate explode("-"$row->created);
                    }
                } else {
                        
    $rowdate explode("-"$row->created);            
                }
                
    // Split date
                
    $rowdate2 explode(" "$rowdate[2]);
                
    $rowtime explode(":"$rowdate2[1]);
                
    $rowdatearray = array('year'=>$rowdate[0], 'month'=>$rowdate[1], 'day'=>$rowdate2[0], 'hour'=>$rowtime[0],'min'=>$rowtime[1],'sec'=>$rowtime[2] );
                
    $rowtimeview $rowdatearray['hour'].':'.$rowdatearray['min'];
                
    $rowdateview $rowdatearray['year'].'-'.$rowdatearray['month'].'-'.$rowdatearray['day'];
                
    // end split
                
    if  ($lastdate!=$rowdateview) {         
                    echo (
    '<div class="latestnewsday'.$class_sfx.'"><br/>'.strftime("$dateformat"mktime(000$rowdatearray['month'], $rowdatearray['day'], $rowdatearray['year'])).'</div><br/>');
                }
                else { echo 
    '';}
                
    $lastdate $rowdatearray['year'].'-'.$rowdatearray['month'].'-'.$rowdatearray['day'];
                
                            echo 
    '<div class="latestnews'.$class_sfx.'" style="margin-left:10px; border-bottom:1px solid #cccccc; display:block; width:70%">';
                echo 
    $cat_prefix_view;
                if (
    $viewcontenttime) { echo $rowtimeview.' - ' ; } 
                echo 
    '<a href="'.$link.'" class="latestnews'.$class_sfx.'">';
                echo 
    $row->title;
                echo 
    '</a></div>';

            } else {
                
    // Blank itemid checker for SEF
                
    if ($Itemid == NULL) {
                    
    $Itemid '';
                } else {
                    
    $Itemid '&amp;Itemid='$Itemid;
                }
            
                
    $link sefRelToAbs'index.php?option=com_content&amp;task=view&amp;id='$row->id $Itemid );
                
                echo 
    '<div class="latestnews'.$class_sfx.'" style="padding-left:5px;">';
                echo 
    $cat_prefix_view;
                if(
    $row->modified $row->created) {
                    echo 
    $row->modified;
                } else {
                    echo 
    $row->created;
                }
                
                echo 
    ' <a href="'.$link.'" class="latestnews'.$class_sfx.'">'.$row->title.'</a></div><br />';            
            }
        
        }
        
    ?>
    </div>
    MFG Puschelbaer

  7. Erhielt Danksagungen von:


  8. #6
    Kommt häufiger vorbei Avatar von heffas
    Registriert seit
    01.10.2006
    Ort
    Köln
    Alter
    35
    Beiträge
    298
    Bedankte sich
    28
    Erhielt 9 Danksagungen
    in 9 Beiträgen

    Standard Toll

    ja, klappt gut.
    Thx, fürs den fix...

  9. #7
    Wohnt hier
    Registriert seit
    17.06.2005
    Beiträge
    2.136
    Bedankte sich
    81
    Erhielt 380 Danksagungen
    in 331 Beiträgen

    Standard

    Moin
    gewöhnt euch an, auch zu schreiben, was und wo genau geändert wurde.
    Danke
    Dies sollte jeder zuerst lesen, bevor er was fragt:
    SUCHEN-LESEN-FRAGEN

  10. #8
    Kommt häufiger vorbei Avatar von heffas
    Registriert seit
    01.10.2006
    Ort
    Köln
    Alter
    35
    Beiträge
    298
    Bedankte sich
    28
    Erhielt 9 Danksagungen
    in 9 Beiträgen

    Standard

    jo stimmt, sonst hats bei mir zumindest keine lerneffekt

    ne andere frage zu dem mod:
    ich möchte diese schreckliche engl./amerikanische datumsanzeige auf deutsch haben.
    das das jahr 2007 muss ich nicht als erstes lesen das weiß ich meißtens auch so ; )

    auf www.php.net/manuals.date.php
    steht zwar eine verständliche liste der befehle, wenn ich die aber im modul ändere wird das datim nach wie vor "falsch" herum angezeigt.

    in der datei mod_latestnews_extbyday.php hab ich mal:
    $now = date( 'd-m-Y H:i:s', (geändert bringt aber auch nichts)
    ___
    in der zeile:
    $dateformat = $params->get( 'dateformat', '%a, %d. %B %Y');
    sollte doch jetzt nach meinem verständniss am oder pm stehen (so stehts zumindest hier in der liste was der rückgabewert sei)
    www.php.net/manuals.date.php

    jemand nen tipp?
    thx..
    grüße

+ Antworten

Ähnliche Themen

  1. News immer auch auf der Frontpage anzeigen lassen
    Von gnrmarcel im Forum Allgemeine Fragen zu Joomla
    Antworten: 2
    Letzter Beitrag: 16.05.2006, 06:31
  2. Text auf der Startseite und News Kategorie
    Von grummler im Forum Allgemeine Fragen zu Mambo
    Antworten: 6
    Letzter Beitrag: 27.09.2005, 02:40
  3. News auf der Startseite einrichten
    Von Fragezeichen im Forum Allgemeine Fragen zu Mambo
    Antworten: 2
    Letzter Beitrag: 29.08.2005, 13:36
  4. News auf Startseite?!?!
    Von Winzer im Forum Allgemeine Fragen zu Mambo
    Antworten: 1
    Letzter Beitrag: 31.05.2005, 15:28
  5. NEWS auf Startseite
    Von ndee im Forum Allgemeine Fragen zu Mambo
    Antworten: 0
    Letzter Beitrag: 14.05.2005, 16:19

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein