• » webSPELL.org - Free Content Management System
  • Language switch: English German
  • login



    » lost password?   » register now
  • About webSPELL

    webSPELL is a free Content Management System which was especially developed for the needs of esport related communities. Since a short while we are also offering an optimized and enhanced webSPELL version for the special requirements of non-profit organisations. The purpose of both systems is to offer a professional and free opportunity to create and administrate your own website in an easy and optimized way.

    » Learn more about webSPELL     » Download webSPELL now!
  • Advertisement

    Follow us

  • Sort:     printview
    Author
    Message
    webSPELL newbie
    41 Posts
    30.03.2012, 00:27 offline quote 

    Nabend

    Ich habe ein Problem. und zwar ich habe bei der seite an der ich grad sitze schon einen contentslider. so nun will ich das "TopMatch" addon installieren aber sehe das da auch ein slider ist.. wie ändere ich die Slider id ? und wo überall muss ich das machen ? oder kann ich den auch ausschalten ? das das addon dann trotzdem funzt ?

    hier die "sc_topmatch.php"

    Code:
    1.
    2.
    3.
    4.
    5.
    6.
    7.
    8.
    9.
    10.
    11.
    12.
    13.
    14.
    15.
    16.
    17.
    18.
    19.
    20.
    21.
    22.
    23.
    24.
    25.
    26.
    27.
    28.
    29.
    30.
    31.
    32.
    33.
    34.
    35.
    36.
    37.
    38.
    39.
    40.
    41.
    42.
    43.
    44.
    45.
    46.
    47.
    48.
    49.
    50.
    51.
    52.
    53.
    54.
    55.
    56.
    57.
    58.
    59.
    60.
    61.
    62.
    63.
    64.
    65.
    66.
    67.
    68.
    69.
    70.
    71.
    72.
    73.
    74.
    75.
    76.
    77.
    78.
    79.
    80.
    81.
    82.
    83.
    84.
    85.
    86.
    87.
    88.
    89.
    90.
    91.
    92.
    93.
    94.
    95.
    96.
    97.
    98.
    <?php
    /*
     ########################################################################
    #                                                                        #
    #           Version 4       /                        /   /               #
    #          -----------__---/__---__------__----__---/---/-               #
    #           | /| /  /___) /   ) (_ `   /   ) /___) /   /                 #
    #          _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___               #
    #                       Free Content / Management System                 #
    #                                   /                                    #
    #                                                                        #
    #                                                                        #
    #   Copyright 2005-2011 by webspell.org                                  #
    #                                                                        #
    #   visit webSPELL.org, webspell.info to get webSPELL for free           #
    #   - Script runs under the GNU GENERAL PUBLIC LICENSE                   #
    #   - It's NOT allowed to remove this copyright-tag                      #
    #   -- http://www.fsf.org/licensing/licenses/gpl.html                    #
    #                                                                        #
    #   Code based on WebSPELL Clanpackage (Michael Gruber - webspell.at),   #
    #   Far Development by Development Team - webspell.org                   #
    #                                                                        #
    #   visit webspell.org                                                   #
    #                                                                        #
     ########################################################################
    */

    $slider = 1; // 0 = slider disable, 1 = slider activ

    if (isset($site)) $_language->read_module('sc_topmatch');
    $now=time();
    $limit = "LIMIT 0,1";
    if($slider=="1") {
         $limit = "";
         echo'<script type="text/javascript" src="js/contentslider.js">
              /***********************************************
              * Featured Content Slider- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
              * This notice MUST stay intact for legal use
              * Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
              ***********************************************/
              
              </script>
              <div id="slider1" class="sliderwrapper">';
    }
    $ergebnis=safe_query("SELECT * FROM ".PREFIX."topmatch WHERE date>= $now AND displayed='1' ORDER BY date ".$limit);
    while($ds=mysql_fetch_array($ergebnis)) {
     $date=date("d.m.Y", $ds['date']);
         $time=date("H:i", $ds['date']);
         
         $matchlink=str_replace("&", "&amp;", str_replace("&amp;", "&", $ds['matchlink']));
         $league=$ds['league'];
         $maps=$ds['maps'];
         $server=$ds['server'];
         if(file_exists('images/games/'.$ds['game'].'.gif')) $game_ico = 'images/games/'.$ds['game'].'.gif';
         $game='<img src="'.$game_ico.'" width="13" height="13" border="0" alt="" />';
         
         $logo1=$ds['logo1'];
         $country1=$ds['country1'];
         $team1=$ds['team1'];
         $url1=$ds['homepage1'];

         $logo2=$ds['logo2'];
         $country2=$ds['country2'];
         $team2=$ds['team2'];
         $url2=$ds['homepage2'];
         $report=$ds['report'];
         
         if($slider=="1") echo'<div class="contentdiv">';
         
         eval ("\$sc_topmatch = \"".gettemplate("sc_topmatch")."\";");
         echo $sc_topmatch;
         
          if($slider=="1") echo'</div>';
    }
    if($slider=="1") {
         echo'</div>';

         eval ("\$sc_topmatch_foot = \"".gettemplate("sc_topmatch_foot")."\";");
         echo $sc_topmatch_foot;

         echo'
         <script type="text/javascript">
         featuredcontentslider.init({
              id: "slider1",  //id of main slider DIV
              contentsource: ["inline", ""],  //Valid values: ["inline", ""] or ["ajax", "path_to_file"]
              toc: "#increment",  //Valid values: "#increment", "markup", ["label1", "label2", etc]
              nextprev: ["Previous", "Next"],  //labels for "prev" and "next" links. Set to "" to hide.
              revealtype: "click", //Behavior of pagination links to reveal the slides: "click" or "mouseover"
              enablefade: [true, 0.2],  //[true/false, fadedegree]
              autorotate: [false, 3000],  //[true/false, pausetime]
              onChange: function(previndex, curindex){  //event handler fired whenever script changes slide
                   //previndex holds index of last slide viewed b4 current (1=1st slide, 2nd=2nd etc)
                   //curindex holds index of currently shown slide (1=1st slide, 2nd=2nd etc)
              }
         })
         </script>';
    }
    ?>


    Vielen dank schon mal.

    Lg steffke

    website: gfx-reviews.bplaced.net/test/index.php
    version: 4.2.3
    Sort:     printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
  • » Support

    » Topics
    19.05.2013 - 10:48 - 2 Replies
    » [S] Tester für neuen Foru...
    [S] Tester für neuen ForumMod
    Last post: Argu
    Board: DE - Anfragen
    19.05.2013 - 10:48
    19.05.2013 - 03:55 - 8 Replies
    » Mein Forum
    Mein Forum
    Last post: Lordy4007
    Board: DE - Fragen zur Seite
    19.05.2013 - 03:55
    18.05.2013 - 19:58 - 36 Replies
    » Exklusiv Webseite zur Mie...
    Exklusiv Webseite zur Miete
    Last post: liQweb
    Board: DE - Biete
    18.05.2013 - 19:58
    18.05.2013 - 16:29 - 2 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: Swordfish3000
    Board: DE - Allgemeiner Support
    18.05.2013 - 16:29
    18.05.2013 - 12:21 - 1 Replies
    » Query failed
    Query failed
    Last post: LoRd
    Board: DE - Allgemeiner Support
    18.05.2013 - 12:21
    18.05.2013 - 09:36 - 3 Replies
    » benötige hilfe bei paar k...
    benötige hilfe bei paar kleinigkeiten
    Last post: immostar
    Board: DE - Technischer Support
    18.05.2013 - 09:36
    18.05.2013 - 03:33 - 4 Replies
    » [SELL] Gaming Website
    [SELL] Gaming Website
    Last post: hornyst
    Board: EN - Offers
    18.05.2013 - 03:33
    18.05.2013 - 00:32 - 6 Replies
    » Hide BBCODE Echo
    Hide BBCODE Echo
    Last post: dado2106
    Board: EN - Technical support
    18.05.2013 - 00:32
    17.05.2013 - 21:42 - 0 Replies
    » website help
    website help
    Last post: envy0024
    Board: EN - Technical support
    17.05.2013 - 21:42
    17.05.2013 - 21:03 - 1 Replies
    » Need Coder!
    Need Coder!
    Last post: iG.ShAdOw
    Board: EN - Requests
    17.05.2013 - 21:03
    17.05.2013 - 20:44 - 9 Replies
    » Query failed!
    Query failed!
    Last post: LoRd
    Board: DE - Allgemeiner Support
    17.05.2013 - 20:44
    17.05.2013 - 18:08 - 0 Replies
    » [4 SALE] Layouts (Gaming,...
    [4 SALE] Layouts (Gaming, Portfolio and more)
    Last post: Freestyler92
    Board: EN - Offers
    17.05.2013 - 18:08
    17.05.2013 - 18:06 - 0 Replies
    » Design Ausverkauf - alles...
    Design Ausverkauf - alles unter 70€
    Last post: Freestyler92
    Board: DE - Biete
    17.05.2013 - 18:06
    17.05.2013 - 10:56 - 6 Replies
    » [Biete] Template Designs
    [Biete] Template Designs
    Last post: Marceld
    Board: DE - Biete
    17.05.2013 - 10:56
    17.05.2013 - 10:41 - 7 Replies
    » register captcha
    register captcha
    Last post: nappel.ger
    Board: DE - Allgemeiner Support
    17.05.2013 - 10:41
    17.05.2013 - 09:56 - 3 Replies
    » Suche Designer GGL:Geld
    Suche Designer GGL:Geld
    Last post: Freestyler92
    Board: DE - Suche
    17.05.2013 - 09:56
    17.05.2013 - 00:13 - 0 Replies
    » News
    News
    Last post: dado2106
    Board: EN - Modifications
    17.05.2013 - 00:13
    16.05.2013 - 15:04 - 2 Replies
    » [V] mehrere Webspell Temp...
    [V] mehrere Webspell Templates und Designs
    Last post: Dynamic-Webmedia
    Board: DE - Biete
    16.05.2013 - 15:04
    16.05.2013 - 13:09 - 2 Replies
    » Content laden
    Content laden
    Last post: Helgon
    Board: DE - Anfragen
    16.05.2013 - 13:09
    16.05.2013 - 13:07 - 18 Replies
    » [B] Web, Print und Logode...
    [B] Web, Print und Logodesign
    Last post: Helgon
    Board: DE - Suche
    16.05.2013 - 13:07
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers