How to Prevent Unlocking Protected PDF Files

Nowadays, people use PDF as the most popular document type for almost every area including business, law, health, and education. However, there are a lot of risks relating to PDF files if they are not protected properly. Once other people have access to your important PDF files, they can view, copy, edit, comment on it,…

How to Restrict WordPress Page Access by User Roles

You spend hours writing and editing content, creating images, and optimizing it for search in the hope of making it visible to as many visitors as possible. So why should you restrict page access to certain users? The reason behind this restriction may derive from the need of protecting your online learning materials which you…

4 Tips to Strengthen Your Passwords

ppwp-create-strong-password

In the age of technology development and Internet occupation, almost everyone has at least one online account. It can be an account for your school learning site, account for your online banking, or account for your social media sites, and so much more. Due to the rise of brute force attacks, Internet users all once…

Password protect any posts automatically upon publish

You can password protect all posts once they’re published using the following function. add_action(‘publish_post’, ‘ppwp_pro_auto_protect_posts_when_publishing’); function ppwp_pro_auto_protect_posts_when_publishing( $post_id ) { if ( method_exists(‘PPW_Pro_Password_Services’, ‘protect_post_by_password’ ) ) { $passwords_service = new PPW_Pro_Password_Services(); $passwords_service->protect_post_by_password( $post_id ); } } To apply for pages or any custom post types, you should change the action accordingly. add_action(‘publish_page’, ‘ppwp_pro_auto_protect_posts_when_publishing’); // Apply…

How to Password Protect a PDF File without Acrobat

When working on sensitive information and sharing it with specific people, you shouldn’t enable all types of users to open and view it. Imagine your email is hacked and all the credentials or proposal files are stolen, this affects a lot to your business, especially your reputation. That explains why it’s necessary to lock your…

How to Password Protect WordPress Site

ppwp-password-protect-wordpress-site

When building a website, we usually want to attract more visitors, grow the online audience, and increase sales. Have you ever thought of creating a private WordPress website for close friends or family members? Or simply set up an underdevelopment site so that only you and the developers can see how the live website looks…

Hide WordPress Categories

Along with tags, categories prove one of the most effective ways to organize and sort out your related WordPress posts. Visitors can scan through the category and read all related articles easily. The Blog on each website can include multiple categories. However, you sometimes might not want all of them to be shown publicly. The…

Create Password Protected Events in WordPress

ppwp-password-protect-events

Networking events are considered a powerful marketing asset to help any business grow. When holding a meetup, you’re building new relationships with potential clients, partners, and investors. Since events turn around a single topic, you have a chance to introduce your business to the targeted audience. You can position yourself as an authority as well…