Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi. Try this:

    File: /plugins/wd-facebook-feed/frontend/models/FFWDModelThumbnails.php

    $results = $wpdb->get_results($wpdb->prepare(‘SELECT * FROM ‘ . $wpdb->prefix . ‘wd_fb_data WHERE fb_id=”%d” ORDER BY created_time_number DESC ‘ . $limit_str, $id));

    Change to:

    $results = $wpdb->get_results($wpdb->prepare(‘SELECT * FROM ‘ . $wpdb->prefix . ‘wd_fb_data WHERE fb_id=”%d” ORDER BY DateModified ASC ‘ . $limit_str, $id));

    The same to /plugins/wd-facebook-feed/frontend/models/FFWDModelThumbnails_masonry.php

    $results = $wpdb->get_results($wpdb->prepare(‘SELECT * FROM ‘ . $wpdb->prefix . ‘wd_fb_data WHERE fb_id=”%d” ORDER BY created_time_number DESC ‘ . $limit_str, $id));

    Change to:

    $results = $wpdb->get_results($wpdb->prepare(‘SELECT * FROM ‘ . $wpdb->prefix . ‘wd_fb_data WHERE fb_id=”%d” ORDER BY DateModified ASC ‘ . $limit_str, $id));

    • This reply was modified 8 years, 3 months ago by livedeath.
Viewing 1 replies (of 1 total)