Skip to content

Instantly share code, notes, and snippets.

View vvickedvveb's full-sized avatar

Vick vvickedvveb

  • Greater Montreal Area
View GitHub Profile
@vvickedvveb
vvickedvveb / React_TypeScript_17_0_2.md
Last active January 28, 2024 17:59
Downgrade to React 17.0.2 From 18 with TypeScript Using create-react-app

Install

npx create-react-app my_app --template typescript

package.json,

Replace versions with following...

"dependencies": {
...
@vvickedvveb
vvickedvveb / simple_email_form.php
Last active May 6, 2022 05:36
Simple email contact form plugin for WordPress so people can email you. Just drop file in your "plugins" director and activate. To view add "shortcode" in page and add "[vick_form]". Change '$to' email address below to yours. Create a page to submit form e.g.: permalink "thank-you-submit". TODO: Add Captcha.
<?php
/**
* Plugin Name: Simple Email Form
*
*/
function vick_form_plugin()
{
$content = '';
$content .= '<form method="post" action="' . site_url() . '/thank-you-submit">';