Blog

February 27, 2020

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…

February 26, 2020

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…

February 21, 2020

6 Best Plugins and Themes for WordPress Intranets in 2020

Intranets refer to private networks that are exclusive to members within an organization. It’s used as a way to share internal documents and information. Thus, by having an intranet website, companies and organizations will have a place to accommodate project management and communication. WordPress happens to be a popular platform to create an intranet website,…

February 17, 2020

Perfect Solution for WordPress Private Client Portal

about the quality of the services but you also need to establish good communication with your clients. You can exchange information via a live chat, a contact form, or several other methods. Do you know that WordPress client portal would be an essential client management tool for more intimate and efficient user experience as well?…

February 14, 2020

Password Protect Pages, Posts, and Custom Post Types in WordPress

Suppose you get a WordPress post out to discuss a controversial topic, you definitely don’t want the general public to view it. If you’re running an online business, premium products on your site shouldn’t be purchased by standard customers. To avoid unwanted controversies on your site or prevent users from accessing premium product pages, it’s…

February 11, 2020

Top 5 WooCommerce Captcha Plugins

ppwp-woocommerce-captcha-plugins

Spammers and hackers hurt not only your WordPress site but also your WooCommerce store. They damage your WooCommerce shop by attempting to register and log into your store to make fake orders. This will cost you a lot of money and affect the store’s SEO rankings. There are numerous methods to help you prevent non-human…

February 6, 2020

Hide WooCommerce Categories from Product Pages and Shop Pages

WooCommerce adds categories to product pages by default, in the format of Home/Category Name/Product Name. There is no built-in feature that supports removing the category from product pages. The same thing goes for shop pages. You must edit your WordPress functions.php file or install a plugin to deal with it. In this article, we will…