Jump to content
xt:Commerce Community Forum

Artikelbeschreibungen werden nicht mehr Angezeigt


Marth

Recommended Posts

Guten Morgen,

ich habe das Problem, dass seit kurzem keine Artikelbeschreibungen mehr Angezeigt werden, wenn man auf einen Artikel klickt. Die Beschreibungen sind allerdings noch im Adminbereich vorhanden.

Ich bedanke mich im Voraus für eure Unterstützung

Gruß

Marth

Link to comment
Share on other sites

Hallo NilsK,

erstmal danke für die schnelle Antwort.

Ich meine die Artikelbeschreibung, die nicht angezeigt wird.

Ich habe vor kurzem ein wenig in der new_products_default.php rumgefuscht aber ich kann mir nicht vorstellen, dass es daran liegt. Außerdem sollte sie wieder so wie vorher sein.

Freundliche Grüße

Marth

Link to comment
Share on other sites

Hallo Marth,

Veyton ist sehr sehr sensible - eine kleine Änderung reicht schon, damit irgendetwas nicht mehr funktioniert.

Am besten die alten Originaldateien wieder einspielen und dann mal den Inhalt der Ordner Cache/templates_c bis auf die index-Dateien (.htaccess?) leeren sowie den Brwosercache leeren. Oder umgekehrt. ;)

Herzliche Grüße

Nils

Link to comment
Share on other sites

Hallo Nils

du wirst mich wahrscheinlich steinigen (zurech), aber es gibt kein BackUp (aus Fehlern lernt man). In der new_products_default.php wird der Link auf $module_data.PRODUCTS_LINK ich vermute mal darin liegt irgendwo der Fehler. Kannst du mir vlt. sagen wo ich diese Datei bzw. diesen Datensatz finde?

Dankbare Grüße

Marvin

Link to comment
Share on other sites

Hallo Marvin,

wenn Du die Hauptdateien nicht großartig geändert hast, kannst Du Dir ja noch mal die aktuelle Version runterladen und die Dateien vergleichen/austauschen...

Herzliche Grüße

Nils

PS: Kann hier leider keine php-Dateien hochladen.

Edit: Aber so gehts...

Datei: xt_new_products.php

<?php

/*

#########################################################################

# xt:Commerce VEYTON 4.0 Shopsoftware

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

#

# Copyright 2007-2011 xt:Commerce International Ltd. All Rights Reserved.

# This file may not be redistributed in whole or significant part.

# Content of this file is Protected By International Copyright Laws.

#

# ~~~~~~ xt:Commerce VEYTON 4.0 Shopsoftware IS NOT FREE SOFTWARE ~~~~~~~

#

# http://www.xt-commerce.com

#

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

#

# @version $Id: xt_new_products.php 4614 2011-03-30 16:47:04Z mzanier $

# @copyright xt:Commerce International Ltd., www.xt-commerce.com

#

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

#

# xt:Commerce International Ltd., Kafkasou 9, Aglantzia, CY-2112 Nicosia

#

# [email protected]

#

#########################################################################

*/

defined('_VALID_CALL') or die('Direct Access is not allowed.');

if (ACTIVATE_XT_NEW_PRODUCTS_PAGE == 'true'){

global $current_category_id;

require_once _SRV_WEBROOT._SRV_WEB_PLUGINS.'/xt_new_products/classes/class.new_products.php';

$days = XT_NEW_PRODUCTS_PAGE_DAYS;

$limit = XT_NEW_PRODUCTS_PAGE_LIMIT;

$order_by = 'p.date_added DESC';

if ($params['order_by'])

$order_by = $params['order_by'];

($plugin_code = $xtPlugin->PluginCode('plugin_xt_new_products.php:data_array')) ? eval($plugin_code) : false;

$new_products_page_data_array = array('limit'=> $limit,

'sorting' => $order_by,

'days' => $days);

$new_products_page = new new_products($current_category_id);

$new_products_page_list = $new_products_page->getNewProductListing($new_products_page_data_array);

$tpl_data = array('heading_text' => TEXT_NEW_PRODUCTS,

'product_listing' => $new_products_page_list,

'NAVIGATION_COUNT' => $new_products_page->navigation_count,

'NAVIGATION_PAGES' => $new_products_page->navigation_pages);

$tpl = XT_NEW_PRODUCTS_PAGE_TPL;

if(!empty($params['tpl'])){

$tpl = $params['tpl'];

}else{

$params['tpl'] = $tpl;

}

if($current_category_id=='' && is_object($brotkrumen)){

$brotkrumen->_addItem($xtLink->_link(array('page'=>'xt_new_products')),TEXT_NEW_PRODUCTS);

}

$template = new Template();

($plugin_code = $xtPlugin->PluginCode('plugin_xt_new_products.php:tpl_data')) ? eval($plugin_code) : false;

$page_data = $template->getTemplate('xt_new_products_smarty', '/'._SRV_WEB_CORE.'pages/product_listing/'.$tpl, $tpl_data);

}else{

$show_page = false;

}

?>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...