Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter etleva

    (@etleva)

    Hello again,

    Managed to solve this.

    I used to add shortcode inside my php files.
    <div class="test-stock"><?php echo do_shortcode( '[stock_ticker symbols="AAPL,^MSFT,INTC,GOOGL, FB" show="symbol" speed="0"] ' ); ?></div>

    Setting up speed=”0″ inside shortcode disabled scrolling, and now i have a horizontal static ticker.

    Plugin Author Aleksandar Uro?evi?

    (@urkekg)

    Hi etleva,

    Proper solution is to use shortcode parameter static=1 and then you style ticker in your theme. So, use:

    <div class="test-stock"><?php echo do_shortcode( '[stock_ticker symbols="AAPL,^MSFT,INTC,GOOGL, FB" show="symbol" static="1"] ' ); ?></div>

    With approach you use, you force loading of webticker JS library which has not needed.

    Cheers,
    Aleksandar

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable scrolling option’ is closed to new replies.