When some plugin or php code needs more memory than allocated in apache server you get a error like Fatal […]
Wordpress
How to create a wordpress plugin, Google Analytics Plugin for Example
To create a wordpress plugin navigate to the installation folder of the wordpress, then wp-content -> plugins folder create a […]
Wordpress
How to add html code to wordpress Header and Footer
To add html code to the header, use the following code snippet add_action(‘wp_head’, ‘add_html_to head’); function add_html_to head(){ echo “HTML […]
PHP
How to get current URL path in PHP
echo $_SERVER[‘REQUEST_URI’]; This will print the current URL path in your website but not the base URL or your domain […]
HTML
HTML Symbols – HTML entities for writing codes in wordpress post
< = < or < (less than sign) > = > or > (greater than sign) / = / (slash) […]
Wordpress
WordPress – How to load a plugin(LiveChat) after the theme
Load LiveChat on a specific or single site on multisite wordpress or any plugin you want The following tip is […]
Magento 2
Mgento 2 – How to enable merge CSS, JavaScript files
In Magento 2 CSS files can be merged into one single file that helps to optimize the site which increases […]