Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Forum: Fixing WordPress
    In reply to: FeedWordPress

    Go to ‘Posts’ page under your subscribed feed and you will see an option ‘Permalinks point to’. Set it to ‘The local copy on this website’ and you got it ??

    If there is a picture placed into the content part of the article (i.e it might be floated to left/right), this plugin will load the entire content with that picture.

    Thread Starter 127.0.0.1

    (@127001-1)

    You should use version 2.7.9 of the plugin, of course ??

    Thread Starter 127.0.0.1

    (@127001-1)

    Hey guys,

    I have a solution. Get the version 2.7.9 and replace line #161 with this SQL query:

    $sql = "SELECT $wpdb->posts.ID, $wpdb->postmeta.meta_value, $wpdb->posts.post_type FROM $wpdb->posts ".
    "LEFT JOIN $wpdb->postmeta ON ($wpdb->posts.ID = $wpdb->postmeta.post_id) WHERE ".
    " $wpdb->postmeta.meta_key = 'custom_permalink' AND ".
    " $wpdb->postmeta.meta_value != '' AND ".
    " $wpdb->posts.post_status = 'publish' AND ".
    " ( $wpdb->postmeta.meta_value = LEFT('".mysql_escape_string($request_noslash)."', LENGTH($wpdb->postmeta.meta_value)) OR ".
    " $wpdb->postmeta.meta_value = LEFT('".mysql_escape_string($request_noslash."/")."', LENGTH($wpdb->postmeta.meta_value)) ) ".
    "ORDER BY LENGTH($wpdb->postmeta.meta_value) DESC";

    this works for me.

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