Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter naved90

    (@naved90)

    One more issue is there that has not been solved even after the update too and that is as soon as I activate this plugin on any site the widget background screen shifts down and the widget area sections appear bigger than normal. it is a bug I guess so in this plugin ?

    Thread Starter naved90

    (@naved90)

    Hello, Thanks for the time you are devoting toward my problem. I really appreciate it.

    I am sorry but I think I am doing some thing wrong as I can’t see the post counter at the front end.

    Below I am attaching my file if you can please let me know what I am doing wrong.

    <?php
    // Frontend View of Slider
    
    // Enqueue Stylesheet and Script only where loaded
    wp_enqueue_style( 'recent-posts-flexslider-widget-styles' );
    wp_enqueue_script( 'recent-posts-flexslider-script' );
    
    // Query DB for slides
    $flex_args = array(
        'cat' => $categories,
        'post_status' => 'publish',
        'post_type' => $post_type_array,
        'showposts' => $slider_count,
        'ignore_sticky_posts' => true,
    );
    
    $flex_query = new WP_Query( $flex_args );
    
    // Call class to display slider
    $display = new Recent_Posts_FlexSlider();
    
    ?>
    
    <h3 class="flexslider-title"><?php if ( !empty( $title ) ) { echo $title; }; ?><?php $output .= '<span class="post-count">' . $count . '/' . $slider_count . '</span>'; ?></h3>
    
    <div id="slider-wrap">
        <div class="flexslider" <?php /* Remove margin if only one slide */ if($slider_count == 1) { echo 'style="margin: 0;"'; } ?>>
            <ul class="slides">
                <?php
    			if ( $flex_query->have_posts() ) : while( $flex_query->have_posts() ): $flex_query->the_post();
                              $count = 1;
                    $output = '<li style="text-align:center; max-height: ' . $slider_height . 'px;">';
    
                    	// Start link of slide to post (option set on Appearance->Widgets)
    					if($post_link == 'true'):
                    	    $output .= '<a href="' . get_permalink() . '" title="' . get_the_title() . '">';
                    	endif;
    
                            $output .= '<div style="height: ' . $slider_height . 'px">';
                                $output .= $display->get_recent_post_flexslider_image( $image_size );
                            $output .= '</div>';
    
    						// Display Post Title and/or Excerpt (option set on Appearance->Widgets)
    						if($post_title == 'true' || $post_excerpt == 'true'):
    							$output .= '<div class="flexslider-caption"><div class="flexslider-caption-inner">';
    								if($post_title == 'true'):
    									$output .= '<h3>' . get_the_title() . '</h3>';
    								endif;
    								if($post_excerpt == 'true'):
    									$output .= '<p>' . $display->recent_post_flexslider_excerpt(get_the_content(), $excerpt_length) . '</p>';
    								endif;
    							$output .= '</div></div>';
    						endif;
    
                    	// End link of slide to post (if option is selected in widget options)
    					if($post_link == 'true'):
                    	    $output .= '</a>';
                    	endif;
    
                    $output .= '</li>';
    
    				echo $output;
                                   $count++;
                endwhile; endif; wp_reset_query();
    			?>
            </ul>
        </div>
    </div>
    
    <script type="text/javascript">
    (function ($) {
    	"use strict";
    	$(function () {
          jQuery('.flexslider').flexslider({
            animation: "<?php echo $slider_animate; ?>",		// String: Set the slideshow animation (either slide or fade)
            slideshowSpeed: <?php echo $slider_pause; ?>,		// Integer: Set the speed of the slideshow cycling, in milliseconds
            animationSpeed: <?php echo $slider_duration; ?>,	// Integer: Set the speed of animations, in milliseconds
          });
    	});
    }(jQuery));
    </script>
    Thread Starter naved90

    (@naved90)

    First of all thanks you very much for helping me out. I am very much grateful to you.

    After following your instructions I am getting this message on the fronted end. May be I am doing something silly.

    ` Parse error: syntax error, unexpected ”</span>” (T_CONSTANT_ENCAPSED_STRING) in C:\xampp\htdocs\newztrack\wp-content\plugins\recent-posts-flexslider\views\display.php on line 27

    Thread Starter naved90

    (@naved90)

    Thanks a lot Mike,
    You have been a great help to me. 🙂

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