Skip to content

Commit

Permalink
2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
n7studios committed Dec 13, 2022
1 parent 663aed1 commit d86743e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion includes/class-convertkit-resource-landing-pages.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function __construct( $context = false ) {
public function get_html( $id ) {

// Setup API.
$api = new ConvertKit_API( false, false, false, 'output_landing_page' );
$api = new ConvertKit_API( false, false, true, 'output_landing_page' );

// If the ID is a URL, this is a Legacy Landing Page defined for use on this Page
// in a Plugin version < 1.9.6.
Expand Down
6 changes: 3 additions & 3 deletions languages/convertkit.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the ConvertKit plugin.
msgid ""
msgstr ""
"Project-Id-Version: ConvertKit 2.0.3\n"
"Project-Id-Version: ConvertKit 2.0.4\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2022-12-07T17:09:07+00:00\n"
"POT-Creation-Date: 2022-12-13T15:12:11+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: convertkit\n"
Expand Down Expand Up @@ -526,7 +526,7 @@ msgid "ConvertKit Landing Page ID %s does not exist on ConvertKit."
msgstr ""

#. translators: ConvertKit Product ID
#: includes/class-convertkit-resource-products.php:110
#: includes/class-convertkit-resource-products.php:120
msgid "ConvertKit Product ID %s does not exist on ConvertKit."
msgstr ""

Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: email marketing, email newsletter, newsletter, convertkit
Requires at least: 5.0
Tested up to: 6.1.1
Requires PHP: 5.6.20
Stable tag: 2.0.3
Stable tag: 2.0.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -117,6 +117,11 @@ Full Plugin documentation can be found [here](https://help.convertkit.com/en/art

== Changelog ==

### 2.0.4 2022-12-13
* Fix: Products: PHP warning when attempting to parse an invalid Product URL
* Fix: Landing Pages: Catch and log when an error occurs fetching a Landing Page
* Fix: Remove double forwardslash on product.css

### 2.0.3 2022-12-08
* Added: Categories: Option to specify ConvertKit Form to display when adding a new Post Category
* Fix: Bulk & Quick Edit: Improve layout of ConvertKit settings on desktop and mobile
Expand Down
4 changes: 2 additions & 2 deletions wp-convertkit.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: ConvertKit
* Plugin URI: https://convertkit.com/
* Description: Quickly and easily integrate ConvertKit forms into your site.
* Version: 2.0.3
* Version: 2.0.4
* Author: ConvertKit
* Author URI: https://convertkit.com/
* Text Domain: convertkit
Expand All @@ -25,7 +25,7 @@
define( 'CONVERTKIT_PLUGIN_FILE', plugin_basename( __FILE__ ) );
define( 'CONVERTKIT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'CONVERTKIT_PLUGIN_PATH', __DIR__ );
define( 'CONVERTKIT_PLUGIN_VERSION', '2.0.3' );
define( 'CONVERTKIT_PLUGIN_VERSION', '2.0.4' );

// Load shared classes, if they have not been included by another ConvertKit Plugin.
if ( ! class_exists( 'ConvertKit_API' ) ) {
Expand Down

0 comments on commit d86743e

Please sign in to comment.