diff --git a/packages/embeds/wordpress/package.json b/packages/embeds/wordpress/package.json index 5316b4063..6adcc8f7e 100644 --- a/packages/embeds/wordpress/package.json +++ b/packages/embeds/wordpress/package.json @@ -1,6 +1,6 @@ { "name": "@typebot.io/wordpress", - "version": "3.1.7", + "version": "3.1.9", "main": "index.js", "repository": "https://github.com/baptisteArno/typebot.io", "author": "baptisteArno", @@ -11,7 +11,7 @@ }, "scripts": { "deploy": "pnpm copy && pnpm commit", - "copy": "svn copy ./trunk ./tags/3.1.7", - "commit": "svn ci -m 'Fix wordpress user prefill variables'" + "copy": "svn copy ./trunk ./tags/3.1.9", + "commit": "svn ci -m 'Fix wordpress user prefill variables with shortcode'" } } diff --git a/packages/embeds/wordpress/trunk/README.txt b/packages/embeds/wordpress/trunk/README.txt index 79d336249..3ede19032 100644 --- a/packages/embeds/wordpress/trunk/README.txt +++ b/packages/embeds/wordpress/trunk/README.txt @@ -5,7 +5,7 @@ Requires at least: 5.0 Tested up to: 6.0 License: GPL 2.0 License URI: http://www.gnu.org/licenses/gpl-2.0.txt -Stable Tag: 3.1.7 +Stable Tag: 3.1.9 == Description == Collect 4x more responses with conversational apps using Typebot. @@ -24,6 +24,9 @@ This plugin relies on Typebot which is a tool that allows you to create conversa 3. Activate your Typebot with the "Typebot" admin button located in the sidebar == Changelog == += 3.1.8 = +* Fix forward wp user variable when not initialized + = 3.1.7 = * Fix forwarded user prefilled variables diff --git a/packages/embeds/wordpress/trunk/public/class-typebot-public.php b/packages/embeds/wordpress/trunk/public/class-typebot-public.php index c29e9a170..abd376b6d 100644 --- a/packages/embeds/wordpress/trunk/public/class-typebot-public.php +++ b/packages/embeds/wordpress/trunk/public/class-typebot-public.php @@ -101,7 +101,8 @@ class Typebot_Public $bot_initializer = ''; + + Typebot.initStandard({ apiHost: "' . $api_host . '", id: "' . $id . '", typebot: "' . $typebot . '", prefilledVariables: { ...window.typebotWpUser } });'; return '' . $bot_initializer; } diff --git a/packages/embeds/wordpress/trunk/typebot.php b/packages/embeds/wordpress/trunk/typebot.php index e5db13dd0..3c4fc9f98 100644 --- a/packages/embeds/wordpress/trunk/typebot.php +++ b/packages/embeds/wordpress/trunk/typebot.php @@ -3,7 +3,7 @@ /** * Plugin Name: Typebot * Description: Convert more with conversational forms - * Version: 3.1.7 + * Version: 3.1.9 * Author: Typebot * Author URI: http://typebot.io/ * License: GPL-2.0+ @@ -16,7 +16,7 @@ if (!defined('WPINC')) { die(); } -define('TYPEBOT_VERSION', '3.1.7'); +define('TYPEBOT_VERSION', '3.1.9'); function activate_typebot() {