digitalFAQ.com Forum

digitalFAQ.com Forum (https://www.digitalfaq.com/forum/)
-   Website and Server Troubleshooting (https://www.digitalfaq.com/forum/web-tech/)
-   -   Category Posts Widget plugin updated for WordPress 3.4.2+ [DOWNLOAD] (https://www.digitalfaq.com/forum/web-tech/4613-category-posts-widget.html)

kpmedia 09-27-2012 02:53 AM

Category Posts Widget plugin updated for WordPress 3.4.2+ [DOWNLOAD]
 
1 Attachment(s)
Category Posts Widget Update:

A lot of popular WordPress plugins have not been properly updated for several years now, and contain deprecated code. While the plugin may seem "fine" when its activated in wp-admin, deprecated code often means that it's not functioning properly. This tends to only be noticed when you enable debug mode in the wp-config.php file.

Category Posts Widget gives the following errors when activated:
Code:

Notice: Undefined index: sort_by in X:\...\wp-content\plugins\category-posts\cat-posts.php on line 46
Notice: Undefined index: title_link in X:\...\wp-content\plugins\category-posts\cat-posts.php on line 72
Notice: Undefined index: date in X:\...\wp-content\plugins\category-posts\cat-posts.php on line 101   
Notice: Undefined index: excerpt in X:\...\wp-content\plugins\category-posts\cat-posts.php on line 105
Notice: Undefined index: comment_num in X:\...\wp-content\plugins\category-posts\cat-posts.php on line 109

Note that this is seen on the site itself, on pages and posts, not as an error message in the admin area.

Where to Download ?

You can either download our ready-to-use files...

How / Where to Download the Files?
You'll find the attached file downloads at the bottom of this top post. Files are provided for the convenience of our members. To get download access, simply join the forum as either a Free Member or Premium Member. We don't send spam or sell your email addresses. If you're not sure what to do with .zip or .rar files, see this help post.


What Was Changed ?

... or you can make the edits yourself.

Line 46 of cat-posts.php contains incomplete code:
Code:

if ( in_array($instance['sort_by'], $valid_sort_orders) ) {
And needs to be changed to:
Code:

//  if ( in_array($instance['sort_by'], $valid_sort_orders) ) {
    if ( in_array( ( isset($instance['sort_by'] ) && $instance['sort_by'] ), $valid_sort_orders) ) {

At line 72:
Code:

if( $instance["title_link"] )
Change to:
Code:

//  if( $instance["title_link"] )
    if( ( isset($instance["title_link"] ) && $instance["title_link"] ) )

At line 101:
Code:

<?php if ( $instance['date'] ) : ?>
Change to:
Code:

<?php if (isset($instance['date']) && $instance['date']) : ?>
At line 105:
Code:

<?php if ( $instance['excerpt'] ) : ?>
Change to:
Code:

<?php if (isset($instance['excerpt']) && $instance['excerpt']) : ?>
At line 109:
Code:

<?php if ( $instance['comment_num'] ) : ?>
Change to:
Code:

<?php if (isset($instance['comment_num']) && $instance['comment_num']) : ?>
And that's it. [x2x]

________


Need a good web host? — Read our 2018 Review of the Best Web Hosts
Quite often, problems with web sites are caused by having a rotten web host. Worse yet, many hosts try to blame you (the customer) for the problems! So dump that lousy company. Say goodbye to slow sites, unresponsive support techs, and downtime. Find yourself a new host today. Whether you need shared, reseller, VPS, semi-dedicated, cloud, or dedicated hosting, something on our list should be a good upgrade for you.



All times are GMT -5. The time now is 12:38 AM

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.