phoenixd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: New Theme: IridiumThe theme and all the images became exclusively mine, including the PSD. You are right, I could do some variations to get the most out of it, but I don’t know if I am really the designer for that. 🙂 The good thing is, that now it is free for anyone to use/modify/re-release. 🙂
Forum: Themes and Templates
In reply to: New Theme: IridiumThanks… Hopefully it will be useful for someone.
Forum: Themes and Templates
In reply to: Seeking Theme PartnerNevermind.. 🙂 Chris gave it to you… Its all good. Good luck with your theming. 🙂
Forum: Themes and Templates
In reply to: Seeking Theme PartnerJust out of curiousity, where did you get your current blog design?
Forum: Themes and Templates
In reply to: A08 Revamped…Theme Check Please?I would love to see it out in the theme world too. 🙂 Also, it’d give me more to post about on BloggingPro.com
Forum: Plugins
In reply to: Need Last 5 Post Titles from One CategoryNever mind…found one. 🙂
http://girasoli.org/?p=26Forum: Fixing WordPress
In reply to: Able to change Categories onlyYeah, I dunno how I am going to be able to seperate the ability to edit the post text with the ability just to change the categories that a post has… If anyone has any ideas, that’d be great.
Forum: Fixing WordPress
In reply to: Latests posts shows future posts ProblemI did the ugly date comparison. I guess its the only way to do it, and it works. 🙂
function get_recent_posts($no_posts = 5, $before = ‘
- ‘, $after = ‘
‘, $show_pass_post = false, $skip_posts = 0) {
global $wpdb, $tableposts;
$today = date(“Y-m-d H:i:s”);$request = “SELECT ID, post_title FROM $tableposts WHERE post_status = ‘publish’ AND post_date < ‘$today’ “;
if(!$show_pass_post) { $request .= “AND post_password =” “; }
$request .= “ORDER BY post_date DESC LIMIT $skip_posts, $no_posts”;
$posts = $wpdb->get_results($request);
$output = ”;
foreach ($posts as $post) {
$post_title = stripslashes($post->post_title);
$permalink = get_permalink($post->ID);
$output .= $before . ‘‘ . $post_title . ‘‘ . $after;
}
echo $output;
}Forum: Fixing WordPress
In reply to: Latests posts shows future posts ProblemI don’t want to have to do an ugly date and time comparison… :$
Forum: Themes and Templates
In reply to: Paying to have a theme designedI could do that… e-mail me at david.phoenix@gmail.com and I will send you a mock up right away.
Forum: Themes and Templates
In reply to: PhoenixThemeI love the blue, that should almost be released as a theme of its own. Great stuff. 🙂
Forum: Installing WordPress
In reply to: “You do not have sufficient permissions to access this page.”What all should be in usermeta?
I have first_name, last_name, nickname, wp_user_level, and wp_capabilitiesForum: Installing WordPress
In reply to: “You do not have sufficient permissions to access this page.”I am having the same problem. wp-config.php was not overwritten. Upload went fine.
My capabilities is listed as
a:1:{s:13:”administrator”;b:1;}
in Usermeta.Forum: Themes and Templates
In reply to: WPAndreas07Well, that is an interesting problem. I will have to do some work because I know people are going to have more categories, and whatnot than screen space allows.
Any ideas? Drop down menu in the content area or dropdowns in the sidebar?
There has to be a way to make it all work and fit nice… I will work on it today, and tomorrow.
Forum: Themes and Templates
In reply to: WPAndreas07I love your footer changes.
As for the scrollbar thing… I think it might be from your countdown plugin…