hankeester
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: adding space between postsEsmi,
thanks for the reply, this has worked.
Forum: Fixing WordPress
In reply to: adding space between postsForum: Plugins
In reply to: anyfont plugin helpThank you Choon for the reply,
I think I’ll wait til the new version comes out to do this.
I’ve looked over the index file but am lost as to which code
I need to modify.Forum: Plugins
In reply to: Deactivating AnyFont plugin causes 500 Internal Server Errorquick question on this plugin.
I uploaded a couple of fonts, created style names for the fonts but I don’t understand from the authors instructions how to activate fonts within my post titles. He says something about code snippet but I’m not sure where to insert this code. Is it inserted into php file or the css file? Any help would be appreciated on where the code goes so I can use this Any Font plugin
Forum: Fixing WordPress
In reply to: retrieving API key is stupidthanks,
WordPress doesn’t even have a good explanation of instructions for this. I had to find a third party for instructions. I will install Statpress plugin, none of this sh*t is worth the hassle.
Thanks for the help
Forum: Fixing WordPress
In reply to: viewers can edit my entries?does role manager plug-in not work with WP 2.7? I was able to install but when I go into control panel/plugins, then I hit the edit button, I get one big window of coding?
Forum: Fixing WordPress
In reply to: recent posts are linked to contact page when clicked onproblem resolved, I used a custom structure that solved both issues and is more SEO friendly…
Forum: Fixing WordPress
In reply to: recent posts are linked to contact page when clicked onI found out why this is happening but unsure how to fix it. I changed my permalink structure to custom structure /contact. I had to for my contact form that I’m using to work. I changed the permalink back to the default which is url/?p=123 which corrects the initial problem but now my contact page doesn’t work. How can I creat an additional permalink for the contact page and set the custom struture back to /contact so it’s referencing contact only?
Forum: Themes and Templates
In reply to: want more than 1 post on homepageyes, I’ve read that multiple loops are a different story…
which leads me to think I should be happy with only one post; then secondary posts being posted under the “recent post” category….Forum: Themes and Templates
In reply to: want more than 1 post on homepageLIKE THIS: BUT STILL NOT WORKING
<?php get_header(); ?>
<query_posts($query_string. ‘&showposts=7’);>
<?php if (have_posts()) : the_post(); ?><!– start content –>
<div id=”content”>Forum: Themes and Templates
In reply to: want more than 1 post on homepageI should’ve added on the last post that I tried that when I was inserting the code. I put the string after and before. There is a 2nd column that’s titled recent posts. This is where the previous posts roll over to. Does the code for the “recent posts” need deleted or modified?
Forum: Themes and Templates
In reply to: want more than 1 post on homepageI added this after the <?php if (have_poste()) : the_post();
query_posts($query_string.’&showposts=7′);
above is what was added since I did not see a “show_posts”
but nothing is happening..I’m sure I’m inserting into the
wrong place, I’m not php script savvy.Forum: Themes and Templates
In reply to: want more than 1 post on homepageHere is the code from the index.php within the theme folder I’m using.
I’m stumped on it. I see a have_posts but no “show_posts”. Where would I add the string of code you pointed out above?<?php get_header(); ?>
<?php if (have_posts()) : the_post(); ?>
<!– start content –>
<div id=”content”>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h1 class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h1>
<p class=”meta”><small>Posted on <?php the_time(‘F jS, Y’) ?> by by <?php the_author() ?> <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?></small></p>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<p class=”links”><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?> ” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”>Permalink</p>
<p class=”tags”><?php the_tags(‘Tags: ‘, ‘, ‘, ‘ ‘); ?></p>
</div>
</div>
<!– end content –><!– start sidebar one –>
<div id=”sidebar1″ class=”sidebar”>-
<li id=”recent-posts”>
<h2>Recent Posts</h2>-
<?php while (have_posts()) : the_post(); ?>
Forum: Themes and Templates
In reply to: want more than 1 post on homepageThanks for the reply, I will try editing the index.php file within the particular theme I’m using…
Forum: Fixing WordPress
In reply to: only showing one posthere is the code for the index.php file. I’m not to savvy with php coding but pretty sure I need to change something within this code.
Anyone??<?php get_header(); ?>
<?php if (have_posts()) : the_post(); ?>
<!– start content –>
<div id=”content”>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h1 class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h1>
<p class=”meta”><small>Posted on <?php the_time(‘F jS, Y’) ?> by by <?php the_author() ?> <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?></small></p>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<p class=”links”><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?> ” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”>Permalink</p>
<p class=”tags”><?php the_tags(‘Tags: ‘, ‘, ‘, ‘ ‘); ?></p>
</div>
</div>
<!– end content –><!– start sidebar one –>
<div id=”sidebar1″ class=”sidebar”>-
<li id=”recent-posts”>
<h2>Recent Posts</h2>-
<?php while (have_posts()) : the_post(); ?>
-
<h3>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h3>
<?php the_excerpt() ?>
<?php endwhile; ?>
</div>
<!– end sidebar one –><?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php include (TEMPLATEPATH . “/searchform.php”); ?><?php endif; ?>
<?php get_sidebar(); ?>
<!–
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Older Entries’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Newer Entries »’) ?></div>
</div>
–><?php get_footer(); ?>
-
<h3>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h3>