paulto16
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Front Page Slider doesn’t work in Chrome/Safari, margins changeHey thanks again for the reply. But I can’t manage to find the problem with the slideshow…
Do you have any suggestion how I could find the problematic plugin?Forum: Fixing WordPress
In reply to: Front Page Slider doesn’t work in Chrome/Safari, margins changeI think I managed to fix the slide-show. It works now in all browsers and it looks much better.. I would just like to move the the slide-show header a bit more to the right so that it ends exactly at the T of ABOUT. Does anyone know how to do that?
Forum: Fixing WordPress
In reply to: Front Page Slider doesn’t work in Chrome/Safari, margins changeAlso I get some weird notifications, like this one:
Warning: Cannot modify header information – headers already sent by (output started at /hermes/bosnaweb16a/b1583/ipg.paultoetzkecom/wp-content/themes/Hatch-Childtheme/functions.php:8) in /hermes/bosnaweb16a/b1583/ipg.paultoetzkecom/wp-includes/option.php on line 823 Warning: Cannot modify header information – headers already sent by (output started at /hermes/bosnaweb16a/b1583/ipg.paultoetzkecom/wp-content/themes/Hatch-Childtheme/functions.php:8) in /hermes/bosnaweb16a/b1583/ipg.paultoetzkecom/wp-includes/option.php on line 824
Thanks for your help!
Forum: Fixing WordPress
In reply to: Front Page Slider doesn’t work in Chrome/Safari, margins changeHi!
Thanks so much for the answer!
Soo i also thought it was because of the cache but i emptied it several times and it’s still not correct.Somehow my screenshot function doesnt work sorry.. Anyway when I am logged in firefox, everything looks more or less okay. The header is on the left, it begins exactly where the P of PAUL TOETZKE starts and on the right there is some space before the bio-text stars (somehow it is more than before though). The slideshow is working.
On Chrome and Safari (not logged in) though, the header starts at the same position as the R of JOURNALIST, which changes the size of the photo as the length is reduced. And the slideshow is not running.
Do you know how I could fix the slider problem? My home.php in the child theme looks like this:
<?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 ) ) : ?>
<?php echo do_shortcode(“[metaslider id=52]”);
?><?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( ‘size’ => ‘archive-thumbnail’, ‘image_class’ => ‘featured’, ‘width’ => 220, ‘height’ => 150, ‘default_image’ => get_template_directory_uri() . ‘/images/archive_image_placeholder.png’ ) );
} ?>
<h2 class=”post-title entry-title”>” title=”<?php the_title_attribute(); ?>” rel=”bookmark”><?php the_title(); ?></h2>
<?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 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. ?>