Developing WordPress Plugin

Short Description WordPress is prefered CMS for sites with Pages and Blogs Detailed Description Types of extensions possible WordPress extensions are called plugins. Plugins can Show Custom Functionalities in Pages and Blogs. See add_shortcode below Extend/Replace Core funtionalities with hooks How system identifies extension Header Requirements /** * Plugin Name * * @package PluginPackage *…

Disable WordPress plugin from DB

More Details Anotehr Reference Login to the cPanel account and go to File Manager Find the database from the wp-config.php file situated in the website’s document root Go to PHPMyAdmin and select the database Select the table named wp_options and go to active_plugins Change the option_value to a:0:{} for disabling the plugins. its value will…

Setting up a basic contact us form for your site

Download files of this tutorial github starting version github final version Step 1: Setup Your Email http://www.outsource-online.net/blog/2022/06/07/setting-up-an-email-for-your-domain-with-cpanel/ Optional Step Run the below createFiles.bat to create required files @echo off setlocal :PROMPT set GIT_BRANCH_NAME=bob set /p functionalityName="Enter functionality Name: or 'q' to quit " echo "Entered functionality Name was " %functionalityName% set quitbat=true IF not "%functionalityName%"…

Adobe Premiere Pro Introduction

Refer Step 1 Import or Drag audio/ video clips To the the Media Browser Window window. You may drag the folder(s) as such. Same will be saved as folders Step 2 Create Sequence Drag to Timeline window. An additional asset will be shown in the Media Browser Window window To play the clip in sequence,…

Creating a firefox plugin

Test if your firefox is ready Download Sample code by firefox install and test Anatomy of a plugin As in firefox documentation Ensure console.log works To make console.log work in add on Go to about:config create key extensions.sdk.console.logLevel with value all, if not already exists ref Create a new Firefox Plugin Basically 4 steps are…