Title: devlink1337's Replies | WordPress.org

---

# devlink1337

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Before After Image Slider WP] Control slider individually](https://wordpress.org/support/topic/control-slider-individually/)
 *  [devlink1337](https://wordpress.org/support/users/devlink1337/)
 * (@devlink1337)
 * [9 years ago](https://wordpress.org/support/topic/control-slider-individually/#post-9168515)
 * If you’re still interested in a solution than i might got something.
 * in functions.php register jquery file
 *     ```
       add_action('wp_enqueue_scripts','jquery');
       function jquery() {
         wp_register_script('jquery', 'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js', true);
         wp_enqueue_script('jquery');
       }
       ```
   
 * next go to plugin folder and in the before-after-image-slider.php
 * delete the following content:
 * line 24 – 31
 *     ```
         ?>
         <script type="text/javascript">
         jQuery(document).ready(function($){
         $('.ba-slider').beforeAfter();
         });
         </script>
   
         <?php
       ```
   
 * and at last in folder js modify the before-after.min.js
 * Copy the code from the JS part from the codepen demo:
 * [https://codepen.io/bamf/pen/jEpxOX](https://codepen.io/bamf/pen/jEpxOX)
 * tried it and worked. can now slide through multiple images and the slider recognizes
   each seperately
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Media Library Folders] Solved: Problem with permissions on nginx](https://wordpress.org/support/topic/solved-problem-with-permissions-on-nginx/)
 *  Thread Starter [devlink1337](https://wordpress.org/support/users/devlink1337/)
 * (@devlink1337)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/solved-problem-with-permissions-on-nginx/#post-9093466)
 * I see you really have updated the code but just for your information, you updated
   the wrong line of code.
 * Line 1606 and 1607
 *     ```
             if(mkdir($new_folder_path)) {
       		  @chmod($new_folder_path, 0755);
       [...]
       ```
   
 * realised it after updating the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Media Library Folders] Solved: Problem with permissions on nginx](https://wordpress.org/support/topic/solved-problem-with-permissions-on-nginx/)
 *  Thread Starter [devlink1337](https://wordpress.org/support/users/devlink1337/)
 * (@devlink1337)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/solved-problem-with-permissions-on-nginx/#post-8999762)
 * I discovered that there might be an issue with our configuration. I successfully
   tested it on a local nginx installation, installed the plugin there and it worked
   fine.
    The changes are a good workaround just as I said everything else worked
   as expected on the server. I would definately recommend the changes made, in 
   case some other stupids do the same mistakes as we did 😉

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