phoenixd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: difficulty uploading imageI am having the same problem with WordPress 2.5.1. Anyone have any answers for this?
Forum: Themes and Templates
In reply to: creative commonsDavid here,
Yes, you can edit cutline all you’d like. We did the CC licensing because we wanted our attribution link to stay in and also to give us a bit more control over the theme.
Go crazy modding it though, and let me know what you do.
Forum: Fixing WordPress
In reply to: Cant import posts from BlogSpot?You should never mention my name if you don’t want me to read something ?? And if Blogger changed something, you can be sure the WP devs are working on it.
I highly doubt that though. Try it on a different server, or ask a friend to try it…once its imported to any WP install, it can be exported in WordPress Export Format to be imported in your new blog.
Forum: Plugins
In reply to: Plugins Page Showing CodeFixed it.. Just saved it using WP’s built in editor.. and voila. ?? Thanks
Forum: Plugins
In reply to: Plugins Page Showing CodeSorry about that, just wanted to make sure we were on the same page… So the solution is just to use a more basic editor, making sure it doesn’t keep the line breaks, and voila fixed?
Forum: Plugins
In reply to: Plugins Page Showing CodeMac OS X / Smultron / MacBook Pro
And it shows code from the plugin like:
', $after = '', $show_pass_post = false, $comment_style = 0) { global $wpdb; $request = "SELECT ID, comment_ID, comment_content, comment_author, comment_author_url, comment_type, post_title FROM $wpdb->comments LEFT JOIN $wpdb->posts ON $wpdb->posts.ID=$wpdb->comments.comment_post_ID WHERE post_status IN ('publish','static') "; if(!$show_pass_post) $request .= "AND post_password ='' "; $request .= "AND comment_approved = '1' AND comment_type = '' ORDER BY comment_ID DESC LIMIT $no_comments"; $comments = $wpdb->get_results($request); $output = ''; if ($comments) { foreach ($comments as $comment) { $comment_author = stripslashes($comment->comment_author); if ($comment_author == "") $comment_author = "anonymous"; $comment_content = strip_tags($comment->comment_content); $comment_content = stripslashes($comment_content); $words=split(" ",$comment_content); $comment_excerpt = join(" ",array_slice($words,0,$comment_lenth)); $permalink = get_permalink($comment->ID)."#comment-".$comment->comment_ID; if ($comment_style == 1) { $post_title = stripslashes($comment->post_title); $url = $comment->comment_author_url; if (empty($url)) $output .= $before . $comment_author . ' on ' . $post_title . '.' . $after; else $output .= $before . "$comment_author" . ' on ' . $post_title . '.' . $after; } else { $output .= $before . '' . $comment_author . ': ' . $comment_excerpt.'' . $after; } } $output = convert_smilies($output); } else { $output .= $before . "None found" . $after; } echo $output; } ?>" title="Visit plugin homepage">Recent Comments Plugin URI: https://mtdewvirus.com/code/wordpress-plugins/ Description: Retrieves a list of the most recent comments. Version: 1.18 Author: Nick Momrik Author URI: https://mtdewvirus.com/ */ function mdv_recent_comments($no_comments = 10, $comment_lenth = 5, $before = '', $after = '', $show_pass_post = false, $comment_style = 0) { global $wpdb; $request = "SELECT ID, comment_ID, comment_content, comment_author, comment_author_url, comment_type, post_title FROM $wpdb->comments LEFT JOIN $wpdb->posts ON $wpdb->posts.ID=$wpdb->comments.comment_post_ID WHERE post_status IN ('publish','static') "; if(!$show_pass_post) $request .= "AND post_password ='' "; $request .= "AND comment_approved = '1' AND comment_type = '' ORDER BY comment_ID DESC LIMIT $no_comments"; $comments = $wpdb->get_results($request); $output = ''; if ($comments) { foreach ($comments as $comment) { $comment_author = stripslashes($comment->comment_author); if ($comment_author == "") $comment_author = "anonymous"; $comment_content = strip_tags($comment->comment_content); $comment_content = stripslashes($comment_content); $words=split(" ",$comment_content); $comment_excerpt = join(" ",array_slice($words,0,$comment_lenth)); $permalink = get_permalink($comment->ID)."#comment-".$comment->comment_ID; if ($comment_style == 1) { $post_title = stripslashes($comment->post_title); $url = $comment->comment_author_url; if (empty($url)) $output .= $before . $comment_author . ' on ' . $post_title . '.' . $after; else $output .= $before . "$comment_author" . ' on ' . $post_title . '.' . $after; } else { $output .= $before . '' . $comment_author . ': ' . $comment_excerpt.'' . $after; } } $output = convert_smilies($output); } else { $output .= $before . "None found" . $after; } echo $output; } ?>
Forum: Themes and Templates
In reply to: Crystal – WordPress 2.3 Ready ThemeThere is now… check next to the download link.
Thanks ??
Forum: Fixing WordPress
In reply to: The uploaded file could not be moved to …How’d you fix it?
Forum: Fixing WordPress
In reply to: New Post dissapearing – Help!Just a quick question..when you moved your site, did you delete your old site? If not, you might have posted that post on your old site, and then when the domain finally propogated through the internet by the next day, you saw your new blog, sans the post you put up where your site used to be…
Forum: Fixing WordPress
In reply to: Manage only own PostsI am just used to if statements needing to be opened and closed properly… you know?
Forum: Fixing WordPress
In reply to: Manage only own PostsI didn’t think it would work, but for some reason it did but this:
if (!current_user_can(‘edit_others_posts’))
$author = $user_ID;Worked…from https://www.ads-software.com/support/topic/80489?replies=4
Can someone explain why…
Forum: Fixing WordPress
In reply to: Limit Post Showing by DateYeah, again, that would only update it once another post has been made (at least last time I checked.)
I almost need a way to extract the date from the db and then run some php comparisons on it…
Forum: Fixing WordPress
In reply to: Per Post PermissionsThat’d be so great…if the editing ability was part of the plugin…I am contacting the creator to see if he can help me mold the plugin for my specific needs.
moshu, you really know your stuff. ??
Forum: Fixing WordPress
In reply to: Limit Post Showing by DateI need it to be pushed off even if I don’t write a new post…lol
Forum: Fixing WordPress
In reply to: No Comments Except for Logged In UsersI created a test blog at phoenixrealm.com/tester and when I comment on it…it brings me to https://phoenixrealm.com/tester/wp-comments-post.php but it shows the index page of phoenixrealm.com.
Seems like an .htaccess thing…but i have deleted my htaccess a few times and allowed wp to recreate it. ??
I will email you soon alphaoide…But if anyone has any ideas…I’d love to get this figured out