Hey,
I’ve also installed this plugin and have used the template tag with no success, here is the code i’ve been using:
<?php if ( function_exists(‘c3m_slider’) ) {
$args = array(
‘id’=> ‘myslider’,
‘cat’ => 5,
‘show’ => 5,
‘slider_args’ => array(
‘autoHeight’ => ‘true’,
‘autoSlide’ => ‘true’,
‘autoSlideInterval’ => ‘7000’,
‘autoSlideStopWhenClicked’ => ‘true’,
‘dynamicArrows’ => ‘true’
),
);
c3m_slider( $args );
} ?>
I also have just the contents of the posts showing and it seems as the slider doesn’t want to load.
Do I need to fill out all the meta boxes for the page I want this to show up on?
I figured i could just implement the code and define the cat id where i wanted the posts to come from – but the slider id is baffling me since I haven’t created a slider to actually name with an ID.
I just want to pull posts from a certain cat ID.
Any help would be appreciated.
Thanks.