Jump to content
xt:Commerce Community Forum

Artikelliste "n?chste Seite"


Recommended Posts

Hallo!

Ich habe ein Problem mit der Artikelliste.

Bei sehr vielen Artikel einer Kategorie (in meinem Fall Buttons), werden diese ja in mehrere Seiten aufgegliedert. Wenn ich im Shop nun "n?chste Seite" oder die Seitenzahl anklicke, springt er zur Startseite des Shops. Wie und wo kann ich das ?ndern?

Danke,

bedwyrr

Link to comment
Share on other sites

ersetzt mal diese Datei inc/xtc_get_all_get_params.inc.php

mit diesem Inhalt:


<?php

/* -----------------------------------------------------------------------------------------

  $Id: xtc_get_all_get_params.inc.php 1237 2005-09-23 14:56:52Z mz $ 


  XT-Commerce - community made shopping

  http://www.xt-commerce.com


  Copyright (c) 2003 XT-Commerce

  -----------------------------------------------------------------------------------------

  based on:

  (c) 2000-2001 The Exchange Project (earlier name of osCommerce)

  (c) 2002-2003 osCommerce(general.php,v 1.225 2003/05/29); [url]www.oscommerce.com[/url]

  (c) 2003   nextcommerce (xtc_get_all_get_params.inc.php,v 1.3 2003/08/13); [url]www.nextcommerce.org[/url]


  Released under the GNU General Public License

  ---------------------------------------------------------------------------------------*/


 function xtc_get_all_get_params($exclude_array = '') {

   global $InputFilter;


  if (!is_array($exclude_array)) $exclude_array = array();


  $get_url = '';

  if (is_array($_GET) && (sizeof($_GET) > 0)) {

   reset($_GET);

   while (list($key, $value) = each($_GET)) {

//    if ( (strlen($value) > 0) && ($key != xtc_session_name()) && ($key != 'error') && ($key != 'cPath') && (!in_array($key, $exclude_array)) && ($key != 'x') && ($key != 'y') ) {

    if ( (strlen($value) > 0) && ($key != xtc_session_name()) && ($key != 'error') && (!in_array($key, $exclude_array)) && ($key != 'x') && ($key != 'y') ) {

     $get_url .= rawurlencode(stripslashes($key)) . '=' . rawurlencode(stripslashes($value)) . '&';

    }

   }

  }


  return $get_url;

 }

?>

ich hab die originale Zeile die ich modifiziert habe, dr?ber als Kommentar stehen...

Versuchs mal damit :)

Gru?

Link to comment
Share on other sites

Archived

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

×
  • Create New...