basketball
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t edit older postsDoesn’t let me edit newer posts as well, I was working on a project for a client earlier today and same thing happened. Post was less than 5 minutes old.
Forum: Your WordPress
In reply to: Bball CityDid another redesign //
Old One:
http://www.bballcity.com/images/portfolio/original/bballcityv8.png
New One:
Forum: Your WordPress
In reply to: Bball CityNew Redesign // Just finished putting it together yesterday
Site URl: http://www.bballcity.com/
*work warning // The site may require a work warning because I’ve designed it to be 14A; basically you may find the occasional hot chick on the front page in lingerie, but no nudity, uncensored profanity, or whatever.
Old Design: http://static.flickr.com/76/217868462_a2bb1bc877_b.jpg
Forum: Fixing WordPress
In reply to: Question about theme-editor (Assigning Names)Lol thanks Kafkaesqui, and now over a year later I was trying to do the same thing and found this thread through google =P
Forum: Plugins
In reply to: Best Stats Plugins?I’m using mint, the best stats program I’ve tried, better than google analytics, shortstat, and awstats (IMO)
Forum: Plugins
In reply to: Mint stat pluginHow long does it usually take the stats to show up? I’m getting a whole bunch of zeros on my page bballcity.com/statistics
Forum: Themes and Templates
In reply to: Gravatar examples (where?)Just go through forum avatar sets, I’m sure you’ll find tons
Forum: Themes and Templates
In reply to: CSS Broken in IE (What’s new, right?)put in something like:
#sidebar {
_margin: 0 -5px 0 5px;
}
for IE?
Forum: Themes and Templates
In reply to: Bball City w/ Dynamic Posts?Where did you get those 404 pages, I thought I had fixed everything so far =(
Anyways can you by chance tell me what you’re seeing on the sidebar on the right hand side? You’re supposed to get:
Services
* Graphic Design
* Web Design
* Web Development
* Rates
* Hire MeGraphic Design
* Logo design
* Banner design
* Interface design
* Image optimizationWeb Design
* Full scale redesigns
* XHTML/CSS coding
* CMS installation and customization
* Scripts, plugins, or addon installationWeb Development
* Validation
* Search engine optimization
* Speed optimization??
Forum: Your WordPress
In reply to: [>>>>] Bball City [<<<]bump;
updated with new header / menu for the site. Also fixed some opera and internet explorer issues.
Forum: Themes and Templates
In reply to: Bball City w/ Dynamic Posts?OOoh, thanks for pointing that out, I’ll have to create 2 different sidebars, so when in the archives it’ll go to the permalinks instead. 😉
Forum: Plugins
In reply to: PHP code for latest post title?Erm, change:
<?php
foreach($wpdb->get_results("SELECT ID,post_title FROM wp_posts WHERE post_status = 'publish' ORDER BY post_date DESC LIMIT 0,1") as $p){
echo "<h1><a href="".get_bloginfo('siteurl')."/?p=".$p->ID."">".$p->post_title."</a></h1>";
}
?>to
<?php
foreach($wpdb->get_results("SELECT ID,post_title FROM wp_posts WHERE post_status = 'publish' ORDER BY post_date DESC LIMIT 0,1") as $p){
echo "<h1><a href=".get_bloginfo('siteurl')."/?p=".$p->ID.">".$p->post_title."</a></h1>";
}
?>There were two extra quotation marks in the a href part. Anyways, thanks for posting the code phunky, I was stumped on this for a while. Using it on my site right now 🙂
Forum: Fixing WordPress
In reply to: Blank Admin PageNVM, oddly enough after enabling / disabling some plugins I was able to pinpoint the error to the “Post Word Count” plugin
Forum: Your WordPress
In reply to: Bball CityI hand coded the entire design.
Forum: Fixing WordPress
In reply to: Browsing Entries without RefreshingVery little, basically all I know is how to modify the moo.fx (effect library) files and stuff and get those effects working.