This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

BX Slider by TRS

Description

WordPress Slider plugin based on BX Slider. This plugin has multiple features like Full Width Slider, Logo Slider and Ticker Slider etc. This plugin provides wide range of hooks that any user can get result as his/her own requirement without touching core files.

Please note that this plugin will always free and all of its future releases and updates will always be free. But we accept donations for future work.

Special Features

  1. jQuery Easing
  2. Vertical and Horizontal mode
  3. Slider Ticker & options
  4. Drag & Drop sorting
  5. Support of Images and Videos
  6. Many filter hooks are available to do almost any task / changing without touching core.
  7. Slider Options
  8. Slider short code
  9. Slider adaptive height
  10. much more

Screenshots

Installation

Upload the plugin to your blog, Activate it and have fun.

FAQ

Does this plugin work with newest WP version and also older versions?

Yes, this plugin works really fine with newest version as old version!

I want to wrap slider output in a div element

You can use trs_bx_slider_return_shortcode_html filter like this way.

    add_filter('trs_bx_slider_return_shortcode_html', 'test_func', 10, 3);
    function test_func( $slider, $slider_id ){
        if (absint($slider_id) === 4){
            $html = '<div class="your-custom-class">';
            $html .= $slider;
            $html .= '</div>';

            return $html;
        }

        // default
        return $slider;
    }

I am getting error that Extension of provided images / video is not supported. Please read documentation.

You are getting this error because you are using image or video that is supported by BX slider by TRS.
We support mp4, webm and ogg video type that is compatible with HTML video element. Same in case with images.
But you can extend and add your own extensions by using below filters.

    'trs_bx_slider_add_image_types'
    'trs_bx_slider_add_video_types'

Example:
Add More Images Extensions

    add_filter('trs_bx_slider_add_image_types', 'test_func', 10);
    function test_func( $image_types ){
        $image_types[] = 'dwg';
        $image_types[] = 'any-other-image-extension';


        return $image_types;
    }

Add More Videos Extensions

    add_filter('trs_bx_slider_add_video_types', 'test_func', 10);
    function test_func( $video_types ){
        $video_types[] = 'mp3';
        $video_types[] = 'avi';
        $video_types[] = 'any-other-video-extension';

        return $video_types;
    }

Reviews

Hunyo 14, 2017 1 reply
Hi, Today I used your plugin. I found it flexible and easy. I suggest to add more features in this plugin. Regards,
Read all 2 reviews

Contributors & Developers

“BX Slider by TRS” is open source software. The following people have contributed to this plugin.

Contributors

Translate “BX Slider by TRS” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

v 2.1.1

  • Tested with latest WordPress version
  • Removed the demo link and donation link
  • Update the readme file

v 2.1

  • jQuery easing feature is now enabled.
  • BX Slider option for ‘Manual show without infinite loop’ is now added.
  • Show / Hide pager feature is now available.
  • Slider Mode [Vertical / Horizontal added] is now available.
  • Ticker mode is now available
  • Settings for Standard Responsive Carousel is now available.
  • limit WordPress Media to choose only one item at a time.

v 1.1

  • Now you can sort slides with Drag and Drop feature.
  • BX Slider has now adaptive height option. You can set it while creation of slider.
  • Enhanced slider dashboard view little bit.

v 1.0.3

  • Minor Bug Fixes

v 1.0.2

  • Slider height meta option added
  • Minor bug fixed – image disappeared when slider is second time update [FIXED]
  • Add one more class for bootstrapping

v 1.0.1

  • Dashboard GUI has been updated
  • Some Labels has been updated
  • Add Slider Short code on ‘add slider’ page

v 1.0.0

  • Starting the jurney