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 | |
/** | |
* Plugin Name: Gravity Forms Unread Entries Indicator | |
* Description: Adds an indicator to the Gravity Forms Entries menu showing the number of unread entries. | |
* Version: 1.0 | |
* Author: Chris Egglelston | |
* Website: https://gravityranger.com | |
*/ | |
if (!defined('ABSPATH')) { |
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
.hidden-block { | |
display: none; | |
} | |
.hidden-block.show { | |
display: block; | |
} | |
.popup-modal { | |
display: none; /* Hidden by default */ | |
position: fixed; |
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
/** | |
* Gravity Forms Field ID Display | |
* Author: Chris Eggleston | |
* Version: 1.1 | |
* | |
* Description: This script dynamically adds custom-styled Field IDs to all fields in the Gravity Forms editor, | |
* allowing administrators to easily identify field IDs. | |
* | |
* How to use: | |
* - Include this script on pages where the Gravity Forms editor is loaded. |
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 | |
/** | |
* Entries Remaining Shortcode | |
* | |
* This shortcode dynamically calculates and displays the remaining availabile entries | |
* for a Gravity Forms form based on the number of form entries submitted. | |
* | |
* Usage: Enable entry limits in form settings and set your limit number. Then add the shortcode [spots_available] to an | |
* HTML field in your form or to a WordPress post or page where a Gravity Form is embedded. | |
* |
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 | |
/** | |
* Plugin Name: Gravity Forms Change Entry Date | |
* Plugin URI: https://gravityranger.com/gravity-forms-changing-the-entry-date | |
* Description: Adds a meta box to Gravity Forms entry details page allowing admins to change the entry date. | |
* Version: 1.0 | |
* Author: Chris Eggleston | |
* Author URI: https://gravityranger.com | |
* License: GPL-2.0+ | |
*/ |
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 | |
/** | |
* Gravity Forms // Multi-Date Picker Field | |
* https://gravityranger.com/gravity-forms-multi-date-picker/ | |
* | |
* Allows selection of multiple dates in a single Gravity Forms text field. | |
* | |
* Step-by-Step Tutorial: https://gravityranger.com/gravity-forms-multi-date-picker/ | |
* | |
* Instructions: |
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 | |
/** | |
* Gravity Forms // Limit Coupon Usage Per Customer Based on Email Address | |
* https://gravityranger.com/gravity-forms-limit-coupon-per-customer/ | |
* | |
* Snippet will compare the email address to the coupon entered if the email has already | |
* been used validation fails, and a custom validation message is shown. | |
* | |
* Step-by-Step Tutorial: https://gravityranger.com/gravity-forms-limit-coupon-per-customer/ | |
* |
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 | |
/** | |
* Gravity Forms // Remove fields from entry details page | |
* https://gravityranger.com/ | |
* | |
* Using a CSS class 'hide-from-entries' you can prevent fields from showing in the entry | |
* details page. Add the class to the fields Custom CSS Class area. | |
* | |
* Step-by-Step Tutorial: https://gravityranger.com/gravity-forms-hide-from-entries/ |
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
/** | |
* Gravity Ranger // Gravity Forms // Change radio button choice when adding value to another field | |
* https://gravityranger.com/gravity-forms-fancy-donation-form | |
* | |
* This snippet will change a selection in a radio button field when entering a value to another field. | |
* Intended for a donation form with a price select field and and a user defined price field. | |
* | |
*/ | |
<script type="text/javascript"> |
NewerOlder