the_doctor199
Forum Replies Created
-
Forum: Plugins
In reply to: Facebook comments URL ErrorLooking at the problem again, is it searching for a URL with a “?” at the end of it? If so, how can I solve that problem? I noticed the problem when someone commented on a blog post and it posted it on their Facebook page and the link doesn’t work that’s posted as their status (as it has a ? on the end of the URL.)
It’s loading slowly here too. Not on the main page where the comments actually are, on my Blog page (just has a thumbnail linking to the article, where the comments are), any ideas why this could be?
Forum: Fixing WordPress
In reply to: “Broken theme” “template missing” help!Anyone?
Forum: Fixing WordPress
In reply to: “Broken theme” “template missing” help!Anyone any ideas on the above post?
Forum: Fixing WordPress
In reply to: “Broken theme” “template missing” help!To restart an old thread, I’m having the same problem that when I upload a theme, on the theme panel I’m getting the error that there is no template. The theme I’m trying to use is this one. Hope you can help ??
Forum: Themes and Templates
In reply to: Different headers on each pageSorted!
Forum: Themes and Templates
In reply to: Different headers on each pageIs it possible to have different sized headers on each page? I want a larger one on my homepage than on the rest. Do I have to change the code in the css file? If so, what to?
Forum: Fixing WordPress
In reply to: Changed htaccess file and posts not showingThanks samboll. Could you give me more detail on how to do the above? Im still quite new to this..
Cheers
Forum: Plugins
In reply to: Looking For: Mailing List Plug-In/WidgetAnyone?
Forum: Plugins
In reply to: Looking For: Mailing List Plug-In/WidgetI too am looking for something similar. Hopefully something to put in my sidebar to allow visitors to enter their email and I send them an email with news once a month or so..
Forum: Fixing WordPress
In reply to: How to fix browser problemsEdited post..
I uploaded my files instead of the originals! That’s the original online now!
Forum: Fixing WordPress
In reply to: How to fix browser problemsAha! The footer.php file was empty, i’ve now edited it with what you suggested.
Forum: Fixing WordPress
In reply to: How to fix browser problemsIm using a template I created called ‘No Sidebar’, the code for it is below..
<?php
/*
Template Name: No Sidebar
*/
?><?php get_header(); ?>
<div id=”content” style=”width:975px; padding-right:0px; border-right:0px;”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”entry”><?php the_content(‘Read the rest of this entry »’); ?>
<br clear=”all” />
<?php endwhile; else: ?>
<div class=”entry”>
<p><b>Sorry, but you are looking for something that isn’t here.</b></p>
</div>
<?php endif; ?>
<div class=”entry”>
<p><?php next_posts_link(‘« Older Entries’) ?> <?php previous_posts_link(‘Newer Entries »’) ?></p>
</div>
</div><?php get_footer(); ?>
Again, thanks for your help ??
Forum: Fixing WordPress
In reply to: How to fix browser problemsJust re-uploaded the page.php to make sure it was the correct one I was using and it is, do you want me to paste in any other pages?
Forum: Fixing WordPress
In reply to: How to fix browser problemsI just checked the code for page.php and the footer code was already there, this is the code that I currently have on that page..
<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”entry”>
<h1 id=”post-<?php the_ID(); ?>”>” rel=”bookmark”><?php the_title(); ?></h1>
<?php the_content(‘Read the rest of this entry »’); ?>
<div class=”info”>
<p class=”infoleft”>Posted: <?php the_time(‘F jS, Y’); ?>
<?php _e(“at”); ?> <?php the_time(‘g:ia’); ?> by <?php the_author() ?> <?php edit_post_link(‘Edit’); ?></p>
<p class=”inforight”> <?php if ( the_tags(‘Tagged with ‘, ‘, ‘) ) ?></p>
<br clear=”all” />
<p class=”infoleft”>Categories: <?php the_category(‘,’) ?></p>
<p class=”inforight”>Comments: “><?php comments_number(‘No comments’,’1 comment’,’% comments’); ?></p>
<br clear=”all” />
</div>
<?php if ( comments_open() ) comments_template(); ?>
</div>
<?php endwhile; else: ?>
<div class=”entry”>
<p><b>Sorry, but you are looking for something that isn’t here.</b></p>
</div>
<?php endif; ?>
<div class=”entry”>
<p><?php next_posts_link(‘« Older Entries’) ?> <?php previous_posts_link(‘Newer Entries »’) ?></p>
</div>
</div><div id=”sidebar”>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?><?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
</div><?php get_footer(); ?>