jsleeper
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Showing only 1 post from a specific topic on homepageoh yeah, plugin…. that would be easier. when i first did this (though backwards, i wanted it so that one of my categories would not show up on my home page) i don’t think that there was a plugin for that yet.
??
Forum: Fixing WordPress
In reply to: Showing only 1 post from a specific topic on homepagein the index.php in your template file (under wp-content/themes) under this line:
<?php while (have_posts()) : the_post(); ?>
add this line, replacing 10 with the category number of your daily thought category:
<?php if ( (in_category('10'))) { ?>
Then above this line:
<?php endwhile; ?>
Add this line:
<?php } ?>
This might not be the cleanest way to do it, but it should get the job done. It’ll cause the wordpress loop to only display posts in that category and if you’ve told it to only display one post then you should be all set.
Forum: Fixing WordPress
In reply to: widening a blogin your style.css file, first you need to widen #rap, which is the container which holds all other containers. This will give you the room to widen #content, which is your middle container. Theoretically you should be able to add the same number of pixels to each container thus making the page wider – I didn’t look at your css or your site long enough to see if margins or padding or anything else like that will screw that up. try it out and see if it works. good luck.
Forum: Plugins
In reply to: Quick and Easy Permalink Questionit’ll probably only break something if you or anyone else has the url’s of the old permalink structure linked from somewhere else… wp will update itself with the new structure when you make the change.
Forum: Fixing WordPress
In reply to: Just Upgraded to 2.0 and have a few questionsWhen you did the upgrade, did you upload the files inside the wp-content/plugins directory? There is the wp-db-backup.php file and the akismet directory that need to be uploaded so that they will be in your plugins list. if you didn’t initially do that all you need to do is go to the unzipped wordpress directory, navigate to these files and upload them to your webserver…
Forum: Plugins
In reply to: How do I install plugin with Mac Firefox?it’s no different in mac… unzip the file, copy autometa.php to the wp-content/plugins directory, login to the control panel and enable the plugin.
Forum: Fixing WordPress
In reply to: Next Page link is broken (extra directories)Under your site admin, options, what is the blog address listed as? check that it’s https://www.myblog.com/forum/ instead of https://www.myblog.com/forum/myblog/forum. Your wordpress address should probably be the same as this address.
Forum: Themes and Templates
In reply to: CSS stylesheet not working with sitei copied and pasted the url of the style sheet that you have listed above… it came up empty – no 404 just empty. check the contents of the file as it is on the server or check that it’s actually readable by the webserver…
Forum: Plugins
In reply to: WordPress Email Notification Plugin v2.3.0I’m getting the same error as nuessly (the no database selected error)… i don’t have time to investigate (since I am travelling so much) so i unfortunately had to deactivate the plug in and take the subscribe form off of my index page ??