How to create a WordPress shortcode?

wordpress

WordPress Shortcodes allow you to extend the functionality of WordPress. Shortcodes are text within the square bracket. You can paste this shortcode on any page, post or widget. WordPress executes the PHP function associated with the shortcode and displays the result instead of the actual shortcode text. You can find more about WordPress shortcodes at … Read more

Best WordPress themes in 2021

Here are list of popular Free WordPress themes. Kadence Kadence is a multipurpose WordPress theme that is available for free download and also offers a pro version that opens up more possibilities. Themes offers lots of modification options and customization possibilities to explore your creative and create something amazing. Best Features Header and footer builder … Read more

WordPress use CDN with out plugin

wordpress

Content Devlivery Network (CDN) allow your web site to serve images from another domain or a sub domain. This speed up web site as your web server don’t need to serve images. Also browsers have a limit on number of parallel downloads from same domain. Having images on a differnt domain bypass this limitation of … Read more

WordPress Avada theme load fontawesome from old site

WordPress Avada theme icon missing

I have migrated a web site using Avada WordPress theme. Once site is migrated, i edited wp-config.php file and added following to avoid site getting redirected to old website url. define(‘WP_HOME’,’https://www.newurl.com’); define(‘WP_SITEURL’,’https://www.newurl.com’); Now site works, but some of the resources are loaded from OLD site url, this breaks some of the icons. On Browser Developer … Read more

WordPress debug

wordpress

If you have a wordpress web site that give blank screen, you can add following to wp-config.php to enable displaying errors. This should be added above line /* That’s all, stop editing! Happy blogging. */^M https://wordpress.org/plugins/query-monitor/https://wordpress.org/plugins/debug-bar/

WordPress Backup and Migration Plugins

wordpress

Migrate Guru: Migrate & Clone WordPress Free This plugin allow you to transfer your wordpress web site to another hosting for free. It support sites upto 200 GB in size. Use BlogVault to do the transfer. https://wordpress.org/plugins/migrate-guru/ All-in-One WP Migration This free plugin allow you to backup and restore your wordpress site. Free version support … Read more

WordPress CherryFramework lessphp fatal error

wordpress

On a WordPress site using CherryFramework based theme, was getting following error. lessphp fatal error: load error: failed to find /home/mediaxtreme/sitedomain.com/wp-content/themes/theme50607/bootstrap/less/bootstrap.lesslessphp fatal error: load error: failed to find /home/mediaxtreme/sitedomain.com/wp-content/themes/theme50607/style.less Warning: Cannot modify header information – headers already sent by (output started at /home/mediaxtre/public_html/wp-content/themes/CherryFramework/includes/less-compile.php:157) in /home/mediaxtre/public_html/wp-login.php on line 423 This was due the web site have … Read more

Change WordPress URL

Here are some plugins that can help with WordPress url change: Method 1: Editing MySQL backup To change the WordPress site URL, backup your MySQL database. Run sed command to replace the URL in MySQL backup file. Restore the new db-modified.sql, which will have the database with the URL changed. Method 2: Using Plugin Edit … Read more

Running wp-cron with cronjob

WordPress runs cronjob when a visitor visits your website, if your site is busy, cronjob checking occurs for every page request. This increases server resource usage. To run wp-cron with cronjob we need to disable WordPress cronjob. Edit wp-config.php and add the following Now set up a normal cronjob. if you have wp-cli installed, use … Read more