Ankündigung

Einklappen
Keine Ankündigung bisher.

Konfiguration Artikelliste

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    #16
    so, bei mir arbeitet es, wie ich möchte, d.h. nach meinen Bedürfnissen.

    Ich weiß nur nicht, ob es so brauchbar ist.

    Ich musste etwas auskommandieren, um die errorlogs loszuwerden.
    Code:
    [COLOR=#008000][FONT=Ubuntu][FONT=Ubuntu]Pfad: Catalog/includes/modules/DEINTEMPLATE[/FONT][/FONT][/COLOR]
    
    [COLOR=#008000][FONT=Ubuntu][FONT=Ubuntu]// product_listing.php[/FONT][/FONT][/COLOR]
    [COLOR=#008000][FONT=Ubuntu][FONT=Ubuntu]<--1.5.3 Zeile 23-->[/FONT][/FONT][/COLOR]
    [COLOR=#333333][FONT=Ubuntu][FONT=Ubuntu]$listing_split = new splitPageResults($listing_sql, MAX_DISPLAY_PRODUCTS_LISTING, 'p.products_id', 'page');[/FONT][/FONT][/COLOR]
    [COLOR=#008000][FONT=Ubuntu][FONT=Ubuntu]<--Modul-->[/FONT][/FONT][/COLOR]
    [COLOR=#333333][FONT=Ubuntu][FONT=Ubuntu]kein Eintrag[/FONT][/FONT][/COLOR]
    Pfad: Catalog/includes/modules/pages/product_listining/product_listing.php
    Code:
     $check_products_all = $db->Execute($featured_products_split->sql_query);  $how_many = 0;
      while (!$check_products_all->EOF) {
        if (zen_has_product_attributes($check_products_all->fields['products_id'])) {
        } else {
          // needs a better check v1.3.1
          if ($check_products_all->fields['products_qty_box_status'] != 0) {
            if (zen_get_products_allow_add_to_cart($check_products_all->fields['products_id']) !='N') {
              if ($check_products_all->fields['product_is_call'] == 0) {
                if ((SHOW_PRODUCTS_SOLD_OUT_IMAGE == 1 and $check_products_all->fields['products_quantity'] > 0) or SHOW_PRODUCTS_SOLD_OUT_IMAGE == 0) {
                  if ($check_products_all->fields['products_type'] != 3) {
                    if (zen_has_product_attributes($check_products_all->fields['products_id']) < 1) {
                      $how_many++;
                    }
                  }
                }
              }
            }
          }
        }
        $check_products_all->MoveNext();
      }
    neu
    Code:
    // check how many rows 
          // needs a better check v1.3.1
          if ($check_products_all->fields['products_qty_box_status'] != 0) {
            if (zen_get_products_allow_add_to_cart($check_products_all->fields['products_id']) !='N') {
              if ($check_products_all->fields['product_is_call'] == 0) {
                if ((SHOW_PRODUCTS_SOLD_OUT_IMAGE == 1 and $check_products_all->fields['products_quantity'] > 0) or SHOW_PRODUCTS_SOLD_OUT_IMAGE == 0) {
                  if ($check_products_all->fields['products_type'] != 3) {
                    if (zen_has_product_attributes($check_products_all->fields['products_id']) < 1) {
                      $how_many++;
                    }
                  }
                }
              }
            }
          }
        }
    wozu diese Einträge da sind, weiß ich nicht. Die Templatedateien muss man so übernehmen, wie sie sind, sonst wird nichts angezeigt, (Könnte auch sein, ich kann nicht mergen)

    Kommentar


      #17
      Ich bin nun fast so weit, dass mein neuer Shop online kann, bin mir aber nicht sicher, ob ich mich trauen soll.

      Das Modul "Single listing" habe ich ja nun im Testshop installiert und es funktioniert auch, jedoch ist es ja aus dem Amerikanischen Forum und ich habe die sql so installiert, wie sie sind. Muss dort vielleicht doch noch etwas angeglichen werden? Ich möchte nicht, dass der Shop nicht mehr funktioniert, wenn ich das Update gemacht habe.

      install column_layout_grid.sql
      Code:
      ## The following can be run via phpMyAdmin, or by Admin->Tools->Install SQLPatch:
      
      INSERT INTO configuration (configuration_title, configuration_key, configuration_value, 
             configuration_description, configuration_group_id, sort_order, 
             last_modified, date_added, use_function, set_function) 
             VALUES ('Product Listing - Layout Style', 'PRODUCT_LISTING_LAYOUT_STYLE', 'rows', 
                     'Select the layout style:<br />Each product can be listed in its own row (rows option)
                      or products can be listed in multiple columns per row (columns option)', '8', '40', NULL, 
                      now(), NULL, 'zen_cfg_select_option(array("rows", "columns"),');
      
      
      INSERT INTO configuration (configuration_title, configuration_key, configuration_value, 
             configuration_description, configuration_group_id, sort_order, 
             last_modified, date_added, use_function, set_function) 
             VALUES ('Product Listing - Columns Per Row', 'PRODUCT_LISTING_COLUMNS_PER_ROW', '3', 
                     'Select the number of columns of products to show in each row in the product listing.  
                     The default setting is 3.', '8', '41', NULL, now(), NULL, NULL);
      install slt.sql
      Code:
      ## The following may be run via phpMyAdmin rather than in Zen Cart Admin (if it gives an error)
      
      INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) 
      VALUES ('New Listing Template', 'INDEX_NEW_USE_PRODUCT_LISTING', '1', 'Set to 1 to use the original listing templates, 2 to use the new index_listing template, 3 to use the Product Listing template.', 24, 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),'),
      ('Featured Listing Template', 'INDEX_FEATURED_USE_PRODUCT_LISTING', '1', 'Set to 1 to use the original listing templates, 2 to use the new index_listing template, 3 to use the Product Listing template.', 24, 2, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),'),
      ('Special Listing Template', 'INDEX_SPECIAL_USE_PRODUCT_LISTING', '1', 'Set to 1 to use the original listing templates, 2 to use the new index_listing template, 3 to use the Product Listing template.', 24, 3, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),'),
      ('Template Debugging', 'TEMPLATE_DEBUG', 'False', 'Display the template filenames where used', 24, 4, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''False'', ''True''),');
      wenn es nur um die Einträge im Admin dabei geht, dann ist mir das wurscht, dass die nicht Deutsch sind.

      Wenn sich vielleicht jemand, der davon Ahnung hat, mal mitbeschäftigen mag, die Übersetzungen kann ich gern machen.
      This is the support site for the popular Zen Cart e-commerce shopping cart software.

      Kommentar


        #18
        @ install column_layout_grid.sql
        Das Einspielen dieses Befehls ist in der deutschen Zen Cart Version 1.5.3 sinnlos, da genau diese Einträge bereits enthalten sind.
        1.5.3 deutsch enthält bereits das Modul Spaltenlayout für Artikelliste

        @ install slt.sql
        kann in 1.5.3 deutsch unverändert so eingespielt werden

        Kommentar

        Info zu diesem Forenarchiv:
        Mit Release von 1.5.7 wurde die deutsche Zen Cart Version auf eine reine DIY-Lösung umgestellt.
        Für einen Support via Forum stehen keine personellen und zeitlichen Ressourcen mehr zur Verfügung.
        Dieses Supportforum bleibt im Nur-Lesen-Modus als Wissensarchiv noch online verfügbar.
        PM Funktionalität, Registrierung und Posten neuer Beiträge sind deaktiviert.
        Zugriff auf Anhänge in den Postings ist auch ohne Registrierung/Einloggen möglich.
        FAQ und Downloadbereich des Forums wurden in die neue umfangreiche Knowledgebase auf der zen-cart-pro.at Website übernommen.

        Das Development der deutschen Zen Cart Version geht wie bisher auf Github weiter.
        Wir werden auch weiterhin neue Versionen bereitstellen und die Onlinedokumentation/Knowledgebase aktualisieren.
        Fehler in der Software können auf Github als Issues gemeldet werden.
        Follow us
        aktuelle version
        Zen Cart 1.5.7h deutsch
        vom 15.04.2024
        [Download]
        Lädt...
        X