MadsK
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2.7 made a custom page template but can’t find itIs this when you enter the page after giving it the template it says that?
Forum: Fixing WordPress
In reply to: How to add image separator graphic between postsI looked through your code and it seems that the post is divided into seperated divs, which will help to do this trick.
I will try to explain this the best i can, but as i don’t know how familiar you are with html it might not be so easy to understand.
I wasn’t able to find the theme so you have to add this code yourself.
First of all connect to your host and browse to the wordpress theme folder. Find the folder for Jillij-flash and copy the index.php and style.css file to your own computer.
With a text editor open up the index.php file and look/search for <div id=”post”> – This will be the start of the post. Next find the ending <div> for it (The div will include both a div with the id entry and postmeta). Just above the closing </div> add a new div like this <div id=”postend”></div>
This will create an empty block between each post so now we need to add an image to it. I’ve created one you can use as a test and replace with your own when you make one. You can get it here:
https://img367.imageshack.us/img367/1606/damasksplitterbgsd8.gif
Place this within the theme folder under images (or change the path below in the css)
Open up the style.css file and go to the buttom and add the follow
/* Add image splitter between posts */
#postend {
background: url(images/damasksplitter_bg.gif) no-repeat;
height: 100px;
width: 1000px;
}That should do it ??
Forum: Fixing WordPress
In reply to: using get_posts twice on a page?This could help you ??
Forum: Themes and Templates
In reply to: Create an archive by category sorted by dateI think you should be able to insert this code.
// Get the last 10 posts in the special_cat category.
<?php query_posts(‘category_name=special_cat&showposts=10’); ?><?php while (have_posts()) : the_post(); ?>
<!– Do special_cat stuff… –>
<?php endwhile;?>Forum: Fixing WordPress
In reply to: wordpress is gone…but isn’t?Well i’m glad you got back “online” ??
Forum: Fixing WordPress
In reply to: 2.7 made a custom page template but can’t find itIt would be very strange if it was a platform issue.
But check this site out – there is a fix here.
https://www.elitefreelancing.com/2008/10/custom-page-templates-not-showing-up-in-wordpress/
Forum: Fixing WordPress
In reply to: Installation Problem, missing the MySQL extension ?Have you checked your host if they support MySQL?
The error your given either means that MySQL has not been uncommented in the php.ini file or that it is not available. Depending on host.
Forum: Fixing WordPress
In reply to: How to add image separator graphic between postsYou can do this with css, but it depends how your theme looks.
If each post is wrapped in its own div you can add an extra empty div at the bottom of the post div and use a background-image to seperate each post.
Which theme are you using?
Forum: Fixing WordPress
In reply to: Comment Pagnation and Ordering not WorkingIf your using wordpress 2.7 but with an “old” theme you should update the comments.php with the new changes.
Check here for info & guide:
https://ottodestruct.com/blog/2008/09/29/wordpress-27-comments-enhancements/
Forum: Fixing WordPress
In reply to: wordpress is gone…but isn’t?Have you checked your mysql database to see if the content is still there?
Forum: Fixing WordPress
In reply to: 2.7 made a custom page template but can’t find itTry making a new template with this
<?php
/*
Template Name: Archives with Content
*/
?>and then just add header, sidebar and footer.
Upload it and see if it shows up!
Forum: Fixing WordPress
In reply to: 2.7 made a custom page template but can’t find itHmm. Sounds strange. Did you put it in the “root” of the theme directory? or in a folder?
Forum: Fixing WordPress
In reply to: having the subpages in the navigation of the proper parent pageTry this
wp_list_pages(‘sort_column=menu_order&title_li=&child_of=’.$post->ID.’&depth=0′);
It graps the current ID of the page your in and shows the childs (subpages) of that particular page only!
Forum: Fixing WordPress
In reply to: 2.7 made a custom page template but can’t find itWhen you Edit or Add a new page there will be a new option to the right below the dropdown, where you can choose parent page, that says Template. ??
Forum: Fixing WordPress
In reply to: Permalink Fix – Please Help!!!Have you read this?
https://codex.www.ads-software.com/Using_Permalinks#Using_.22Pretty.22_permalinks
If not give it a try ??