• I installed this plugin and it works great with custom images and links. But when selecting a category it does not work. All I get is an empty box.

    Are the additional things that need to be done to have posts from a category working?

Viewing 3 replies - 1 through 3 (of 3 total)
  • *bump*
    Same issue, really need this functionality. This function makes or breaks the plugin’s slidedeck replacement *feature.

    *it’s a feature to me anyway 😉

    bump

    did someone solve or find a workaround for this issue? I asked at developer site, but my comment is awaiting for moderation from 27, january…

    i tried adding this code to functions.php (this solved other jquery conflicts issues i had), but no success:

    function my_init() {
    if (!is_admin()) {
    wp_deregister_script('jquery');
    wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', false, '1.3.2', true);
    wp_enqueue_script('jquery');
    
    // load a JS file from my theme: js/theme.js
    wp_enqueue_script('my_script', get_bloginfo('template_url') . '/javascript.js', array('jquery'), '1.0', true);
    }
    }
    add_action('init', 'my_init');

    just from looking at the code it seems the posts in the category need to have a thumbnail set. The code does this:

    if(has_post_thumbnail()) {
    ....DO STUFF.....
    } else
    {
     continue;
    }

    so if your theme doesnt support post thumbnails, or your posts dont have thumbnails, then you will see nadda. check this out for more info : http://codex.wordpress.org/Post_Thumbnails

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WordPress Content Slide] Category options not working’ is closed to new replies.