Go to website
Back
Articles on:
Knowledgebase
No description
How to create Temporary Login for WordPress Dashboard Without Password?
**Temporary Login for WordPress Dashboard Without Password ** You can create a temporary login without a password and send the link to the user whom you want to access your site. Download and install the plugin Temporary Login Without Password by StoreApps. https://wordpress.org/plugins/temporary-login-without-password/ After installing the plugin, Go to your WordPress Dashboard > User > Temporary Logins. Fill the form with required details such as e-mail address of the user, firs
Few readers
Why shouldn't you edit the WordPress theme or plugin code?
Usually, all WordPress themes and plugins have regular updates. Sometimes with minor bug fixes and some time with the addition of some features. A big part of the updates is security releases as well. Hence, not updating the themes and plugins might cease to function them and or even compromise the site, leaving it open to hacker attacks. So, What happens when we edit the theme or plugin code? Once
Few readers
How to disable Google fonts?
Google fonts are only loaded on your site if you choose to do so in the customizer. But, if you still want to disable them from your site for some reason, you can do so by following the steps below: Create or download the child theme for Zakra to add a small PHP code snippet. Add the PHP code snippet given below inside the functions.php file of your child theme. add_action( 'wp_enqueue_scripts', function() { wp_dequeue_style( 'zakra_googlefonts' ); } ); This will remove the G
Few readers