Ankündigung

Einklappen
Keine Ankündigung bisher.

Facbook 2.2 einbinden

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

    #16
    Ich meinte der Originale von der ZanCart Installation.

    Verstehe ich da jetzt etwas nicht?

    Grüße
    Manfred

    Kommentar


      #17
      Die meinte ich auch. Du schreibst sicher sieht sie anders aus. Kann man 2-deutig verstehen. Tut sie es denn?

      Kommentar


        #18
        Jepp. Alles was rot ist, ist anders, bzw. zusätzlich.

        Code:
        <?php
        /**
         * Common Template
         *
         * outputs the html header. i,e, everything that comes before the \</head\> tag <br />
         *
         * @package templateSystem
         * @copyright Copyright 2003-2011 Zen Cart Development Team
         * @copyright Portions Copyright 2003 osCommerce
         * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
         * @version $Id: html_header.php 19537 2011-09-20 17:14:44Z drbyte $
         */
        /**
         * load the module for generating page meta-tags
         */
        require(DIR_WS_MODULES . zen_get_module_directory('meta_tags.php'));
        /**
         * output main page HEAD tag and related headers/meta-tags, etc
         */
        ?>
        <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        <html xmlns="http://www.w3.org/1999/xhtml" <?php echo HTML_PARAMS; ?>>
        <head>
        <title><?php echo META_TAG_TITLE; ?></title>
        <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" />
        <meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" />
        <meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" />
        <meta http-equiv="imagetoolbar" content="no" />
        <meta name="author" content="The Zen Cart&reg; Team and others" />
        <meta name="generator" content="[COLOR=#ff0000]shopping cart program by Zen Cart&reg;, http://www.zen-cart.com eCommerce[/COLOR]" />
        <?php if (defined('ROBOTS_PAGES_TO_SKIP') && in_array($current_page_base,explode(",",constant('ROBOTS_PAGES_TO_SKIP'))) || $current_page_base=='down_for_maintenance' || $robotsNoIndex === true) { ?>
        <meta name="robots" content="noindex, nofollow" />
        <?php } ?>
        <link rel="icon" href="<?php echo [COLOR=#ff0000]DIR_WS_TEMPLATE. 'favicon.ico'[/COLOR]?>" type="image/x-icon" />
        <link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
        [COLOR=#ff0000]<link href='http://fonts.googleapis.com/css?family=Open+Sans:600' rel='stylesheet' type='text/css'/>
        <link href='http://fonts.googleapis.com/css?family=Vidaloka' rel='stylesheet' type='text/css'/>[/COLOR]
        <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />
        <?php if (isset($canonicalLink) && $canonicalLink != '') { ?>
        <link rel="canonical" href="<?php echo $canonicalLink; ?>" />
        <?php } ?>
        <?php
        
        /**
         * load all template-specific stylesheets, named like "style*.css", alphabetically
         */
          $directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^style/', '.css');
          while(list ($key, $value) = each($directory_array)) {
            echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
          }
        /**
         * load stylesheets on a per-page/per-language/per-product/per-manufacturer/per-category basis. Concept by Juxi Zoza.
         */
          $manufacturers_id = (isset($_GET['manufacturers_id'])) ? $_GET['manufacturers_id'] : '';
          $tmp_products_id = (isset($_GET['products_id'])) ? (int)$_GET['products_id'] : '';
          $tmp_pagename = ($this_is_home_page) ? 'index_home' : $current_page_base;
          $sheets_array = array('/' . $_SESSION['language'] . '_stylesheet', 
                                '/' . $tmp_pagename, 
                                '/' . $_SESSION['language'] . '_' . $tmp_pagename, 
                                '/c_' . $cPath,
                                '/' . $_SESSION['language'] . '_c_' . $cPath,
                                '/m_' . $manufacturers_id,
                                '/' . $_SESSION['language'] . '_m_' . (int)$manufacturers_id, 
                                '/p_' . $tmp_products_id,
                                '/' . $_SESSION['language'] . '_p_' . $tmp_products_id
                                );
          while(list ($key, $value) = each($sheets_array)) {
            //echo "<!--looking for: $value-->\n";
            $perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . $value . '.css';
            if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
          }
        
        /**
         * load printer-friendly stylesheets -- named like "print*.css", alphabetically
         */
          $directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^print/', '.css');
          sort($directory_array);
          while(list ($key, $value) = each($directory_array)) {
            echo '<link rel="stylesheet" type="text/css" media="print" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
          }
        
        /**
         * load all site-wide jscript_*.js files from includes/templates/YOURTEMPLATE/jscript, alphabetically
         */
          $directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.js');
          while(list ($key, $value) = each($directory_array)) {
            echo '<script type="text/javascript" src="' .  $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value . '"></script>'."\n";
          }
        [COLOR=#ff0000]  if($this_is_home_page){
         
          $directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript2_/', '.js');
          while(list ($key, $value) = each($directory_array)) {
            echo '<script type="text/javascript" src="' .  $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value . '"></script>'."\n";
          }
        }[/COLOR]
        /**
         * load all page-specific jscript_*.js files from includes/modules/pages/PAGENAME, alphabetically
         */
          $directory_array = $template->get_template_part($page_directory, '/^jscript_/', '.js');
          while(list ($key, $value) = each($directory_array)) {
            echo '<script type="text/javascript" src="' . $page_directory . '/' . $value . '"></script>' . "\n";
          }
        
        /**
         * load all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically
         */
          $directory_array = $template->get_template_part($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.php');
          while(list ($key, $value) = each($directory_array)) {
        /**
         * include content from all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically.
         * These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
         */
            require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value); echo "\n";
          }
        /**
         * include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
         */
          $directory_array = $template->get_template_part($page_directory, '/^jscript_/');
          while(list ($key, $value) = each($directory_array)) {
        /**
         * include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
         * These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
         */
            require($page_directory . '/' . $value); echo "\n";
          }
        
        //DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';
        [COLOR=#ff0000]?>
        
        <!--[if lt IE 7]>
          <div style=' clear: both; text-align:center; position: relative;'>
            <a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode">
              <img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." />
           </a>
         </div>
        <![endif]-->
        [/COLOR]
        [COLOR=#ff0000]<style type="text/css">
            .class{ behavior:url(<?php echo DIR_WS_TEMPLATE. 'PIE.php'?>)}
        </style>
        <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
        <script type="text/javascript">
            $(document).ready(function(){
                $("a.tooltips").easyTooltip();
            });
            $(function(){
            $('.currencies').jqTransform({imgPath:'<?php echo $path ?>/images/'}).css('display', 'block');
             });
        </script>
        <script type="text/javascript">
        $(function(){
           $('.currencies form').jqTransform({imgPath:'jqtransformplugin/img/'});
        });
        </script>
        <?php
            if($this_is_home_page){[/COLOR]
        ?>
        [COLOR=#ff0000]<script type="text/javascript">
        $(window).load(function(){
            $('.slider')._TMS({
                prevBu:'.prev',
                nextBu:'.next',
                playBu:'.play',
                duration:800,
                easing:'easeOutQuad',
                preset:'slideFromLeft',
                pagination:'.pags',//'.pagination',true,'<ul></ul>'
                //pagNums:false,
                slideshow:6000,
                numStatus:true,
                banners:'fromLeft',// fromLeft, fromRight, fromTop, fromBottom
                waitBannerAnimation:false,
                progressBar:'<div class="progbar"></div>'
            })
        })
        </script>
        <?php
            }
        ?>[/COLOR]
        </head>
        <?php // NOTE: Blank line following is intended: ?>

        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.7g deutsch
        vom 12.12.2023
        [Download]
        Lädt...
        X