IN
MainLogo

You can migrate your WordPress website to another hosting. Follow simple steps and take 24hour for successfully migration. So lets do migration with my tips. How to Do Follow two steps for website migration- 1st Step Open your WordPress dashboard. Hover on Tools then click to Export button. Select all content then click to Download […]

You want to change URL from database like http://domain.com/wp-content to https://www.domain.com/wp-content. So you can easily to change URL using simple command on apache server. How to Do Open terminal or SSH and login there. Go to directory using cd /var/www/html command. Then use given command to change WordPress’s site url and home url. wp option […]

You have a WordPress website on Google cloud, And you want to make any type of changes but not have permission. So use give command on your server terminal and change access permission. How to Do Open server’s terminal and login. Now check your current access status using stat -c “%a %n” /var/www/html/ command. If […]

First of all check intl Module installed or not. So hover on Tools then click to Health. If showing intl Module missing then install using steps How to Install intl Module Open SSH or terminal and login there. Then enter command – sudo apt install php8.1-intl Complete installation procedure and restart server using sudo systemctl […]

First of all check zip Module installed or not. So hover on Tools then click to Health. If showing zip Module missing then follow simple steps for installation. How to Install zip Module Open SSH or terminal and login there. Then enter command – sudo apt-get install php8.1-zip Complete installation procedure and restart server using […]

First of all check imagick Module installed or not. So hover on Tools then click to Health. If showing imagick Module missing. How to Install imagick Module Open SSH or terminal and login there. Then enter command – sudo apt install php8.1-imagick Complete installation procedure and restart server using sudo systemctl restart apache2 command.

How-to-Install-imagick-module-Thumbnail-20680

Hey! you have a own VPS or Dedicated server and want to install imagick module, But you don’t know how to install imagick module. So follow simple steps on VPS or Dedicated server. How to Do Login in WHM panel first. Then go to Software section and click to Module Installers. Then click to Manage […]

Change PHP version using Cpanel or WHM. There is two different method to change PHP version wiyhout any worries. So follow any one method to your hosting. How to Do Use any one method for change PHP version – Cpanel –  Go to cpanel and click on MultiPHP manager. Then select domain name and then […]

Use php code with if else statement and design single.php for specific parent category’s post. So use given php code on your WordPress theme. How To Do Open functions.php file then paste given code first. function post_design_parent_category_thekroyaard($parent_category_name) { $categories = get_the_category(); foreach ($categories as $category) { if ($category->category_parent === get_cat_ID($parent_category_name)) { return true; } } […]

Design index.php or single.php for different post format. You can make attractive page for image, video, audio, link or any custom format. How To Do Paste given code where you want to showing different design. So open index.php or single.php and paste given code there. // Check if the post has the “image” format if […]

How-to-Change-WordPress-Login-Thumbnail-20458

You can change WordPress’s login password using computer or mobile. Follow simple steps from your device and change password easily, How to Do Login in WordPress first. Tab on Users then click to Profile. Then go to Account Management section and click to New Password button. Now create strong password using special characters. Dropdown and […]

sitemap-error

See above image and same error with you. So remove last added [?>] from functions.php file or include files of functions.php. Then Save and retry to see wp-sitemap.xml. Hope This page contains the following error problem solve. If this solution not working on your website so contact-us. We will try to solve your sitemap’s problem. […]