remcosieb
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Fixing WordPress
In reply to: css image problem linking to pagethanks.
so what do you recommend to do in my .php file?
this is the .css#sidebar-links { float: left; background: url('images/heden.png') no-repeat; position: relative; background-color: #f2f1e1; float: left; text-align: left; width: 324px; height: 405px; -webkit-transition: .8s; -moz-transition: .8s; -ms-transition: .8s; -o-transition: .8s; transition: .8s; } #sidebar-links:hover { float: left; background: url('images/hedenbw.png') no-repeat; position: relative; background-color: #f2f1e1; float: left; text-align: left; width: 324px; height: 405px; }Forum: Fixing WordPress
In reply to: get page as get postthanks. But this still wont work. It just doesnt show anything. I want to get a thumbail from a specific post on my static frontpage.
Forum: Fixing WordPress
In reply to: Make multiple text areas in a page templatesorry for the bad link to the file 🙂
Forum: Themes and Templates
In reply to: Can't get excerpts in Hatch theme :-(thanks!! that finally worked!!
Forum: Themes and Templates
In reply to: Can't get excerpts in Hatch theme :-(Thanks for your answer but where do i put that? I can’t find the_concent in index.php or home.php…
this is the code:<?php /** * Home Template * * A custom home page template. * * @package Hatch * @subpackage Template */ get_header(); // Loads the header.php template. ?> <?php do_atomic( 'before_masthead' ); // hatch_before_masthead ?> <div id="masthead"> <?php do_atomic( 'open_masthead' ); // hatch_open_masthead ?> <?php $hatch_author_bio = hybrid_get_setting( 'hatch_author_bio' ) ? hybrid_get_setting( 'hatch_author_bio' ) : '1'; ?> <div id="author-bio"><?php the_author_meta( 'description', $hatch_author_bio ); ?></div> <div id="header-banner" role="banner"> <?php // Check to see if the header image has been removed $header_image = get_header_image(); if ( ! empty( $header_image ) ) : ?> <img src="<?php header_image(); ?>" alt="" /> <?php endif; // end check for removed header image ?> </div> <?php do_atomic( 'close_masthead' ); // hatch_close_masthead ?> </div> <?php do_atomic( 'before_content' ); // hatch_before_content ?> <div id="content"> <?php do_atomic( 'open_content' ); // hatch_open_content ?> <div class="hfeed"> <?php if ( have_posts() ) : ?> <?php $counter = 1; ?> <?php while ( have_posts() ) : the_post(); ?> <?php do_atomic( 'before_entry' ); // hatch_before_entry ?> <?php if ( ( $counter % 4 ) == 0 ) { ?> <div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?> last"> <?php } else { ?> <div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>"> <?php } ?> <?php do_atomic( 'open_entry' ); // hatch_open_entry ?> <?php if ( current_theme_supports( 'get-the-image' ) ) { get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'archive-thumbnail', 'image_class' => 'featured', 'width' => 400, 'height' => 113, 'default_image' => get_template_directory_uri() . '/images/archive_image_placeholder.png' ) ); } ?> <?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?> <?php do_atomic( 'close_entry' ); // hatch_close_entry ?> </div><!-- .hentry --> <?php do_atomic( 'after_entry' ); // hatch_after_entry ?> <?php $counter++; ?> <?php endwhile; ?> <?php else : ?> <?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?> <?php endif; ?> </div><!-- .hfeed --> <?php do_atomic( 'close_content' ); // hatch_close_content ?> <?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?> </div><!-- #content --> <?php do_atomic( 'after_content' ); // hatch_after_content ?> <?php get_footer(); // Loads the footer.php template. ?>Forum: Themes and Templates
In reply to: Can't get excerpts in Hatch theme :-(I still won’t get my site work. There is no such thing as the_content in my home or index.php.. Any help?
Forum: Themes and Templates
In reply to: Can't get excerpts in Hatch theme :-(Thanks for your quick answer. But i already tried that today. It just doesnt show the excerpts that i typed i the posts.. Is it possible that some mind of container is blocking the possibility to show it on the home screen?
Viewing 7 replies - 1 through 7 (of 7 total)