Special Offer: Get All 150 Premium WordPress Themes for Just $59.99 Purchase Now

contacts

How to Remove Progress Bar from Homepage Slider

How to Remove Progress Bar from Homepage Slider

In some cases you may want to remove the progress bar (the loading line until the current slide is displayed and slider proceeds with next slide), screenshot above. Here is a guide how it can be removed:

1. Login to Admin Panel -> Left Menu -> Appearance -> Theme Editor

2. Open YourTheme/inc/utilities.php

3. Find the following code:

jQuery(‘#camera_wrap’).camera({
height: tishonator_tishoIsLargeResolution() ? ‘<?php echo $sliderHeightLarge; ?>px’ : ‘<?php echo $sliderHeightMedium; ?>px’,
loader: ‘bar‘,
pagination: <?php echo $showPagination; ?>,
navigation : <?php echo $showPagination; ?>,

4. Then update it to (text marked in BOLD):

jQuery(‘#camera_wrap’).camera({
height: tishonator_tishoIsLargeResolution() ? ‘<?php echo $sliderHeightLarge; ?>px’ : ‘<?php echo $sliderHeightMedium; ?>px’,
loader: ‘none‘,
pagination: <?php echo $showPagination; ?>,
navigation : <?php echo $showPagination; ?>,

5. Save changes

Note: The above solution can applied to the following themes: tPsychology, tArt, tMuzz, tCorpo, tKidd, tGymm, tTourism, tMeditate, and tSpirituality.