erickrieger
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: comments_popup_link disapearingSpent 3 days searching the forum for a solution, but of course I only found the relevant one the day after I post my question.
Solved here by thitipatn:
http://wordpress.org/support/topic/35036?replies=24Forum: Your WordPress
In reply to: New Design, help me comment please!!!I was having the comment problem on my single pages as well and thitipatn’s solution worked wonders. Thank you.
Forum: Alpha/Beta/RC
In reply to: Unable IMPORT LINKS!!!!!!!Putting the file on the server worked for me as well. Thanks bookchiq.
Forum: Fixing WordPress
In reply to: Import MT body into custom fieldThis code from Kafquaesqui in topic here:
http://wordpress.org/support/topic/41306?replies=4
worked for me great in version 2.0.4 after I swapped some of the variables in mt.php:
$custom_data = trim($body[1]);
$post_content = $wpdb->escape($extended);and put in :
if (!$wpdb->get_row(“SELECT * FROM $wpdb->postmeta WHERE post_id = $post_id”)) {
$wpdb->query(“INSERT INTO $wpdb->postmeta (post_id, meta_key, meta_value) VALUES ($post_id, ‘image’, ‘$custom_data’) “);
}I stuck it in right after:
if (0 != count($post_categories)) { wp_create_categories($post_categories, $post_id);
}