Got Error – here is the fix
-
Line 97 of “syndicationdataqueries.class.php” :
$search .= ” AND ({$wpdb->postmeta}.meta_key = ‘”.$query->get(‘meta_key’).”‘ AND wp_postmeta.meta_value = ‘”.$query->get(‘meta_value’).”‘) — ‘”;
must be (change wp_postmeta):
$search .= ” AND ({$wpdb->postmeta}.meta_key = ‘”.$query->get(‘meta_key’).”‘ AND {$wpdb->postmeta}.meta_value = ‘”.$query->get(‘meta_value’).”‘) — ‘”;
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Got Error – here is the fix’ is closed to new replies.