Changeset 3337973
- Timestamp:
- 08/01/2025 06:28:37 PM (8 months ago)
- Location:
- tave-cf7-integration/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
tave_cf7.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tave-cf7-integration/trunk/README.txt
r2920627 r3337973 3 3 Tags: comments, contact form 7, tave studio manager, táve, tave 4 4 Requires at least: 4.1 5 Tested up to: 6. 26 Stable tag: 1.1.1 15 Tested up to: 6.8 6 Stable tag: 1.1.12 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 51 51 == Changelog == 52 52 53 = 1.1.12 = 54 * Updating tested up to Wordpress 6.8 55 * Updated endpoint URL. 56 53 57 = 1.1.11 = 54 58 * Updating tested up to Wordpress 6.2 -
tave-cf7-integration/trunk/tave_cf7.php
r2920627 r3337973 1 1 <?php 2 2 3 /** 3 4 * Táve Integration using Contact Form 7 … … 6 7 * @author Jason Pirkey <jason@tave.com> 7 8 * @copyright Táve 2017 8 * @version 1.1.1 19 * @version 1.1.12 9 10 * @since 1.0.0 10 11 * @package Tave_CF7 … … 14 15 * Plugin URI: https://github.com/tave/wordpress-cf7-plugin 15 16 * Description: Integrate Contact Form 7 with Táve Studio Manager 16 * Version: 1.1.1 117 * Version: 1.1.12 17 18 * Author: Táve 18 19 * Author URI: https://tave.com … … 273 274 // check the curl version to determine the domain 274 275 $curl_version_info = curl_version(); 275 $domain = version_compare($curl_version_info['version'], '7.18.1', '>=') ? /* SNI supported */ 'tave.com' : /* SNI NOT supported */ 'legacy-ssl.tave.com';276 $domain = 'workspace.vsco.co'; 276 277 $debug_url = trim(get_option($this->prefix . '_debug_url')); 277 278 if (!empty($debug_url)) { 278 279 $url = $debug_url; 279 280 } else { 280 $url = "https://$domain/ app/webservice/create-lead";281 $url = "https://$domain/webservice/create-lead"; 281 282 } 282 283
Note: See TracChangeset
for help on using the changeset viewer.