How to Modify or hide the “Hire a developer” link in WP Toolkit in cPanel Print

  • 0

Introduction

You may want to modify or hide the “Hire a developer” link in WP Toolkit in cPanel. This can be done through the WHM interface or the command line.

 

Procedure

To change the setting through WHM:

  1. Access your server through WHM as the root user
  2. Navigate to "Plugins / WP Toolkit / Settings"
  3. Under "General Settings," find the header to 'Customization of "Hire a developer" link'
  4. To customize the URL, select the option for "Link to custom URL" or "Link hidden"
  5. If customizing, place your custom URL in the text box underneath the option
  6. Select "Save" to commit your changes.

To change the setting using the API:

  1. Access your server via SSH as the root user
  2. To hide the option, set the following option to "none:"
    wp-toolkit --config -operation set -option-name hireDeveloperFeatureSource -option-value none
  3. To set a custom value, first set the URL:
    wp-toolkit --config -operation set -option-name hireDeveloperFeatureHref -option-value "$customurl"
  4. Then set the feature option to "custom:"
    wp-toolkit --config -operation set -option-name hireDeveloperFeatureSource -option-value cu

Was this answer helpful?
Back