Bestseller werden nicht angezeigt!

Hi Leute,

ich hab die Aktion ‘Bestseller’ in eine extra Kategorie eingebaut. Dazu habe ich die oxview.php angepasst und so weite. Habe auch im Backend die ‘Aktionen laden’ angeschaltet und Bestseller auf manuell gestellt. Dennoch werden mir die zugewiesenen Artikel nicht angezeigt.

Hier mal die Dateien:

oxview.php:

<?php
/**
 *    This file is part of OXID eShop Community Edition.
 *
 *    OXID eShop Community Edition is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation, either version 3 of the License, or
 *    (at your option) any later version.
 *
 *    OXID eShop Community Edition is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with OXID eShop Community Edition.  If not, see <http://www.gnu.org/licenses/>.
 *
 * @link http://www.oxid-esales.com
 * @package views
 * @copyright (C) OXID eSales AG 2003-2009
 * @version OXID eShop CE
 * $Id: oxview.php 22072 2009-09-02 10:19:07Z arvydas $
 */

/**
 * Base view class. Collects and passes data to template engine, sets some global
 * configuration parameters.
 */
class oxView extends oxSuperCfg
{
    /**
     * Array of data that is passed to template engine - array( "varName" => "varValue").
     *
     * @var array
     */
    protected $_aViewData = array();

    /**
     * Location of a executed class file.
     *
     * @var string
     */
    protected $_sClassLocation = null;

/*#####################################################################
#######################################################################
###############################EINGEFÜGT##############################
#######################################################################
#####################################################################*/

	/**
     * Top article list (OXTOPSTART)
     *
     * @var array
     */
    protected $_aTopArticleList = null;

/*#####################################################################
#######################################################################
###############################EINGEFÜGT##############################
#######################################################################
#####################################################################*/

    /**
     * Name of running class method.
     *
     * @var string
     */
    protected $_sThisAction = null;

    /**
     * If this is a component we will have our parent view here.
     *
     * @var oxview
     */
    protected $_oParent = null;

    /**
     * Flag if this objcet is a component or not
     *
     * @var bool
     */
    protected $_blIsComponent = false;

    /**
     * Name of template file to render.
     *
     * @var string
     */
    protected $_sThisTemplate = null;

[...]GEKÜRZT FÜR THREAD[/...]

/*#####################################################################
#######################################################################
###############################EINGEFÜGT##############################
#######################################################################
#####################################################################*/
	/**
     * Template variable getter. Returns if actions are ON
     *
     * @return string
     */
    protected function _getLoadActionsParam()
    {
        if ( $this->_blLoadActions === null ) {
            $this->_blLoadActions = false;
            if ( $this->getConfig()->getConfigParam( 'bl_perfLoadAktion' ) ) {
                $this->_blLoadActions = true;
            }
        }
        return $this->_blLoadActions;
    }
/*#####################################################################
#######################################################################
###############################EINGEFÜGT##############################
#######################################################################
#####################################################################*/

/*#####################################################################
#######################################################################
###############################EINGEFÜGT##############################
#######################################################################
#####################################################################*/


	/**
     * Template variable getter. Returns Top article list (OXTOPSTART)
     *
     * @return array
     */
    public function getTopArticleList()
    {
        if ( $this->_aTopArticleList === null ) {
            $this->_aTopArticleList = false;
            if ( $this->_getLoadActionsParam() ) {
                // start list
                $oArtList = oxNew( 'oxarticlelist' );
                $oArtList->loadAktionArticles( 'OXTOPSTART' );
                if ( $oArtList->count() ) {
                    $this->_aTopArticleList = $oArtList;
                }
            }
        }
        return $this->_aTopArticleList;
    }
	
/*#####################################################################
#######################################################################
###############################EINGEFÜGT##############################
#######################################################################
#####################################################################*/

    /**
     * Returns a name of the view variable containing the error/exception messages
     *
     * @return null
     */
    public function getErrorDestination()
    {
    }
}

Kategorie-Langtext:

[{if $oView->getTopArticleList() }]
  [{foreach from=$oView->getTopArticleList() item=actionproduct name=WeekArt}]
    [{include file="inc/product.tpl" product=$actionproduct showMainLink=true head="START_WEEKSPECIAL"|oxmultilangassign testid="WeekSpecial_"|cat:$actionproduct->oxarticles__oxid->value testHeader="WeekSpecial_`$smarty.foreach.WeekArt.iteration`"}]
  [{/foreach}]
[{/if}]

Gruß und Danke schonmal
Markus

Weiß niemand ne Lösung? :frowning: Wäre echt wichtig!! Ich komm leider nicht weiter!

Mir hätte ja ruhig mal jemand sagen können, dass TopArticleList für die Top-Angebote steht und nicht für die Bestseller!

Mann Mann Mann… blind bin

Weiß jemand, wo die view für die Top5 definiert wird?