Plugin Directory

Changeset 3337966


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

updated plugin

Location:
tave-integration-using-gravity-forms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tave-integration-using-gravity-forms/trunk/README.txt

    r2920325 r3337966  
    33Tags: forms, gravity forms, tave studio manager, táve, tave
    44Requires at least: 4.1
    5 Tested up to: 6.2
    6 Stable tag: 1.0.11
     5Tested up to: 6.8
     6Stable tag: 1.0.12
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545== Changelog ==
    4646
     47= 1.0.12 =
     48* Tested with Wordpress 6.8
     49* Updated endpoint URL.
     50
    4751= 1.0.11 =
    4852* Tested with Wordpress 6.2
  • tave-integration-using-gravity-forms/trunk/tave_gf.php

    r2920325 r3337966  
    11<?php
     2
    23/**
    34 * Táve Integration using Gravity Forms
     
    67 * @author Jason Pirkey <jason@tave.com>
    78 * @copyright Táve 2019
    8  * @version 1.0.11
     9 * @version 1.0.12
    910 * @since 1.0.0
    1011 * @package Tave_GF
     
    1415 * Plugin URI:        http://help.tave.com/getting-started/contact-forms/using-gravity-forms
    1516 * Description:       Integrate Gravity Forms with Táve Studio Manager
    16  * Version:           1.0.11
     17 * Version:           1.0.12
    1718 * Author:            Táve
    1819 * Author URI:        https://tave.com
  • tave-integration-using-gravity-forms/trunk/tave_gf_addon.php

    r2920325 r3337966  
    9898        // check the curl version to determine the domain
    9999        $curl_version_info = curl_version();
    100         $domain = version_compare($curl_version_info['version'], '7.18.1', '>=') ? /* SNI supported */ 'tave.com' : /* SNI NOT supported */ 'legacy-ssl.tave.com';
    101         $url = $debug && !empty($debugUrl) ? $debugUrl : "https://$domain/app/webservice/create-lead";
     100        $domain = 'workspace.vsco.co';
     101        $url = $debug && !empty($debugUrl) ? $debugUrl : "https://$domain/webservice/create-lead";
    102102        $url = add_query_arg(array(
    103103            'X-Tave-PHP' => phpversion(),
Note: See TracChangeset for help on using the changeset viewer.