We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 25207
    • 29 Posts
    Hi Frank,

    -Yes I did, I’m trying to use the Auto Slide chunk.

    -No, I Used some template that I got from the web which is for modx (tattoocms.com i think). I haven’t tried to do the real site yet, I just want to show them that it’s possible to do it in Modx. We want to use Modx because of its quick edit feature. Once we’re done developing this site, The update and maintenance will be passed onto a different department. grin

    - Steve Jobs Blog, Very interesting shocked

    Im using modx version 1.0.3 see below





      • 25207
      • 29 Posts
      I found my own error laugh its inside the chunk of codaSlider.

      $().ready(function() {
      $(’#coda-slider-2’).codaSlider({
      autoSlide: true,
      autoSlideInterval: 4000,
      autoSlideStopWhenClicked: true
      });
      });

      should be

      $().ready(function() {
      $(’#coda-slider-[*id*]’).codaSlider({
      autoSlide: true,
      autoSlideInterval: 4000,
      autoSlideStopWhenClicked: true
      });
      });

      laugh Now its working grin, thanks frank for this wonderful breakthrough keep it up grin
        • 10076
        • 1,024 Posts
        Okay good you got that working, I was worried that the zip attachement was wrong, but it is correct.
          • 15083
          • 697 Posts
          Quote from: roach_03 at May 31, 2010, 07:14 AM

          Hi everyone, I tried using this dynamic Jquery content slider. When I preview the resource it displays a "loading..." text and a box which has a "loading" text inside, it doesn’t display the content of my resources, and how can I use the anchorsaway plugin? Is this the reason why it won’t work? I was tasked to do an advertisement webpage which will automatically slide for every 10 seconds. I proposed to use Modx since its FREE, and with a fast interactive forum that always responds when you needed help especially for a noob like me rolleyes Buying a macromedia flash software is pretty much expensive thats why this is the greater alternative grin. I’m very new at Modx and a help from you guys is pretty much appreciated. kudos to the developers of modx and to its community laugh thanks grin

          Roach I have used Coda/ditto on sites (Works great). Can you be a bit more specific?
          If you can provide a link we can take a look.
            • 10076
            • 1,024 Posts
            Sorry for the late response but I had the same loading error. If I remember well is was a CSS/HTML issue. Try to validate the page on HTML and CSS
              • 36447
              • 98 Posts
              Slider works for content, but no tabs menu, just narrow linked tab box above the content that’s missing the titles of the various panels. Please see attached image below. It’s like there needs to be another ditto call within dittoSlider for the tab titles, such as Frank tried in #12 comment above.

              Yes, I’ve activated AnchorsAway plugin and used the latest zip. Everything works but the tabs menu. Ideas anyone?


                • 10076
                • 1,024 Posts
                Is that not a CSS problem?
                  • 36447
                  • 98 Posts
                  Thanks for your reply, Frank. I’m following your installation instructions above and it seems a ditto call is missing in dittoSlider for tab titles. I’m using the css file that was included in your zip.

                  Edit: OK, I originally used the css file in your zip above. When I went to your demo site and copied that slider css, it works. So I think your css file in the zip needs some tinkering.
                    • 36805
                    • 354 Posts
                    Frank, Kristalin and Phil_G .. Thanks a bunch for this. I got it working except for the arrows. I need static arrows so I can position them where i need them.

                    First I needed to set auto arrows and auto tabs to false.

                    <script type="text/javascript">
                    $().ready(function() {
                           $('#coda-slider-[*id*]').codaSlider({
                               dynamicArrows: false,
                               dynamicTabs: false
                           });
                       });
                    </script>
                    


                    Furthermore I used this markup to get arrows in my site

                    <div id="coda-nav-left-[*id*]" class="coda-nav-left"><a href="[(site_url)][~[*id*]~]#" title="Slide left">«</a></div>
                    <div id="coda-nav-right-[*id*]" class="coda-nav-right"><a href="[(site_url)][~[*id*]~]#" title="Slide right">»</a></div>
                    


                    Problem is, if I click them nothing happens! I don’t know what’s going on here.

                    PS: I use AchorsAway, i run Evo 1.0.4. with .htaccess friendly url and paths.
                      • 10076
                      • 1,024 Posts
                      Hi,

                      well I got the dynamicArrows set to 1.
                      And the menu set to 0.

                      I use 2 tv s there which may make life easier.
                      TV "arrows", radio options:
                      arrows of ==0||
                      arrows on == 1


                      Tv menu, radio options:
                      menu of ==0||
                      menu on == 1


                      A chunk for the coda slider:
                      <script type="text/javascript">
                      $().ready(function() {
                             $('#coda-slider-[*id*]').codaSlider({
                                 dynamicArrows: [*arrows*],
                                 dynamicTabs: [*menu*],
                      autoHeight:0
                             });
                         });
                      </script>


                      Try it, Frank.