June 16, 2018 at 10:45 am
#20131
Laurent Jade
Participant
Hello,
1°) Install https://wordpress.org/plugins/admin-css-mu/ (thanks to tom gn)
2°) In Admin CSS MU, add :
img[src="https://gravityforms.s3.amazonaws.com/banners/gravity-forms-unregistered.svg"] {
display: none;
}
——————
If you want to hide “Register…” on plugins page :
1°) Open gravityforms.php (root of the plugin file)
2°) Line 1766
Change :
echo '</tr><tr class="plugin-update-tr"><td colspan="3" class="plugin-update">' . $new_version . sprintf( esc_html__( '%sRegister%s your copy of Gravity Forms to receive access to automatic upgrades and support. Need a license key? %sPurchase one now%s.', 'gravityforms' ), '', '', '', '' ) . '</td>';
By :
echo '';
;)