koning75
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Were does the visitor send the contactform from?Thanks
Forum: Plugins
In reply to: [Simplr Registration Form Plus+] Send Password in MailHi,
I have the same problem. I’ve adden the code %%password%% to the moderation Email but without any effect.
I’ve added the %%password_url%% to see if that works but nothing either.
Then I’ve added the field that the user can create its won password but on registration still no password or url to set it in the moderation mail.
I prefer not to use the option that the user can set their own password, I prefer that this goes automatic. Just to have a smaller form to registrate.
I would Also like to have only one email field, itstead of the 2 I have right now. Can I change this?
Forum: Plugins
In reply to: [Wordpress Simple Survey] Were can I find the shortcodesAnybody available
Forum: Fixing WordPress
In reply to: Contentblocks from pages on homepageHope You still can find a moment for an answer.
I’ve made a new template, oneculumn-homepage.php. In there I would like do display the content (which already is) and some contentblock of other pages in the website. How can I write that in?‘
<?php get_header(); ?>
<div id=”container” class=”one-column”>
<div id=”content” role=”main”><?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<h1 class=”entry-title”><?php the_title(); ?></h1>
<div class=”entry-content”><?php the_content(); ?>
<?php wp_link_pages( array( ‘before’ => ‘<div class=”page-link”>’ . __( ‘Pages:’, ‘twentyten’ ), ‘after’ => ‘</div>’ ) ); ?>
<?php edit_post_link( __( ‘Edit’, ‘twentyten’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>
</div><!– .entry-content –>
</div><!– #post-## –><?php comments_template( ”, true ); ?>
<?php endwhile; ?>
</div><!– #content –>
</div><!– #container –><?php get_footer(); ?>’
Forum: Fixing WordPress
In reply to: Contentblocks from pages on homepageMarventus, did I understand it right that the use of the loop is used to loop posts. I’d like to loop some specified pages on my frontpage.
I’ve read the loop in action page and the loop. Can’t find anything about looping some pages.
Forum: Fixing WordPress
In reply to: Contentblocks from pages on homepageThanks Marventus, I’ll check it out later this day.