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 | |
| /* | |
| * * | |
| * makes Forminator's "post data" custom field checkbox | |
| * compatible with ACF checkbox | |
| * | |
| *1. post data custom field label must be same as name of ACF checkbox field | |
| *2. and it has to be mapped to a chekbox form field | |
| *3. $chekboxes array should contain names of ACF chekcbox fields (same as set as labels in postdata custom fields) |
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 | |
| /* tested with Forminator 1.18 | |
| use as MU plugin */ | |
| add_shortcode('custom-site-logo', 'my_custom_site_logo' ); | |
| function my_custom_site_logo() { | |
| $logo_url = get_option( 'frmt_site_custom_logo' ); |
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: [Forminator] Disallow guests to vote in polls | |
| * Plugin URI: https://premium.wpmudev.org/ | |
| * Description: This plugin disables voting for guest users (as of 1.10.2) | |
| * Author: Alessandro Kaounas @ WPMUDEV | |
| * Author URI: https://premium.wpmudev.org/ | |
| * License: GPLv2 or later | |
| * | |
| * updated on Oct 20, 2022 to work wtih Forminator 1.18+ |
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 | |
| /* | |
| Forminator - save submission ID in posts custom field upon new post creation | |
| This is only post creation forms | |
| Tested with Forminator 1.22.1 | |
| by adamcz/WPMU DEV | |
| USE AS MU PLUGIN | |
| Config explained in comments |
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: [Forminator] Set minimum number of words limit for textarea field | |
| * Plugin URI: https://premium.wpmudev.org/ | |
| * Description: Sets minium number of words for textarea field | |
| * Author: adczk | |
| * Author URI: https://premium.wpmudev.org/ | |
| * License: GPLv2 or later | |
| * |
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: [Forminator] Set minimum number of words limit for textarea field | |
| * Plugin URI: https://premium.wpmudev.org/ | |
| * Description: Sets minium number of words for textarea field | |
| * Author: adczk | |
| * Author URI: https://premium.wpmudev.org/ | |
| * License: GPLv2 or later | |
| * |
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: [Forminator] Check submission duplicated data | |
| * Plugin URI: https://premium.wpmudev.org/ | |
| * Description: check if entry with same data (per defined field) already exists and prevent such duplicated data submission | |
| * Author: adczk | |
| * Author URI: https://premium.wpmudev.org/ | |
| * License: GPLv2 or later | |
| * |
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: [Forminator] Schedule rendering form on page (form must be already published) | |
| * Plugin URI: https://premium.wpmudev.org/ | |
| * Description: Allows rendering form according to schedule (show/hide) | |
| * Author: adczk | |
| * Author URI: https://premium.wpmudev.org/ | |
| * License: GPLv2 or later | |
| * | |
| * Tested with Forminator 1.17.0 - 1.23.0 |
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: [Forminator] populate select field with posts and calculation value | |
| * Plugin URI: https://premium.wpmudev.org/ | |
| * Description: Populates select field with posts of selected type (label = post title, | |
| * value = post ID ) and sets calculation values for select options based on selected ACF custom post field | |
| * Author: adczk (with adjustments of Prashant Singh) | |
| * Author URI: https://premium.wpmudev.org/ | |
| * License: GPLv2 or later | |
| * |