How can I make custom modifications to Thrinacia Atlas WordPress Plugin?
This answer will explain how the development workflow works if you would like to make custom changes to Thrinacia Web UI delivered via Thrinacia Atlas WordPress plugin.
The development workflow for the Thrinacia Atlas WordPress plugin is very similar to the Web UI development workflow. Make sure you have a local version of your site with gulp installed. You can view our tutorial on doing this here HERE
Once you have a local version and gulp installed, to make any of the changes you will first want to change directory to the “src/” folder. After all your changes are complete you will have to package it using gulp. To do this for the WordPress plugin run this command in your terminal when inside the “src/” folder:
gulp build-plugin --path [path-to-folder]
You will need to replace the [path-to-folder] with the location you want all the files to be packaged. All the packaged files will have to be placed in the “angular” folder in the “thrinacia-atlas” plugin folder.
You can make [path-to-folder] be the angular folder in the “thrinacia-atlas” folder or you can point it anywhere you like and then copy the files over if you like.
If you are copying over the files you can delete everything in the angular folder except your “app_local.js” and then move all your files over. Once this is done you can check your site to see the changes.
Either method works. For example if you want the files to be put into a new folder where “angapp” and “src” are located all you would have to do is make the [path-to-folder] be “../plugin” without the quotes. It will then create a folder called plugin with all the files inside it so you can copy these files over to the target location.