derrick.derrick
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Automatic image resizing in blog posts?SOLVED!
The problem was in single.php. There were two options there, $height and $width. I adjusted them to my specifications and it worked like a charm.
Hope this was helpful to someone!
Forum: Fixing WordPress
In reply to: Text editing capability?I’ll have to do some research into Child Themes, thanks for the tip!
I went into Discussion and deselected “Allow people to post comments on new articles”, however it’s still possible to leave comments. Where should I look next?
I contacted the developer and let him/her know of the issue, I’m sure it’s just a small oversight.
Thanks again!
-DerrickForum: Fixing WordPress
In reply to: Text editing capability?The offending code was in header.php. Thanks! I’m having some other issues though. Whenever I make a new blog post, the header on the page changes to the title of the blog post. Ex, “Test1” or “Test2”. I’d like to be able to make blog posts but have the header at the top of the page just remain static and not change. Is there any way to edit this?
Also, I don’t want comments. Is there a way to turn comments off in the blog?
Forum: Fixing WordPress
In reply to: Text editing capability?Thanks for the reply, but I’ve already tried that unfortunately. When viewing the index.php file, this is all the code I see:
<?php get_header(); query_posts( 'posts_per_page='.get_option_tree('blog_posts_nr').'&paged='.$paged.'&cat='.$cat.'&author='.$author.'&tag='.$tag ); ?> <div class="inner"> <?php $the_template = get_option_tree('blog_template'); if($the_template){ $the_template = strtolower((str_replace (" ", "-", $the_template))); include "templates/blog/".$the_template.".php"; }else{ include "templates/blog/right-sidebar-1.php"; } ?> <?php get_footer(); ?>Unfortunately none of this code contains the offending code that I wish to remove. It must be a different file other than the index.php. Any ideas?
Forum: Fixing WordPress
In reply to: Text editing capability?Also, I would like to edit or delete the “sample page”.
On the sample page on the bottom it say: “As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!”
However, in my dashboard, there is nowhere to delete the sample page. It seems like it should be easy, but it just doesn’t exist. Any ideas?