Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author metaphorcreations

    (@metaphorcreations)

    You have a javascript error on your site from CodaSlider:

    ncaught TypeError: Object #<Object> has no method 'codaSlider' www.integratedmp.com:21

    This error is causing all other javascript to not work, which is why the ticker is not working as it should.

    Please disable the CodaSlider and see if that fixes the issue.

    Thread Starter toohot2eat

    (@toohot2eat)

    Thanks for the quick response. I deleted the Coda Slider Plugin and made sure there was no mention of that offending script on the page. It still is not functioning. I get this message in Web Councel “TypeError: jQuery(…).ditty_news_ticker is not a function”. It points to the following script. Can you spot the error?
    <script>
    jQuery( window ).load( function() {
    jQuery( ‘#mtphr-dnt-1019’ ).ditty_news_ticker({
    id : ‘1019’,
    type : ‘scroll’,
    scroll_direction : ‘left’,
    scroll_speed : 10,
    scroll_pause : 0,
    scroll_spacing : 40 });
    });
    </script>
    </div>

    Plugin Author metaphorcreations

    (@metaphorcreations)

    It looks like your theme is not including the required:

    <?php wp_footer(); ?>
    http://codex.wordpress.org/Function_Reference/wp_footer

    and probably isn’t including the required:

    <?php wp_head(); ?>
    http://codex.wordpress.org/Function_Reference/wp_head

    This is probably why the codaSlider was erring out as well. Without these function calls in your theme the Ditty News Ticker plugin (and many more) will not work.

    Thread Starter toohot2eat

    (@toohot2eat)

    That fixed it. Thank you so much.

    Plugin Author metaphorcreations

    (@metaphorcreations)

    Great! Glad to help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Ditty New Ticker not scrolling’ is closed to new replies.