Version: 5
CAUTION
️Version 5 of Gravity PDF does not have full support for Gravity Forms 2.5 and you should consider upgrading to version 6. If you cannot, version 5 will still function but have a degraded admin experience. Support and bug/security fixes will be provided until 27 April 2023.gfpdf_post_help_settings_page
Description
This hook allows you to output content at the bottom of the PDF Help Settings tab.
Usage
This snippet shows you how you can include a message after the Help Settings form:
add_action( 'gfpdf_post_help_settings_page', function() {
/* We set the action priority to 3 so this content will be included before the Uninstaller */
?>
<h3><?php _e( 'Custom Section', 'prefix-text-domain' ); ?></h3>
<p><?php _e( 'This is the message for this new section. You should include any additional functionality here...', 'prefix-text-domain' ); ?></p>
<?php
}, 3 );
Source Code
This action is located in /src/view/html/Settings/help.php
.