Plugin Directory

Changeset 3337973


Ignore:
Timestamp:
08/01/2025 06:28:37 PM (8 months ago)
Author:
tavestudio
Message:

updated plugin

Location:
tave-cf7-integration/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tave-cf7-integration/trunk/README.txt

    r2920627 r3337973  
    33Tags: comments, contact form 7, tave studio manager, táve, tave
    44Requires at least: 4.1
    5 Tested up to: 6.2
    6 Stable tag: 1.1.11
     5Tested up to: 6.8
     6Stable tag: 1.1.12
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5151== Changelog ==
    5252
     53= 1.1.12 =
     54* Updating tested up to Wordpress 6.8
     55* Updated endpoint URL.
     56
    5357= 1.1.11 =
    5458* Updating tested up to Wordpress 6.2
  • tave-cf7-integration/trunk/tave_cf7.php

    r2920627 r3337973  
    11<?php
     2
    23/**
    34 * Táve Integration using Contact Form 7
     
    67 * @author Jason Pirkey <jason@tave.com>
    78 * @copyright Táve 2017
    8  * @version 1.1.11
     9 * @version 1.1.12
    910 * @since 1.0.0
    1011 * @package Tave_CF7
     
    1415 * Plugin URI:        https://github.com/tave/wordpress-cf7-plugin
    1516 * Description:       Integrate Contact Form 7 with Táve Studio Manager
    16  * Version:           1.1.11
     17 * Version:           1.1.12
    1718 * Author:            Táve
    1819 * Author URI:        https://tave.com
     
    273274        // check the curl version to determine the domain
    274275        $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';
    276277        $debug_url = trim(get_option($this->prefix . '_debug_url'));
    277278        if (!empty($debug_url)) {
    278279            $url = $debug_url;
    279280        } else {
    280             $url = "https://$domain/app/webservice/create-lead";
     281            $url = "https://$domain/webservice/create-lead";
    281282        }
    282283
Note: See TracChangeset for help on using the changeset viewer.