- Css must be minified and update the min version of the css
- Custom front slug does not work if permalink is not "Post name"
- Oxygen Websites
	* must create templates for:
		~ projects (lobby page) - use shortcode
		~ category archive page - use shortcode 
		~ tag archive page - use shortcode
		~ single project page - use shortcode

Compile template css
css-minify --dir / --output /min

add_filter('template_include', 'lwappProjectTemplate', 99);
add_filter('single_template', 'lwappProjectTemplate', 99);

add_action('wp_enqueue_scripts', 'lwappEnqueueScripts', 20);

Templates are defined in:
- lwappGetCustomPostTypeTemplate

Custom css are defined in:
- lwappAddArchiveCSS - functions.php
- lwappCustomCss() - wp-hooks.php

+++++++++++++++++++++++++++++++++++++++++

cp -R /Applications/XAMPP/xamppfiles/htdocs/beneathblueskies/wp-content/plugins/local-wiz/ /Users/edesacabang/Desktop/LW\ PLUGIN/local-wiz/

css-minify --dir /Applications/XAMPP/xamppfiles/htdocs/beneathblueskies/wp-content/plugins/local-wiz/includes/templates/project/styles --output /Applications/XAMPP/xamppfiles/htdocs/beneathblueskies/wp-content/plugins/local-wiz/includes/templates/project/styles/min

css-minify --dir /Applications/XAMPP/xamppfiles/htdocs/beneathblueskies/wp-content/plugins/local-wiz/includes/templates/project/styles --output /Applications/XAMPP/xamppfiles/htdocs/beneathblueskies/wp-content/plugins/local-wiz/includes/templates/project/styles/min

css-minify -d /Applications/XAMPP/xamppfiles/htdocs/beneathblueskies/wp-content/plugins/local-wiz/includes/templates/project/styles -o /Applications/XAMPP/xamppfiles/htdocs/beneathblueskies/wp-content/plugins/local-wiz/includes/templates/project/styles/min

++++++++++++++++++++++++++++++++++++++++++

1.2.0.1 
      - WP Repo
	  	- Removed download form - t4

	  	- changed prefix
	  	- photo custom fields
	  	  OLD: _lw_photo
	  	  		 lw_photo
        
        NEW: _lwapp_photo

      - removed inline css

        single-t2.php
        tag-t2.php
        wp-hooks.php
        index-t2.php

      - Renamed option names
       rnh-settings - lwapp-project-settings
       lw-article-settings - lwapp-article-settings
       lw-image-resize-mode - lwapp-image-resize-mod
       lw-media-filenames - lwapp-media-filenames

       Submmit - must manually change to CLI

      - Renamed post types
       	project to lwapp_project
       	article to lwapp_article

      - Renamed taxonomies
       article-category - lwapp-article-cat
       article_tag - lwapp-article-tag
       proj-category - lwapp-project-cat
       proj-tag - lwapp-project-tag


      - Added a new flag configured_to_ver_1.2.1
       used new post types and taxonomies
       converted old projects & articles to new post types & taxonomies


      - Removed from scripts.js
      // Create the script tag, set the appropriate attributes
      var script_fb = document.createElement('script');
      script_fb.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v8.0&appId=2640516742883461&autoLogAppEvents=1";
      script_fb.async = true;       

      - Renamed shortcodes

      Local-Wiz-Lobby
      Local-Wiz-Projects-Lobby

      Local-Wiz-Projects-Map
      Local-Wiz-Articles-Lobby


      lw-cat-archive = lwapp-cat-archive
      lw-tag-archive = lwapp-tag-archive



      LW-Table-of-Contents = lwapp-table-of-contents

      lw-project-gallery = lwapp-project-gallery

      lw-project-map = lwapp-project-map


      Removed image sizes:

      add_image_size('rnh-thumbnail', 500, 350, true); // removed

      Renamed image sizes:

      add_image_size('lwapp-thumbnail', 501, 351, true); // lw-thumbnail'

      add_image_size('lwapp-feat-t3-cropped', 1250, 550, true); //cropped lw-feat-t3-cropped
      add_image_size('lwapp-feat-t3-full', 1300, 555, true); //full lw-feat-t3-full

      add_image_size('lwapp-feat-image-2', 595, 555, true); //cropped lw-feat-image-2
      add_image_size('lwapp-feat-image-3', 600, 560, false); //full  lw-feat-image-3


      Check if wordfence or solid security is installed.

      SOLID SECURITY:
      better-wp-security/better-wp-security.php

      wp_option name : itsec-storage
      ['global']['lockout_white_list'] = array();
      check if IP 35.215.118.98


      Check if Wordfence is installed and whitelisted LW App Server

      Added Callback restrictions on Rest API Calls.


      Deleted :

      lwappImgCLIResize
      lwappImagickCLICheckCommand
      lwappImCLICheckExecutable
      lwappIsExecutable


