Changeset 3446883
- Timestamp:
- 01/26/2026 07:25:08 AM (2 months ago)
- Location:
- cf7-coder
- Files:
-
- 15 added
- 2 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/index.php (added)
-
tags/1.0.1/assets/material.css (added)
-
tags/1.0.1/assets/script.js (added)
-
tags/1.0.1/assets/style.css (added)
-
tags/1.0.1/cf7-coder.php (added)
-
tags/1.0.1/class.wpcf7coder-extension-activation.php (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/languages/cf7-coder.pot (added)
-
tags/1.0.1/languages/index.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/screenshot-1.png (added)
-
tags/1.0.1/screenshot-2.png (added)
-
trunk/cf7-coder.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cf7-coder/trunk/cf7-coder.php
r3444729 r3446883 4 4 * Plugin URI: https://wordpress.org/cf7-coder 5 5 * Description: Add HTML editor to Contact Form 7. 6 * Version: 1.0 6 * Version: 1.0.1 7 7 * Author: Wow-Company 8 8 * Author URI: https://wow-estore.com/ … … 46 46 47 47 if ( $page === $hook || $page_new === $hook ) { 48 $version = '1. 0';48 $version = '1.1'; 49 49 50 50 wp_enqueue_script( 'code-editor' ); … … 342 342 $remove_tags = get_post_meta( $form_id, '_wpcf7_remove_auto_tags', true ); 343 343 if ( ! empty( $remove_tags ) ) { 344 $output = str_replace( array( '<p>', '</p>', '<br />' ), '', $output );344 $output = str_replace( array( '<p>', '</p>', '<br>', '<br/>', '<br />' ), '', $output ); 345 345 } 346 346 … … 621 621 wpcf7_enqueue_styles(); 622 622 } 623 // Enqueue reCAPTCHA if available 624 if ( function_exists( 'wpcf7_recaptcha_enqueue_scripts' ) ) { 625 wpcf7_recaptcha_enqueue_scripts(); 626 } 623 627 } 624 628 … … 627 631 wp_dequeue_script( 'contact-form-7' ); 628 632 wp_dequeue_style( 'contact-form-7' ); 633 wp_dequeue_script( 'wpcf7-recaptcha' ); 634 wp_dequeue_script( 'google-recaptcha' ); 629 635 } 630 636 -
cf7-coder/trunk/readme.txt
r3444729 r3446883 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.0 8 Stable tag: 1.0.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 58 58 59 59 == Changelog == 60 = 1.0.1 = 61 * Fixed: if enable 'Load scripts only on pages with shortcode' recaptcha show only page with shortcode 62 * Fixed: option 'Remove Auto tags p and br ' 63 60 64 = 1.0 = 61 65 * Added: Redirect after submit with URL input
Note: See TracChangeset
for help on using the changeset viewer.