basketball
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment Markup Not Showing UpEdit: disabling the more smilies plugin fixed everything.
Forum: Plugins
In reply to: Popularity Contest displays all but most popular postsI’m having a similar problem, except it’s now showing the current month but posts from 3 months earlier. I disabled Tiger Admin with no effect. Any ideas?
EDIT: Problem fixed, it was on my end, get_the_time was saying that this is March (instead of June), changed get_the_time() to date() in the plugin and it was all good.
Forum: Plugins
In reply to: Can’t find this plugin! Image viewerhttp://www.starsol.co.uk/scripts/
First link, it’s an image viewer which you can feed the title / caption through the url link.
Forum: Themes and Templates
In reply to: Can you put a contact form in a template?Check out my site: http://www.cssdesigned.com/
I used a contact form in the left side which is inside a template. I used this plugin:
http://www.deliciousdays.com/cforms-plugin
It has a ton of features and is very easy to configure using the admin interface. Or another way (which would work well under your site setup) would be to surround the contact form using conditional tags:
<?php if (is_single()) { --> contact form <-- }?>Forum: Themes and Templates
In reply to: Footer Problem – wont align to bottom of pageWhat exactly do you want add in your footer? Another image similar to the one in your header? Right now it’s just there to clear the floating elements above.
Depending on what you want to do, you can try changing:
#footer { clear : both; width : 100%; text-align : center; margin-top: auto; margin-bottom: 20px; }to
#footer { clear : both; width : 100%; text-align: center; padding: 10px 0 50px; }Forum: Installing WordPress
In reply to: Adding “non-WordPress” files to a directoryI have several sites setup on bluehost as well, except I always install wordpress myself. Never had a problem though, as long as the directory doesn’t clash with a page slug (ie. directory called downloads, and a page slug downloads, will cause issues). Otherwise it should work fine regardless of your permalink structure.
Forum: Themes and Templates
In reply to: Any Thoughts?Well just finished making all the changes, for anyone interested, you can check out the theme here:
http://www.bballcity.com/download/themes/pearly-grey/
I will try to sort out all the bugs in the next 24 hours, so feel free to leave a comment there.
Forum: Fixing WordPress
In reply to: 10 Posts from Category X in a PageJust had another idea a little while ago, and so far its working great.
Using the feedlist plugin:
http://rawlinson.us/blog/?p=212
and just parsing the feed from the category and outputting the title of each post.
🙂
I’m using it on the following page:
Forum: Fixing WordPress
In reply to: 10 Posts from Category X in a PageHrm I think that might be it, all his downloads are down right now, but I’ll give it another shot in a few hours, thanks Sam!
Forum: Fixing WordPress
In reply to: Pages -> PostsI gave up, spent the last hour hour reorganizing all my pages, and deleting the duplicate posts.
Forum: Fixing WordPress
In reply to: Errors on site / admin panelHrm I could’ve sworn I checked that but guess not. That seemed to do that trick, thanks piper5ul
On another very serious note, every single one of my pages disappeared 🙁
Forum: Fixing WordPress
In reply to: Errors on site / admin panelUpgraded to the latest version of askimet, no difference. I also disabled all my plugins and ran the default theme with the same errors. Man upgrading to 2.1 has been terrible so far…
Forum: Everything else WordPress
In reply to: Help to find the plugin for slide showCurrently using the slideshow flash gallery:
A tip for making it work with wordpress: use absolute values for everything. In the embed src / the param value / and even in the flash part where you link to the xml file
Forum: Themes and Templates
In reply to: Changing a theme question.Yup that’s pretty much exactly what it means, on my site I have some themes (ahem* templates) that were designed for wordpress ~1.2 that still work on my current design.
As long as you don’t severely change other settings you should be fine.
Forum: Themes and Templates
In reply to: Padding different in IE and FirefoxStart your css off with:
* {
margin: 0;
padding: 0;
}and try to avoid putting width and left / right padding, or height and top / bottom padding, and IE renders almost everything fine…