Viewing 5 replies - 1 through 5 (of 5 total)
  • I am looking into it! This is probably because you have not selected any of the themes. Uploading a fix…

    Uploaded a fix. Update and it should solve. If not, then try doing the master reset from the plugin settings page. That should do!

    Thread Starter madhurchadha

    (@madhurchadha)

    Offf that was fast,
    Thank you.
    How do i update it? I mean do you want me to download and upload it again?

    Visit the WP update from your admin. The update should be there by now!

    HallMarc

    (@hallmarc)

    Hmm for me it was fixing a typo for that error.
    (v. 2.0.2 of the plugin at the time of writing)
    Look in wp-content/plugins/wp-category-posts-list/includes/wp_cpl_output_gen.php at line 256 for:

    $post_output .= ((true == $op['show_date'])? ' <span class="wp-cpl-date">' . _('Posted on: ', $wp_cat_list_itg_tans) . date('M jS, Y', strtotime($post->post_date)) . '</span>' : '');

    and REPLACE it with this:

    $post_output .= ((true == $op['show_date'])? ' <span class="wp-cpl-date">' . _('Posted on: ' . $wp_cat_list_itg_tans) . date('M jS, Y', strtotime($post->post_date)) . '</span>' : '');

    The typo can be seen here _('Posted on: ',
    that comma should be a dot (for those that aren’t coders the dot (period) here tell PHP to add things together)

    Please update the plugin ASAP as I see a ton of these errors showing up in Google results.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: WP Category Post List Widget] Invalid parameter warning after upgrading’ is closed to new replies.