Title: Andresthethird's Replies | WordPress.org

---

# Andresthethird

  [  ](https://wordpress.org/support/users/andresthethird/)

 *   [Profile](https://wordpress.org/support/users/andresthethird/)
 *   [Topics Started](https://wordpress.org/support/users/andresthethird/topics/)
 *   [Replies Created](https://wordpress.org/support/users/andresthethird/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/andresthethird/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/andresthethird/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/andresthethird/engagements/)
 *   [Favorites](https://wordpress.org/support/users/andresthethird/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Owl Carousel] previous / next buttons](https://wordpress.org/support/topic/previous-next-buttons-1/)
 *  Thread Starter [Andresthethird](https://wordpress.org/support/users/andresthethird/)
 * (@andresthethird)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/previous-next-buttons-1/#post-4908775)
 * Hi deplancy lets see if my info helps. Please remember I don’t know js. so the
   following is a hackish way to do this but it works for me…
    My shortcode is in
   a page template called home-page.php `<?php echo do_shortcode('[owl-carousel 
   category="slider01" items="1" autoPlay="true" navigation="true"]'); ?>`
 * At first I was stuck and shortcode alone would not work so I did it through this
   file:
    wp-content/plugins/owl-carousel/js/owl.carousel.js
 * The options start at line 1454.
 *     ```
       navigation : true,
               navigationText : ["prev", "next"],
               rewindNav : true,
               scrollPerPage : false,
   
               pagination : true,
               paginationNumbers : false,
       ```
   
 * Then I had to open owl.theme.css
    and edited this:
 *     ```
       .owl-theme .owl-controls .owl-buttons .owl-prev{
       	background-image: url(../images/arrow-wt-L.svg);
       	background-position: center center;
       	left: 0;
       	display: block;
       }
       .owl-theme .owl-controls .owl-buttons .owl-next{
       	background-image: url(../images/arrow-wt-R.svg);
       	background-position: center center;
       	right: 0;
       	display: block;
       }
       ```
   
 * and in owl.carousel.css i did this:
 *     ```
       .owl-pagination{
       	display: block;
       }
       ```
   
 * I wanted both pagination and back next buttons.
 * I am sure the Plugin Author is cringing when reading this but hey it works and
   it looks exactly how i wanted it to look so…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Owl Carousel] previous / next buttons](https://wordpress.org/support/topic/previous-next-buttons-1/)
 *  Thread Starter [Andresthethird](https://wordpress.org/support/users/andresthethird/)
 * (@andresthethird)
 * [12 years ago](https://wordpress.org/support/topic/previous-next-buttons-1/#post-4908396)
 * I resolved my issue by looking through all the files in plugins/owl-carousel 
   and I found where to activate and change all the settings.
 * In case anyone else sucks with code like me and is looking for the settings they
   are in js/owl.carousel.js towards the bottom of the file.

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