xare
Forum Replies Created
-
Forum: Plugins
In reply to: [TotalPoll for Polls and Contests] Limiting poll responses by userHello I click on the link “User vote once per poll” addon which is above but I can´t find the addon you mention. I have purchased totalpoll pro but this very essential feature is missing.
you may want to use min-width properties for the central column.
An example here:
http://www.gencat.net/index_eng.htmForum: Fixing WordPress
In reply to: Problems using strip_tags with the titleoops I have just used and not used the backticks code enveloppes to not to make a not understandable mess out of my post 🙁
Forum: Fixing WordPress
In reply to: How can I view a post before it’s publish data?I wished that was the reason but it is not. The pattern they follow to turn up in single.php template is the date. Once we are over the date the post can be easily seen.
I am making most of the templates by hand so I thought it might be a problem with programming the loop.
Here is the code I use:
<?php get_header(); ?>
<div id=”content” class=”widecolumn”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”entrytext”><?php the_excerpt(); ?>
<?php the_content(‘<p class=”serif”>Sartu sarrera osoa »’); ?><?php link_pages(‘Orriak: ‘, ”, ‘zenbakia’); ?>
</div>
</div><?php endwhile; else: ?>
ERROR!.
<?php endif; ?>
</div>
<?php get_footer(); ?>