If you’re going to use Gravity Forms on a internet facing website you really should keep the license active so you can keep it updated. A plugin like GF is a popular target when security issues are found in older versions.
With the hiding the button – this question isn’t relevant to this plugin and even if it were I wouldn’t be obliged answer. This “free support” I provide to maintain this plugin (that I also give away for free) costs me time.
That being said, I will explain here once how I would do this but I won’t be able to go into any more detail. It will also only work if your theme has been developed correctly.
You need to run this PHP filter
add_filter( 'body_class', 'my_body_class' );
function my_body_class( $classes ) {
$id = get_current_user_id();
$classes[] = 'user-id-'.$id;
return $classes;
}
And add this CSS, replacing the # with the user ID
body.user-id-# .delete_list_item {
display: none !important;
}
-
This reply was modified 7 years, 10 months ago by
ovann86.