Skip to content
Merged

2.8.2 #830

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ACTIONS-FILTERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ add_filter( 'convertkit_resource_forms_output_script', function( $script ) {
</pre>
<h3 id="convertkit_broadcasts_build_post_args">
convertkit_broadcasts_build_post_args
<code>includes/class-convertkit-broadcasts-importer.php::359</code>
<code>includes/class-convertkit-broadcasts-importer.php::360</code>
</h3><h4>Overview</h4>
<p>Define the wp_insert_post() compatible arguments for importing a ConvertKit Broadcast to a new WordPress Post.</p><h4>Parameters</h4>
<table>
Expand Down Expand Up @@ -1447,7 +1447,7 @@ add_filter( 'convertkit_broadcasts_build_post_args', function( $post_args, $broa
</pre>
<h3 id="convertkit_broadcasts_parse_broadcast_content">
convertkit_broadcasts_parse_broadcast_content
<code>includes/class-convertkit-broadcasts-importer.php::507</code>
<code>includes/class-convertkit-broadcasts-importer.php::526</code>
</h3><h4>Overview</h4>
<p>Parses the given Broadcast's content, removing unnecessary HTML tags and styles.</p><h4>Parameters</h4>
<table>
Expand Down Expand Up @@ -1490,7 +1490,7 @@ add_filter( 'convertkit_broadcasts_parse_broadcast_content', function( $content,
</pre>
<h3 id="convertkit_broadcasts_parse_broadcast_content_permitted_html_tags">
convertkit_broadcasts_parse_broadcast_content_permitted_html_tags
<code>includes/class-convertkit-broadcasts-importer.php::607</code>
<code>includes/class-convertkit-broadcasts-importer.php::626</code>
</h3><h4>Overview</h4>
<p>Define the HTML tags to retain in the Broadcast Content.</p><h4>Parameters</h4>
<table>
Expand Down
8 changes: 4 additions & 4 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 GPLv3 or later.
msgid ""
msgstr ""
"Project-Id-Version: Kit (formerly ConvertKit) 2.8.1\n"
"Project-Id-Version: Kit (formerly ConvertKit) 2.8.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2025-05-07T03:22:58+00:00\n"
"POT-Creation-Date: 2025-05-28T04:09:45+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.11.0\n"
"X-Domain: convertkit\n"
Expand Down Expand Up @@ -1328,11 +1328,11 @@ msgid "Access Token not configured in Plugin Settings."
msgstr ""

#. translators: %1$s: PHP class name
#: includes/class-wp-convertkit.php:395
#: includes/class-wp-convertkit.php:388
msgid "Kit Error: Could not load Plugin class <strong>%1$s</strong>"
msgstr ""

#: includes/class-wp-convertkit.php:405
#: includes/class-wp-convertkit.php:398
msgid "Kit Error"
msgstr ""

Expand Down
6 changes: 5 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, subscribers, landing page, membership
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.1
Stable tag: 2.8.1
Stable tag: 2.8.2
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -161,6 +161,10 @@ Full Plugin documentation can be found [here](https://help.kit.com/en/articles/2

== Changelog ==

### 2.8.2 2025-05-28
* Fix: Broadcasts: Remove emoijs from Permalink whem importing Broadcasts to WordPress Posts
* Fix: Coding Standards: Use `wp_doing_cron` function, instead of `DOING_CRON` constant

### 2.8.1 2025-05-07
* Added: Member Content: Permits Apple, DuckDuckGo, OpenAI Search, Perplexity and Yandex to crawl Member Content if the Permit Search Engine Crawlers option is enabled
* Fix: Classic Editor: Display refresh button icon
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: Kit (formerly ConvertKit)
* Plugin URI: https://kit.com/
* Description: Display Kit (formerly ConvertKit) email subscription forms, landing pages, products, broadcasts and more.
* Version: 2.8.1
* Version: 2.8.2
* Author: Kit
* Author URI: https://kit.com/
* Text Domain: convertkit
Expand All @@ -27,7 +27,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.8.1' );
define( 'CONVERTKIT_PLUGIN_VERSION', '2.8.2' );
define( 'CONVERTKIT_OAUTH_CLIENT_ID', 'HXZlOCj-K5r0ufuWCtyoyo3f688VmMAYSsKg1eGvw0Y' );
define( 'CONVERTKIT_OAUTH_CLIENT_REDIRECT_URI', 'https://app.kit.com/wordpress/redirect' );

Expand Down