Bug in 1.4.1 – wpcs_slider_section()
-
We had a user of WPtouch report some problems with using WP Contact Slider with our plugin. Reviewing the code, we noticed that the closing </div> tags aren’t being output when the slider is displayed.
This appears to be due to the following code in wpcs_frontend_functions.php:
$counter++; // check to just display not more then one slider on single page if($counter == 1) break;That
breakexits thewhile ( $wpcs_query->have_posts() ) {loop, preventing the </div> tags which follow from ever being output.Moving it down below the series of </div>s resolves the problem.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Bug in 1.4.1 – wpcs_slider_section()’ is closed to new replies.