This file contains hidden or 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( 'caldera_forms_field_attributes', function( $attrs, $field, $form ){ | |
if( 'button' === Caldera_Forms_Field_Util::get_type( $field, $form ) ){ | |
$attrs[ 'data-form-id' ] = $form[ 'ID' ]; | |
} | |
return $attrs; | |
}, 20, 3 ); |
This file contains hidden or 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 | |
/** | |
* Plugin Name: CF paragraph settings | |
* | |
*/ | |
add_filter( 'caldera_forms_field_attributes', function( $attrs, $field, $form ){ | |
//Set the field IDs here | |
$fields = [ 'fld_456', 'fld_457', 'fld_458' ]; | |
This file contains hidden or 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 | |
/* | |
* Plugin Name: CF Force process state | |
* Description: Force process state, start spinner and deactivate fields. | |
*/ | |
add_filter('wp_footer', function(){ | |
echo '<script type="text/javascript"> | |
jQuery(".caldera-grid input[type=\'submit\']").on("click", function() { | |
var form = jQuery(this).parent("form"); |
This file contains hidden or 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 | |
//Unset success message and set a different error message for admin users and others | |
add_filter('caldera_forms_render_notices', function ($notices) { | |
//Unset success message | |
unset($notices['success']['note']); | |
//Set error message for admins | |
if ( current_user_can('administrator') ) { |
This file contains hidden or 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 | |
/** | |
* Allow all requests to read entries of form with ID CF123567 | |
* | |
* For API endpoint that powers front-end entry viewer. | |
*/ | |
add_filter( 'caldera_forms_api_allow_entry_view', function( $allowed, $form_id, WP_REST_Request $request ){ | |
if( 'CF123567' === $form_id ){ | |
return true; | |
} |
This file contains hidden or 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 | |
/* | |
* Plugin Name: Direct Stripe Filter Emails | |
* Description: Filter Emails sent by Direct Stripe | |
* Author: New0 | |
* Author URI: https://newo.me/ | |
* Version: 0.0.1 | |
*/ | |
add_filter( 'direct_stripe_success_user_email_content', function( $message, $amount, $currency, $email_address, $description, $user, $button_id ){ |
This file contains hidden or 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 | |
/* | |
* Plugin Name: CF allow all viewers | |
* Author: New0 | |
* Description: Allow all requests to read entries of form with ID CF5c78740daac4a | |
*/ | |
/** | |
* For API endpoint that powers front-end entry viewer. | |
*/ |
This file contains hidden or 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 | |
/* | |
* Plugin Name: CF custom code | |
* Author: New0 | |
* Description: Force connected Submit button text if translation didn't apply | |
*/ | |
add_action('wp_footer', function() { | |
?> | |
<script type="text/javascript"> |
This file contains hidden or 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 | |
/** | |
* Plugin Name: CF tabindex on radio options | |
* Autor: New0 | |
* Description: Add tabindex on options of radio fields in CF | |
*/ | |
//Example of adding a tabindex to radio fields options in Caldera Forms | |
// If there are multiple radio fields on same page, target each field using the field ID between caldera-grid and radio classes. | |
//Like ".caldera-grid #fld_8471527_1-wrap .radio label input" replacing #fld_8471527 by the field ID ( and keeping _1-wrap attached). |
This file contains hidden or 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 | |
/** | |
* Allow different field values of same field to have different limits when using Caldera Forms Entry Limitter | |
* | |
* Requires version 1.2.0 or later | |
*/ | |
add_filter( 'cf_entry_limiter_entry_limit', function( $limit, $entry, $field, $form ){ | |
//IMPORTANT: Change fld_9970286 to your field's ID | |
if( 'fld_9970286' === $field[ 'ID' ] ){ | |
//IMPORTANT: Use the field values (not labels) in these conditionals |