Skip to main content

Posts

How to Disable WordPress Admin Bar for All Users Except Administrators

Disable Admin Bar for All Users Except for Administrators Paste this code in your theme’s functions.php file add_action( 'after_setup_theme' , 'remove_admin_bar' ); function remove_admin_bar() { if (!current_user_can( 'administrator' ) && !is_admin()) {    show_admin_bar(false); } } Disable Admin Bar for All Users If you want to disable it for all users, then simply put use this code in your theme’s functions.php file add_action( 'after_setup_theme' , 'remove_admin_bar' ); function remove_admin_bar() {    show_admin_bar(false); }

Wordpress media library not loading images

WordPress media library not loading images or Images are not displaying the images: Main cause of this issue is the plugin conflict, so please deactivate the plugin one by one and check that your issue resolved or not. WordPress always update it's software to avoid or overcome issues and it is depreciating the old functions. but some of our plugin using these functions and create problem. So in that case please update the plugin if possible otherwise deactivate it .

How to open iframe external link in parent window

To open a link in the parent window inside a Iframe you can use the one of the below methods: If We wants all the link to open in the parent window then use the below tag in the header: < head >< base target=" _parent ">< base ></ head >   We can also use the tag target =" _parent " in < a href=" aboutus " target=" _blank "/> tag   We can also use javascript parent.document.location.href = " http://example.com ";

Wordpress pagination 404 error "/page/2" - what to do?

The problem mainly arises because permalinks set to Custom Structure /%category%/%postname%/. I understand WordPress assumes "page" is a post from the category. That is totally normal behaviour. If you want to remove category base you will need to write some custom rewrite rules, not simple rules I must say. Configure category base to . (dot), put this code in the functions.php of your theme, or better in a plugin, and flush the rewrite rules (code from this post in Daily Web Kit): add_filter ( 'category_rewrite_rules' , 'vipx_filter_category_rewrite_rules' ); function vipx_filter_category_rewrite_rules ( $rules ) { $categories = get_categories ( array ( 'hide_empty' => false ) ); if ( is_array ( $categories ) && ! empty ( $categories ) ) { $slugs = array (); foreach ( $categories as $category ) { if ( is_object ( $category ) && ! is_wp_error ( $ca...

Wordpress - Create a Child Theme

How to Create a Child Theme 1.        Create the child theme directory, which will be placed in wp-content/themes folder. T he name of your child theme directory is appended with '-child'. You will also want to make sure that there are no spaces in your child theme directory name, which may result in errors. 2.        The next step is to create your child theme's stylesheet (style.css). The stylesheet must begin with the following /* Theme Name: Twenty Fifteen Child Theme URI: http://example.com/twenty-fifteen-child/ Description: Twenty Fifteen Child Theme Author: John Doe Author URI: http://example.com Template: twentyfifteen Version: 1.0.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready Text Domain: twenty-fifteen-child */     ...

Reload Registry Without Reboot

Forces changes to the registry without requiring a complete reboot. 1. Press  CTRL-ALT-DELETE  to bring up the Windows task list. 2. Select  Explorer  and click on  End Task 3. When the Shutdown screen is shown, click  Cancel 4. After a few seconds an error message will show. Click on  End Task . Then Windows will reload explorer and any new registry settings.

Unable to RDP to Virtual Machine: CredSSP Encryption Oracle Remediation

To resolve a vulnerability issue with Credential Security Support Provider protocol (CredSSP), a monthly Windows update in May was applied which does two things: 1.        Correct how Credential Security Support Provider protocol (CredSSP) validates requests during the authentication process 2.        Change the group policy Encryption Oracle Remediation default setting from Vulnerable to Mitigated. This RDP authentication issue can occur if the local client and the remote host have differing  Encryption Oracle Remediation  settings that define how to build an RDP session with CredSSP. If the server or client have different expectations on the establishment of a secure RDP session the connection could be blocked. There is the possibility that the current default setting could change from the tentative update and therefore impact the expected secure session requirement. Examples: 1.  ...

Get Private Key and certificate from pfx file

1.        Get Private Key and certificate from pfx file (for this we need to install the SSL certificate): a.        open cmd and go to the installation directory of openSSL C:\Users\admin>cd %Installed Path of openSSL% b.        Run the following commands: C:\OpenSSL-Win32>set openssl_Home=%Installed Path of openSSL% C:\OpenSSL-Win32>set openssl_conf=%Installed Path of openSSL%\bin\openssl.cfg C:\OpenSSL-Win32>set path=%Installed Path of openSSL% c.        Go to bin directory: C:\OpenSSL-Win32>cd bin d.        Run the below command to convert pfx file C:\OpenSSL-Win32\bin>openssl pkcs12 -in mydomain.pfx -nodes Here you will get private key and certificate