This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'jet-form-builder/render-states', 'custom_jfb_add_states' ); | |
function custom_jfb_add_states( array $states ): array { | |
class Logged_In_Render_State extends \Jet_Form_Builder\Blocks\Conditional_Block\Render_States\Base_Render_State { | |
public function get_title(): string { | |
return 'On user logged in'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.jet-form-builder__field-wrap input.eye-icon + .dashicons { | |
position: absolute; | |
right: 10px; | |
top: calc(50% - 10px); | |
} |
OlderNewer