Twelve Dozen

Just another WordPress weblog

Drupal Jump menu

http://mrsimonelliott.com/blog/creating-jump-menu-drupal-using-views-some-template-overrides-and-bit-javascript

http://drupal.org/project/jump

  • 0 Comments
  • Filed under: Uncategorized
  • Drupal Web Form Auto Responder

    http://drupal.org/node/323666

  • 0 Comments
  • Filed under: Uncategorized
  • Drupal – Format Comments

    Remove (Not Verified) – http://drupal.org/node/99409

    Remove Submitted By – http://www.kirkdesigns.co.uk/format-submitted-text-drupal-6-nodes-and-comments

    Add Comments Header – http://drupal.org/node/76716

  • 0 Comments
  • Filed under: Uncategorized
  • Jquery slide show for Drupal

    If you need a slideshow for your Drupal website, I recommend using JCarousel Lite – http://gmarwaha.com/jquery/jcarousellite/

    It has lots of parameters to tweak depending on how you want to set it up. It’s easy to get working.

    One slight issue (well major issue really until I fixed it), that I had using this with Drupal was that initially I needed to press F5 to refresh the browser before the images would display.

    The fix for it was to surround the code with $(document).ready(function () { }

    Here’s my code:

    <script type=”text/javascript”>
    $(document).ready(function () {
    $(”.carousel”).jCarouselLite({
    btnNext: “.next”,
    btnPrev: “.prev”,
    scroll: 1,
    auto: 1200,
    speed: 1600,
    visible: 1
    });
    });
    </script>

  • 0 Comments
  • Filed under: Uncategorized
  • Audio Player for Drupal

    Recently, I’ve changed the way I’ve been creating websites in Drupal. Instead of trying to make everything as easily as possible for clients to add content to their websites I’m actually more inclined to think that this can make creating sites more complicated. I know there are a plethora of Drupal modules available for almost everything, I’ve found that sometimes installing a module for every little task for the website can make things more complicated instead of less. So when wanting to add an MP3 player to a recent website project I’ve opted to use the 1 Pixel Out plug-in and simply add the javascript code direct to the ’source code’.

    Here’s a simple tutorial that I followed.

    http://www.macloo.com/examples/audio_player/

  • 0 Comments
  • Filed under: Uncategorized