makemead
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Using wordpress to host church sermonsThe church decided to go with the pastor’s son as web designer so my links above don’t work anymore but they files are still hosted in the same place and you can view them below:
http://www.imaginekitty.com/eaglesnestministrieshttp://www.imaginekitty.com/eaglesnestministries/sermons
http://www.imaginekitty.com/eaglesnestministries/2007/03/25/focus-determines-future/
greenpeas, the list of recent sermons is controlled by a modified version of Customizable Post Listings plugin by Scott Reilly. The flash based mp3 player is Audio Player by Martin Laine.
Forum: Plugins
In reply to: List of recent posts (Plugin: Customizable Post Listings)Please note that the term_taxonomy_id does not necessarily represent the category ID so you must check the wp_term_taxonomy table to get the correct number for the category. The term_id is the old category number but you must use the term_taxonomy_id number as your $category.
This plugin needs to be rehashed a bit. 🙂
Forum: Plugins
In reply to: List of recent posts (Plugin: Customizable Post Listings)anekola, your fix worked for me. You rock! 🙂
Forum: Fixing WordPress
In reply to: Error from any activity in adminAw, be nice. 🙂
Thanks who.
I didn’t see it as I came directly to the troubleshooting page and didn’t look at the stickies on the main page. 🙂
Forum: Fixing WordPress
In reply to: Display WordPress posts on Vbulletin page-how?Look up http://www.aarondunlap.com
The RSS_GET.php script should at least get you started.
Hope this helps. 🙂
Forum: Fixing WordPress
In reply to: Display WordPress posts on Vbulletin page-how?Actually yes. Let me look up something and I’ll get back to you.
Forum: Fixing WordPress
In reply to: more than one post pageI meant that I assigned different categories using my switch statement in page.php
switch ($post->ID) {
case '9': /* page ID */
$cats = '8'; /* category to show */
break;case '10':
$cats = '9';
break;That means that the page with the ID of 9 gets all posts with the category ID of 8
The page with the ID of 10 gets all the category 9 posts.
If you look at your “Manage -> Pages” control panel it give you the ID number of the pages and if you look at “Manage -> Categories” control panel it give you the ID number of the categories. Then you just have to add more to the switch statement. The default part of the switch statement allows all of your regular pages to have no posts added to them.
Forum: Fixing WordPress
In reply to: Placing HTMLOK, to edit the look of your page you go to the wp-content/themes/ then open the folder of the theme you are using for your blog. If you haven’t changed it in your admin panel it will be the default folder
To add something to your sidebar you will see a file in your theme folder called sidebar.php
You will notice some php mixed in with the html so try to figure out what does what. Add your new html in upload and test. Make sure you keep a backup of the original files incase you really mess things up (we’ve all been there). 🙂
Hope that’s what you were asking about.
Forum: Fixing WordPress
In reply to: Placing HTMLActually, I have no idea what you are asking. 🙂
If you want the actual code to show in your posts put it in the
<code>tags or just use the code button.What is it you are trying to do?
Forum: Fixing WordPress
In reply to: more than one post pageI do this a different way. I installed the customizable-post-listings plugin and assign different categories to different pages. Basically, I have each page showing one category each but you can separate it any way you’d like.
I’ve used this technique at staffstone.com and eaglesnestministries.com
I’ve modified page.php in the following way:
switch ($post->ID) { case '9': /* page ID */ $cats = '8'; /* category to show */ break; case '10': $cats = '9'; break; <snip> default: $skip = true; } if (!$skip) { c2c_get_recent_posts ($num_posts = 15, $format = "<h3>%post_URL%</h3>%post_content% <p class=\"time\" style=\"border:none;\"><a>%comments_fancy%</a> <p class=\"time\">%post_date% ", $categories = $cats, $orderby = 'date', $order = 'DESC', $offset = 0, $date_format = 'F jS, Y', $authors = '', $include_passworded_posts = false); } ?>Forum: Fixing WordPress
In reply to: Display WordPress posts on Vbulletin page-how?I’d look into using the built in RSS feed.
Forum: Fixing WordPress
In reply to: Please help, how can i hide thisIt is in a box ahead of each post and below the title. Is there any way I can remove this?
Check single.php in your theme
Also is there anyway I can stop people from copy/paste my articles? Can i stop people from highlighting my text?
There is one sure-fire way. Don’t post your articles on the internet.
Forum: Fixing WordPress
In reply to: Apostrophe in the sidebarFixed it by adding
$output = stripslashes($output);after line 314
$output = apply_filters('wp_list_pages', $output);
in post-template.phpForum: Fixing WordPress
In reply to: PHPExec not running php in posts/pagesSame here. An old blog that has been updated is running fine but a new one will not use the phpExec plugin. It has something to do with the < in the posts being transformed into <
I wish wordpress would stop screwing with my code. If I put it in there I want it in there.
Forum: Fixing WordPress
In reply to: Using wordpress to host church sermonsI am also using WordPress to post sermons for my Pastor.