Skip to content

Instantly share code, notes, and snippets.

View girafffee's full-sized avatar
Not just learning...

Oleksandr Ivanenko girafffee

Not just learning...
View GitHub Profile
<?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';
@girafffee
girafffee / jet-form-builder-eye-icon.css
Last active June 12, 2024 11:22
Eye icon for password input (JetFormBuilder) with Dashicons (https://developer.wordpress.org/resource/dashicons/)
.jet-form-builder__field-wrap input.eye-icon + .dashicons {
position: absolute;
right: 10px;
top: calc(50% - 10px);
}