Adding jQuery Plugin License

Hi there!
I have used the following jQuery plugins in my WordPress Theme:

  1. PRETTYPHOTO LIGHTBOX
  2. STICK A DIV TO THE TOP (BACKSLASH)
  3. ONE PAGE NAVIGATION PLUGIN – SMOOTH SCROLLING
  4. filterizr FILTERING PLUGIN
  5. OWL CAROUSEL
  6. JQUERY FORM VALIDATION
  7. JQUERY MASONRY
  8. UIKIT Framwork
  9. Bootstrap Framework

All of them are open source projects.

How can I add their licenses to my main file folder?

Thanks in advance. :slight_smile:

IME, you don’t really need to to anything special beyond prefixing the plugin code you are including within the actual JS files, for instance:

/*
 * jQuery One Page Nav Plugin
 * http://github.com/davist11/jQuery-One-Page-Nav
 *
 * Copyright (c) 2010 Trevor Davis (http://trevordavis.net)
 * Dual licensed under the MIT and GPL licenses.
 * Uses the same license as jQuery, see:
 * http://jquery.org/license
 *
 * @version 3.0.0

 */

;(function($, window, document, undefined){
...
...
1 Like

Thank you so much @CliffHouse :smile:
This is what I guess. Your answer is to the point. Thanks again for taking the trouble to answer. (Y)