Tutorials
WooCommerce Settings Overview
This tutorial gives a quick run through of WooCommerce settings in a WordPress site. 1. (02:45) You can consolidate the checkout process by unclicking ‘Stripe Modal Checkout’ in the WordPress plugin. 2. (04:00) Use www.w3schools.com to create form fieldsets. Scroll down to see the generated HTML and JavaScript sample to Read more…
Tutorials
How to Edit WordPress Themes in PHP
This tutorial demonstrates how to edit a WordPress theme using PHP.
GCP Platform
Host WordPress on Google Cloud
This tutorial shows how to deploy a WordPress site on Google Cloud. Integrate with TensorFlow and add a Chatbot. 1. (00:48) In your GCP (Google Cloud Platform) dashboard you’ll see an overview of the project. It automatically connects to your G Suite account. A benefit of using the GCP is Read more…
Tutorials
WordPress Part 3: Integrating WordPress and Soundcloud
Shows how to add a new audio file to soundcloud and embed it into a WordPress Blog Post.
Tutorials
WordPress Part 2: How To Post A Blogpost
How to post a blog post to an existing wordpress webpage.
Tutorials
WordPress Part 1: How To Create A Page
Shows how to create a new page in a wordpress website. Stock Image Website:https://www.pixabay.com/___________________________________Music: Jesse CookNotes: Having trouble finding the “folder icon” to add the saved template from the Elementor Library? Be sure to click the grey circle with the folder in it to get to that screen. I realize Read more…
Firebase
Creating Dapp’s Using ERC-721, Ganache, Brave, MetaMask, Truffle-React UI & Firebase Private Data
The Ethereum ecosystem has a ton of tools and frameworks that are made to help developers create their own Decentralized Applications (Dapps). When creating a dapp, it is beneficial to test your smart contracts locally before deploying them to the main net. This creates an extra layer of security for Read more…
React
React Environment Variables & NPM Version Locking
If you’re using npm to manage your Node.js application dependencies, you might want to be aware of how Node.js handles environments. Node.js uses two global variables to manage your dependencies: npm_version defines the version of Node.js defines the version of Node.js :npm_revision_id defines the id of the NPM version that Read more…
React
Use React Hooks For More Efficient State Management
To use hooks, add them to the module: var MyHook = () => ( < div > Hello world ! < / div > ) In the first example, we have set up a local ref in our hook function, as well as a global one, so both hooks can Read more…