Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Dear Dielange,

    I replaced the entire code in the modality-image-sliders.php and it did not work. I lost some of the menu items and I got the message below. (See the bottom of the code for the error message.)

    THanks,

    Mark

    <?php /** * Modality functions and definitions * * @package Modality */ function modality_slider() { global $post; $modality_theme_options = modality_get_options( ‘modality_theme_options’ ); $slider_cat = $modality_theme_options[‘image_slider_cat’]; $num_of_slides = $modality_theme_options[‘slider_num’]; $button_text = $modality_theme_options[‘caption_button_text’]; $modality_slider_query = new WP_Query( array( ‘posts_per_page’ => $num_of_slides, ‘cat’ => $slider_cat ) );?> <div class=”clear”></div> <div class=”banner”>

      <?php while ( $modality_slider_query->have_posts() ): $modality_slider_query->the_post(); ?> <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘single-post-thumbnail’ ); ?> <li style=”background: url(<?php echo esc_url($image[0]); ?>) 50% 0 no-repeat;background-size:cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;”> <?php if ($modality_theme_options[‘captions_on’] == ‘1’) { ?> <div class=”inner”> “><h1><?php the_title(); ?></h1> <?php the_excerpt(); ?> </div> <?php if ($modality_theme_options[‘captions_button’] == ‘1’) { ?> ” class=”btn”><?php echo $button_text ?> <?php }; ?> <?php }; ?> <?php endwhile; wp_reset_query(); ?>

    </div> <div class=”clear”></div> <?php } function modality_localize_scripts(){ wp_enqueue_script( ‘slides’, get_template_directory_uri() .’/js/slides.js’ , array( ‘jquery’ ), ”, true ); $modality_theme_options = modality_get_options( ‘modality_theme_options’ ); $animation_speed = $modality_theme_options[‘animation_speed’]; $slideshow_speed = $modality_theme_options[‘slideshow_speed’]; $datatoBePassed = array( ‘slideshowSpeed’ => $slideshow_speed, ‘animationSpeed’ => $animation_speed, ); wp_localize_script( ‘slides’, ‘php_vars’, $datatoBePassed ); } add_action( ‘wp_enqueue_scripts’, ‘modality_localize_scripts’ );
    Warning: Cannot modify header information – headers already sent by (output started at /home/content/p3pnexwpnas07_data03/42/2771042/html/wp-content/themes/modality/functions/modality-image-sliders.php:57) in /home/content/p3pnexwpnas07_data03/42/2771042/html/wp-includes/pluggable.php on line 1207

    I am having the exact same issue. I’ve tried everything to get rid of the motorcycle picture. If I delete the posts, the image goes away. However, when I post again and include my featured image, the darn motorcycle comes back. Please help.

Viewing 2 replies - 1 through 2 (of 2 total)