ronald73
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Caption removes white line (<br>) in Firefoxanother problem:
when using the excerpt, the captiontext is shown before the excerpt of the post. Needless to say this is also not wanted, any solution to those 2 (hopefully small) problems?If not, I can’t be using captions (and I want to!).
Forum: Themes and Templates
In reply to: No sidebar when reactions are turned offanyone any idea?
Forum: Fixing WordPress
In reply to: Add ‘end date’ or ‘end time’ to a post?No, i don’t want to make events. I want to write a normal post in any category I choose, but with the option to have it autodeleted on the time and date I choose.
If I would use events to do this, I would be able to autodelete the event, but the post it is linked to will still remain. And my main goals is to remove the post.
Forum: Fixing WordPress
In reply to: Add ‘end date’ or ‘end time’ to a post?google is wonderful, but it doesn’t bring the answer. Auto delete plugin is not what I’m looking for.
Quote: “The Auto Delete Posts plugin can be used to delete ALL POSTS after an expiration date has elapsed.”
I don’t want all posts to be autoremoved, I want to be able to give individuel posts an end time, to be automatically removed.
Is there a plugin that makes this possible?
Forum: Fixing WordPress
In reply to: Add ‘end date’ or ‘end time’ to a post?so there is no way to do this?
Forum: Fixing WordPress
In reply to: Add ‘end date’ or ‘end time’ to a post?Please anyone?
There must be a way to do this, who knows how?
HELP!Forum: Fixing WordPress
In reply to: 2.5 No longer sending comment email notificationand same for me. No e-mails since a few days.
Forum: Fixing WordPress
In reply to: Error message after editing a postanyone?
Forum: Themes and Templates
In reply to: Sidebar problemI figured it out myself. Made a new pagetemplate for the forum and it works! Thanks all for all the help!
Forum: Themes and Templates
In reply to: Sidebar problemOk, where exactly do I have to put the code? Here is the code from page.php as it is right now:
<?php get_header(); ?>
<div id=”content”>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<div id=”contentleft”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1>” rel=”bookmark”><?php the_title(); ?></h1>
<?php the_content(__(‘Klik om verder te lezen’));?><div style=”clear:both;”></div><!–
<?php trackback_rdf(); ?>
–><?php endwhile; else: ?>
<p><?php _e(‘Sorry, geen berichten die overeen komen met uw criteria.’); ?></p><?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« ga terug’), __(‘zoek verder »’)); ?></div>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
</div>
<!– The main column ends –>
<?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Sidebar problemas you are so helpful, I’d like to give you another problem.
Is there a way to have the right sidebar NOT show up, but only when the page ‘forum’ is clicked?
see: https://www.tennispraat.nlSo I want it as it is right now for whatever they do on the site, but only when someone goes to the forum I want the right sidebar gone and more space for the forum.
Forum: Themes and Templates
In reply to: Sidebar problemIt worked!
Thanks.Forum: Themes and Templates
In reply to: Sidebar problemIt doesn’t, see the code:
<?php get_header(); ?>
<div id=”content”>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<div id=”contentleft”>
<?php echo category_description(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1>” rel=”bookmark”><?php the_title(); ?></h1>
<p>Geschreven op <?php the_time(‘j F Y’); ?>, <?php the_time(‘G.i’); ?> uur.
Geplaatst in de rubriek <?php the_category(‘, ‘) ?> | <?php comments_popup_link(‘Geef een reactie’, ‘1 Reactie’, ‘% Reacties’); ?></p>
<?php the_content(__(‘Klik om verder te lezen’));?><div style=”clear:both;”></div><!–
<?php trackback_rdf(); ?>
–><?php endwhile; else: ?>
<p><?php _e(‘Sorry, geen berichten komen overeen met uw criteria.’); ?></p><?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« ga terug’), __(‘zoek verder »’)); ?></div>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
</div>
<!– The main column ends –>
<?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Sidebar problemIt did work, thanks! A lot!
But…just one small problem left.
The site looks good in both IE and Firefox, but when you click on a category, it looks good in IE, but in Firefox the content starts just a little lower than it should.See: https://www.tennispraat.nl (to see the category, just click on any text under ‘rubrieken’ in the left sidebar.
Forum: Themes and Templates
In reply to: Sidebar problemthere are already 2 sidebars, this is how the index.php looks like:
<?php get_header(); ?>
<div id=”content”>
<div id=”contentleft”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1>” rel=”bookmark”><?php the_title(); ?></h1>
<p>Geschreven op <?php the_time(‘j F Y’); ?>
Geplaatst in de rubriek <?php the_category(‘, ‘) ?> | <?php comments_popup_link(‘Reageer!’, ‘1 Reactie’, ‘% Reacties’); ?></p>
<?php the_content(__(‘Klik om verder te lezen’));?><div style=”clear:both;”></div><!–
<?php trackback_rdf(); ?>
–><?php endwhile; else: ?>
<p><?php _e(‘Sorry, geen berichten die overeen komen met uw criteria.’); ?></p><?php endif; ?>
<h3>Reacties</h3>
<?php comments_template(); // Get wp-comments.php template ?></div>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
</div>
<!– The main column ends –>
<?php get_footer(); ?>