Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • open file /codilight-lite/inc/widgets/block_3_widget.php. at line 50 change :
    $instance['$number_posts'] to $instance['number_posts']

    this bug also found at FT Block 4 Widget.

    Forum: Plugins
    In reply to: Expiring Blogroll Entries
    sjunianto

    (@sjunianto)

    hi all!
    regarding the method from jclayc (using link_notes field to save the expired date of link), i just add this code in line 65 of wp-includes/bookmark-template.php file :

    before :

    foreach ( (array) $bookmarks as $bookmark ) {
    		if ( !isset($bookmark->recently_updated) )

    after :

    foreach ( (array) $bookmarks as $bookmark ) {
                    // this is additional line :
                    if ($bookmark->link_notes<>'' && $bookmark->link_notes < date("Y-m-d")) continue;
    		if ( !isset($bookmark->recently_updated) )

    in this case i used this date format : YYYY-MM-DD.

    cmiiw.

    Forum: Plugins
    In reply to: Expiring Blogroll Entries
    sjunianto

    (@sjunianto)

    hi jclayc!
    did you have explored this? can you share the solution with us? i also need this feature for my project. thank you ??

Viewing 3 replies - 1 through 3 (of 3 total)