News

Article updates

General / Html Emulate CMS

Using the option the system tries to misguide the used WordPress by outputting the wrong traces, of the selected CMS.
Misleading and making a false lead provide extra security, as the attacker search and attempt to hack something which not exist.

The plugin can emulate systems like:

  • Drupal – Drupal is a free and open-source web content management framework.
  • Ghost – Ghost is a free and open-source blogging platform written in JavaScript, designed to simplify the process of online publishing for individual bloggers as well as online publications
  • HubSpot – HubSpot is a marketing and sales software that helps companies attract visitors, convert leads, and close customers.
  • Joomla – Joomla is a free and open-source content management system for publishing web content.
  • TYPO3 – TYPO3 is a free and open-source Web content management system written in PHP.
  • Wix – Wix provides cloud-based web development services, allowing users to create HTML5 websites and mobile sites.

GDPR Compliance

The General Data Protection Regulation (GDPR) is a European Union (EU) law taking effect on May 25, 2018. The purpose of GDPR is to give European citizens more control over their personal and related data stored by others.

The WP Hide PRO plugin never stores any sensitive personal information on the server-side or on the user’s computer locally using cookies. Also never send any type of details to any 3rd service.

Disable the CSS / JavaScript Processing ( Combine / In Place ) for specific URLs

The CSS and JavaScript processing modules is a powerful functionality which helps with SEO improvements and plugins/theme white-labeling. In some cases, the options are required to not trigger for specific URLs, this can be achieved using programable filters.

The following code should be placed within a file in /wp-content/mu-plugins/ folder or a custom plugin. This disable the functionality on a URL which include ‘/sample-page/’ slug.



    add_filter('wph/components/js_combine_code' ,'custom_wph_components_disable_combine');
    add_filter('wph/components/css_combine_code' , 'custom_wph_components_disable_combine');
    function custom_wph_components_disable_combine( $status )
        {
            
            $current_url    =   'http' . (isset($_SERVER['HTTPS']) ? 's' : '') . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
            
            if ( stripos( $current_url, '/sample-page/') !==    FALSE )
                $status =   FALSE;
                
            return $status;   
        }

Rewrite – Registration

This functionality is available for PRO version.

The Registration module controls the URL for the registration process and the activation URL on a MultiSite.

New register-me.php

As default, the register-me.php is being used for the registration process, This is the place where users can register a site or / and a ursername. This functionality provides a way to change the default URL to something else.
The registration status can be controlled through the network super admin interface:

Block register-me.php URL

Block the default register-me.php file. If New register-me.php is being used, is save to block the default, the registration process will continue to work.

New wp-activate.php

This is the URL through which a user can activate a registered blog. Using this feature the URL can be mapped to something else.

Help – Block wp-activate.php

Block access to wp-activate.php file. Through this file, new users confirm that the activation key that is received in the email after signs up for a new blog, matches the key for that user.
If New wp-activate.php is being used, is save to block the default, the registration process will continue to work.

PostProcessing – JavaScript

This functionality is available for PRO version.

The JavaScript PostProcessing feature is a crucial component of the PostProcessing engine, working alongside CSS PostProcessing and Replacements to provide comprehensive control over your website’s front-end performance and security. This feature is specifically designed to handle all the JavaScript assets associated with your site, offering advanced processing options that enhance load times, boost security, and optimize the overall user experience. By meticulously processing every piece of JavaScript code, the PostProcessing engine ensures that your site remains fast, efficient, and resilient against potential threats.

Continue reading

Scroll to top