Skip to content

Instantly share code, notes, and snippets.

@svebal
svebal / Readme.md
Last active October 25, 2021 13:15 — forked from vishalbasnet23/Readme.txt
Custom Activation Link on Sign Up WordPress

Step by step guide.

First Phase:

  1. First create a html form with first name, last name and email field for signing up process.( Remember the action of the form it has to be the page slug of email confirmation page that you will be creating at in next phase. )

Second Phase:

  1. Create a Page ( Remember the slug has to be the same of that of action of the form of phase one ) and assign the template "template-confirmation-mail.php"
  2. This page is responsible for generating unqiue hash key and sending that hash key along with the user's new account credentials to their email.
  3. Remember the link of the activation_link has to the link to the email-verification template, which we will be creating in next phase.
anonymous
anonymous / config.json
Created June 20, 2016 15:36
Bootstrap Customizer Config
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "#0085c3",
"@brand-success": "#5cb85c",
@arantius
arantius / ingress-intel-notify-ui.user.js
Created December 7, 2012 04:45
User script for the Ingress Intel dashboard / notifier
// ==UserScript==
// @name Ingress Intel: Notify UI
// @namespace https://arantius.com/misc/greasemonkey/
// @description Annotate the Ingress Intel Dashboard with links to control the Ingress Notify app.
// @match http://www.ingress.com/intel*
// @version 1
// @grant none
// ==/UserScript==
//const NOTIFY_SERVER = 'http://localhost:8080/'
@derpixler
derpixler / wp-coustom-term-options.php
Created May 25, 2011 07:02
Wordpress Hooks to add coustom term Options
<?php
/**
*
* Add only for parents coustom term Options
* @author rene reimann
* @home http://www.rene-reimann.de
*
* @hook category_add_form_fields Hooks into the category edit page
* @hook edit_tag_form_fields Hooks into the category frontpage
@derpixler
derpixler / wp-action-plugin-link-hook.php
Created May 25, 2011 06:41
Wordpress Hook into the plugin action links and filter them!