baszer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Add jquery script the right wayit’s locally runned
Forum: Themes and Templates
In reply to: Add jquery script the right waydoesn’t work, is my script ok?
Forum: Themes and Templates
In reply to: Get title in thumbnail arraythanks esmi, did the trick!
Forum: Plugins
In reply to: [Football Pool] [Plugin: Football Pool] Better Configurable scoring options.for people who want a better pool: https://voetbalpool2012.nl/
Forum: Themes and Templates
In reply to: Static front page not workingHuh?! I thought I tried this already ??
THANKS ESMI!
(can you tell me what this does?
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("paged=$paged"); ?>
Forum: Themes and Templates
In reply to: background photo to stretch when the page is stretchedForum: Themes and Templates
In reply to: Going next page on home pageForum: Themes and Templates
In reply to: Fields missinng in standard posttypes (page / post)the following code is my custom post type
I really hope somebody knows what I am doing wrong!
Forum: Themes and Templates
In reply to: URL image in themeFor anybody who has the same problem.
.wp-caption IMG { width: auto; height: auto; max-width: 100%; }
Forum: Themes and Templates
In reply to: Function Reference/previous post linkfixed:
<div id="nav-above" class="navigation"> <div class="nav-previous"><?php previous_post_link ( '« %link', '%title' ) ?></div> <div class="nav-next"><?php next_post_link( '%link »', '%title' ) ?> </div> </div>
Forum: Themes and Templates
In reply to: URL image in themeok, so it’s a CSS problem. Thanks.
But you don’t give hints? ?? (because ofcourse I already tried)
Forum: Themes and Templates
In reply to: URL image in themeI have firebug. But with that program it wouldn’t give the CSS solution?
Forum: Themes and Templates
In reply to: RSS not workingyes I already found that post. I deleted all blank spaces, but nothing helped.
Forum: Themes and Templates
In reply to: RSS not workinganybody an idea?
Forum: Themes and Templates
In reply to: Custom comment templateGot it!
For everybody who has the same problem:
<?php comment_form( array( 'fields' => apply_filters( 'comment_form_default_fields', array( 'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>', 'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>', 'url' => '', )), 'title_reply' => __( 'Leave a Reply' ), 'title_reply_to' => __( 'Leave a Reply to %s' ), 'cancel_reply_link' => __( 'Cancel reply' ), 'label_submit' => __( 'Post Comment' ), )); ?>