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/security/csrf-token/datetime-limit', | |
/** @var \DateTimeImmutable $datetime */ | |
function ( $datetime ) { |
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-smart-filters/filters/filter-options', function( $options, $filter_id ){ | |
if ( 1305 == $filter_id ) { | |
uasort( $options, '__compare_jsf' ); | |
} |
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/send-email/message_content', | |
function ( string $content ) { | |
return str_replace( | |
'%client_ip%', |
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-apb-appointments-item { | |
font-family: "Montserrat", Montserrat; | |
font-size: 16px; | |
font-weight: 300; | |
text-align: center; |
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-engine/datetime/use-wp-date', '__return_true' ); |
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
.change-hover-color:not(:disabled):not(:checked):hover + span::before { | |
border-color: red !important; | |
} |
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/preset-sanitize', | |
function ( $sanitize, \Jet_Form_Builder\Presets\Sources\Base_Source $source ) { | |
if ( jet_fb_live()->form_id == 2055 && is_a( $source, \Jet_Form_Builder\Presets\Sources\Preset_Source_Post::class ) ) { | |
return true; | |
} |
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-popup/access-cap', 'my_custom_admin_ui_cap', 10 ); | |
function my_custom_admin_ui_cap( $capability ) { | |
// Return your custom capability | |
return 'manage_options'; | |
} |
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-woo-products-cqw-wrapper { | |
opacity: 1 !important; | |
visibility: visible !important; | |
} |
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
body[data-elementor-device-mode="mobile"] .jet-offcanvas.is-active { | |
max-width: 100% !important;width: 100% !important; | |
} |
NewerOlder