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 | |
| /** | |
| * Extract shortcodes from content. | |
| * | |
| * @param string $content Content containing shortcodes. | |
| * | |
| * @return array Array of shortcodes found. | |
| */ | |
| function get_shortcodes_from_content( $content ) { |
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( 'edd_sl_is_site_active', 'your_namespace_is_site_active_auto_activate_site', 10, 3 ); | |
| /** | |
| * Allow active licenses to get updates if they're not at the limit, no matter what. | |
| * | |
| * @param false $is_active | |
| * @param int $license_id | |
| * @param string $passed_site_url |
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_action( 'wp_enqueue_scripts', 'custom_force_pm_asset_caching', 11 ); | |
| function custom_force_pm_asset_caching() { | |
| wp_deregister_script( 'popup-maker-site' ); | |
| $cached = get_option( 'pum-has-cached-js' ); | |
| if ( ! $cached ) { | |
| PUM_AssetCache::cache_js(); | |
| $cached = get_option( 'pum-has-cached-js' ); |
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 | |
| function custom_edd_all_access_check_current_download( $download_id = 0 ) { | |
| static $cache = []; | |
| if ( ! isset( $cache[ $download_id ] ) ) { | |
| $cache[ $download_id ] = edd_all_access_check( [ | |
| 'download_id' => $download_id, | |
| 'price_id' => 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 | |
| add_filter( 'pum_registered_triggers', 'register_cutstom_click_block', 11 ); | |
| function register_cutstom_click_block( $triggers = array() ) { | |
| $triggers['click_block']['fields']['general']['requirements']['options']['form_submission'] = __( 'Form Submission' ); | |
| return $triggers; | |
| } | |
| function cu_add_custom_popup_js( $js ) { |
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
| { | |
| "name": "popup-maker/test-plugin", | |
| "description": "description", | |
| "minimum-stability": "stable", | |
| "require": { | |
| "pimple/pimple": "^3.3" | |
| }, | |
| "autoload": { | |
| "psr-4": { | |
| "DLI\\": "src/" |
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
| javascript:(function($){ $('style#pum-highlighted').remove(); $('body').append($('<style>').attr('id', 'pum-highlighted').text('.pum-highlighted { background-color: rgba(255, 255, 0, .75)!important; }')); function highlight() { if ($('.pum-highlight').hasClass('pum-highlighted')) { $('.pum-highlight').removeClass('pum-highlighted'); } else { $('.pum-highlight').addClass('pum-highlighted'); } } $('.pum-trigger').toggleClass('pum-highlight'); if (window.pum_bookmark_button_highlighter === undefined) { window.pum_bookmark_button_highlighter = setInterval(function(){highlight()}, 500); } }(jQuery)); |
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
| <?xml version="1.0"?> | |
| <ruleset name="Code Atlantic - Coding-Standards - Short Arrays"> | |
| <description>Code Atlantic Coding-Standards, keeping short array syntax.</description> | |
| <!-- Include main ruleset.xml --> | |
| <rule ref="./ruleset.xml"/> | |
| <!-- Use short arrays --> | |
| <rule ref="Generic.Arrays"> | |
| <exclude name="Generic.Arrays.DisallowShortArraySyntax.Found" /> |
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
| var mc1Submitted = false; | |
| jQuery('#mc-embedded-subscribe-form').on('submit reset', function (event) { | |
| console.log(event); | |
| if ("submit" === event.type) { | |
| mc1Submitted = true; | |
| } else if ( "reset" === event.type && mc1Submitted ) { | |
| console.log('success'); | |
| } | |
| }); |
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
| { | |
| const $ = window.jQuery; | |
| let currentForm, currentFormId; | |
| $(document) | |
| // Before all requests | |
| .on('cf.ajax.request', function (event, obj) { | |
| currentForm = obj.$form; | |
| currentFormId = obj.formIdAttr; | |
| }) |