Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Fix subscriber store route
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronhuisinga committed Nov 29, 2019
1 parent 202fdba commit df73fe4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion classes/class-frontdesk.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function createProspect($data)
{
try {
if ($this->api_key != null || $this->api_key != '') {
$response = $this->guzzle->post($this->api_base . 'subscribers/complete/', [
$response = $this->guzzle->post($this->api_base . 'subscribers', [
'form_params' => [
'campaigns' => $data['campaign_id'],
'email' => $data['email'],
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: Aaron Huisinga
Tags: real estate, platform, seller quiz
Requires at least: 3.5
Tested up to: 5.1
Stable tag: 1.6.8
Stable tag: 1.6.9

Simple real estate lead generation through a quiz that helps qualify prospective home seller.

Expand Down
4 changes: 2 additions & 2 deletions seller-quiz.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
* Plugin Name: Seller Quiz
* Version: 1.6.8
* Version: 1.6.9
* Plugin URI: http://www.coldturkeygroup.com/
* Description: Multiple choice quiz to help potential home owners decide whether or not they're ready to sell.
* Author: Cold Turkey Group
Expand All @@ -23,7 +23,7 @@
}

if (!defined('SELLER_QUIZ_PLUGIN_VERSION')) {
define('SELLER_QUIZ_PLUGIN_VERSION', '1.6.8');
define('SELLER_QUIZ_PLUGIN_VERSION', '1.6.9');
}

require_once('classes/class-seller-quiz.php');
Expand Down

0 comments on commit df73fe4

Please sign in to comment.